FastQuant.DataManager.GetHistoricalBars C# (CSharp) Method

GetHistoricalBars() public method

public GetHistoricalBars ( string symbol, BarType barType, long barSize ) : BarSeries
symbol string
barType BarType
barSize long
return BarSeries
        public BarSeries GetHistoricalBars(string symbol, BarType barType, long barSize)
        {
            return this.GetHistoricalBars(symbol, DateTime.MinValue, DateTime.MaxValue, barType, barSize);
        }
        public BarSeries GetHistoricalBars(Instrument instrument, BarType barType, long barSize)

Same methods

DataManager::GetHistoricalBars ( IHistoricalDataProvider provider, Instrument instrument, System.DateTime dateTime1, System.DateTime dateTime2, BarType barType, long barSize ) : BarSeries
DataManager::GetHistoricalBars ( Instrument instrument, BarType barType, long barSize ) : BarSeries
DataManager::GetHistoricalBars ( Instrument instrument, System.DateTime dateTime1, System.DateTime dateTime2, BarType barType, long barSize ) : BarSeries
DataManager::GetHistoricalBars ( string symbol, System.DateTime dateTime1, System.DateTime dateTime2, BarType barType, long barSize ) : BarSeries
DataManager::GetHistoricalBars ( string provider, Instrument instrument, System.DateTime dateTime1, System.DateTime dateTime2, BarType barType, long barSize ) : BarSeries
DataManager::GetHistoricalBars ( string provider, string symbol, System.DateTime dateTime1, System.DateTime dateTime2, BarType barType, long barSize ) : BarSeries