Skip to content

BacktestingMinMaxTime

Summary

Represents minimum and maximum time of available data for a TimeFrame Symbol on a back testing data source.

Signature

1
public sealed struct BacktestingMinMaxTime : 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(BacktestingMinMaxTime other)

Parameters

Name Type Description
other BacktestingMinMaxTime

Return Value

bool

Deconstruct

Signature

1
public void Deconstruct(DateTime& MinTime, DateTime& MaxTime)

Parameters

Name Type Description
MinTime DateTime&
MaxTime DateTime&

Return Value

void

Properties

MinTime

Summary

Minimum Time

Signature

1
public DateTime MinTime {get; set;}

Return Value

DateTime

MaxTime

Summary

Maximum Time

Signature

1
public DateTime MaxTime {get; set;}

Return Value

DateTime