HistoricalData CLASS

Load (DateTime from, DateTime to) METHOD (Return: bool)
Synchronized loading custom data range. SYNTAX public bool Load (DateTime from,DateTime to) PARAMETERS from — DateTime Defines date and tim...
Tue, May 1, 2018 at 3:55 PM
Load (DateTime from) METHOD (Return: bool)
Synchronized loading data range form the specified time to the current. SYNTAX public bool Load (DateTime from) PARAMETERS from — DateTime ...
Tue, May 1, 2018 at 3:57 PM
Load (DateTime from, DateTime to, HistoricalDataLoadParams historicalDataLoadParams) METHOD (Return: bool)
SYNTAX public bool Load (DateTime from,DateTime to,HistoricalDataLoadParams historicalDataLoadParams) PARAMETERS from — DateTime to — DateTime ...
Tue, May 1, 2018 at 3:58 PM
Lowest (PriceType type, int start, int count) METHOD (Return: int)
Returns bar index of lowest price presented in history range of loaded history object. SYNTAX public int Lowest (PriceType type,int start,int count)...
Tue, May 1, 2018 at 4:00 PM
Lowest (PriceType type) METHOD (Return: int)
Returns bar index of lowest price presented in entire history of loaded history object. SYNTAX public int Lowest (PriceType type) PARAMETERS ...
Tue, May 1, 2018 at 4:02 PM
Time (int offset) METHOD (Return: DateTime)
Gets DateTime of given bar. SYNTAX public abstract virtual DateTime Time (int offset) PARAMETERS offset — int RETURN DateTime
Tue, May 1, 2018 at 4:03 PM
Time () METHOD (Return: DateTime)
Gets DateTime of last bar. SYNTAX public abstract virtual DateTime Time () RETURN DateTime
Tue, May 1, 2018 at 4:04 PM
Volume () METHOD (Return: double)
Volume of Ticks for Bid/Ask based Historical data, or volume of Trades for Trade based Historical data. SYNTAX public double Volume () RETURN ...
Tue, May 1, 2018 at 4:05 PM
Volume (int offset) METHOD (Return: double)
Volume of Ticks for Bid/Ask based Historical data, or volume of Trades for Trade based Historical data. SYNTAX public double Volume (int offset) ...
Tue, May 1, 2018 at 4:07 PM
AfterReload EVENT
Occurs after downloading a range of historical data. SYNTAX public event Action<HistoricalData> AfterReload
Tue, May 1, 2018 at 4:08 PM