HistoricalData CLASS

Reversal PROPERTY (int)
The amount of price movement required to shift a chart to the right. This condition is used on charts that only take into consideration price movement inste...
Tue, May 1, 2018 at 3:21 PM
BeginLoad (DateTime from, DateTime to) METHOD (Return: bool)
Asynchronized loading custom data range. You must wait for the end of the loading before requesting again. SYNTAX public bool BeginLoad (DateTime fr...
Tue, May 1, 2018 at 3:23 PM
BeginLoad (DateTime from) METHOD (Return: bool)
Asynchronized loading data range form custom time to current time. You must wait for the end of the loading before requesting again. SYNTAX public b...
Tue, May 1, 2018 at 3:25 PM
BeginLoad (DateTime from, DateTime to, HistoricalDataLoadParams historicalDataLoadParams) METHOD (Return: bool)
SYNTAX public bool BeginLoad (DateTime from,DateTime to,HistoricalDataLoadParams historicalDataLoadParams) PARAMETERS from — DateTime to — Date...
Tue, May 1, 2018 at 3:27 PM
FindInterval (DateTime time) METHOD (Return: int)
Find historical element by time. SYNTAX public int FindInterval (DateTime time) PARAMETERS time — DateTime Defines date and time of needed ...
Tue, May 1, 2018 at 3:29 PM
FindInterval (DateTime time, int from, int to) METHOD (Return: int)
Find historical element by time in the selected range. SYNTAX public int FindInterval (DateTime time,int from,int to) PARAMETERS time — Date...
Tue, May 1, 2018 at 3:31 PM
GetPrice (PriceType priceType, int offset) METHOD (Return: double)
This function get price of the required Historical element. SYNTAX public double GetPrice (PriceType priceType,int offset) PARAMETERS priceT...
Tue, May 1, 2018 at 3:32 PM
GetPrice (PriceType priceType) METHOD (Return: double)
This function get price of the last Historical element. SYNTAX public double GetPrice (PriceType priceType) PARAMETERS priceType — PriceType...
Tue, May 1, 2018 at 3:48 PM
Highest (PriceType type, int start, int count) METHOD (Return: int)
Returns bar index of highest price presented in history range of loaded history object. SYNTAX public int Highest (PriceType type,int start,int coun...
Tue, May 1, 2018 at 3:51 PM
Highest (PriceType type) METHOD (Return: int)
Returns bar index of highest price presented in entire loaded history object. SYNTAX public int Highest (PriceType type) PARAMETERS type — P...
Tue, May 1, 2018 at 3:52 PM