HistoricalData CLASS
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
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
SYNTAX public bool Load (DateTime from,DateTime to,HistoricalDataLoadParams historicalDataLoadParams) PARAMETERS from — DateTime to — DateTime ...
Tue, May 1, 2018 at 3:58 PM
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
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
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
Gets DateTime of last bar. SYNTAX public abstract virtual DateTime Time () RETURN DateTime
Tue, May 1, 2018 at 4:04 PM
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 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
Occurs after downloading a range of historical data. SYNTAX public event Action<HistoricalData> AfterReload
Tue, May 1, 2018 at 4:08 PM