Esempio n. 1
0
        /*****************************************************************************
        *  FUNCTION:       ReadHistoricalData
        *  Description:
        *  Parameters:     None
        *****************************************************************************/
        public Boolean ReadHistoricalData()
        {
            Boolean success = true;

            if (HistoricalDataSource == "")
            {
                success = false;
            }
            else
            {
                if (HistoricalData == null)
                {
                    HistoricalData = new ExchangeMarket(HistoricalDataSource);
                }
                success = HistoricalData.parseCsvHistoricalData();
            }

            return(success);
        }