Skip to content

BacktestingTick

Summary

Represents a tick, used for backtesting data source tick data.

Signature

1
public sealed struct BacktestingTick : ValueType

Namespace

cAlgo.API

See Also

Methods

ToString

Signature

1
public string ToString()

Return Value

string

PrintMembers

Signature

1
private bool PrintMembers(StringBuilder builder)

Parameters

Name Type Description
builder StringBuilder

Return Value

bool

GetHashCode

Signature

1
public int GetHashCode()

Return Value

int

Equals (2)

Equals (1 of 2)

Signature

1
public bool Equals(object obj)

Parameters

Name Type Description
obj object

Return Value

bool

Equals (2 of 2)

Signature

1
public bool Equals(BacktestingTick other)

Parameters

Name Type Description
other BacktestingTick

Return Value

bool

Deconstruct

Signature

1
public void Deconstruct(DateTime& Time, Double& Bid, Double& Ask)

Parameters

Name Type Description
Time DateTime&
Bid Double&
Ask Double&

Return Value

void

Properties

Time

Summary

Timestamp

Signature

1
public DateTime Time {get; set;}

Return Value

DateTime

Bid

Summary

Bid Price

Signature

1
public double Bid {get; set;}

Return Value

double

Ask

Summary

Ask Price

Signature

1
public double Ask {get; set;}

Return Value

double