public void TradingDayChanged(int currentTradingDay)
 {
     if (this.tickDataBuilder != null)
     {
         this.tickDataBuilder.Dispose();
     }
     this.tickDataBuilder = new TickData_RealWriter(storePath, currentTradingDay, writeInterval);
 }
Exemple #2
0
        public ITickData ReadTickData(string code)
        {
            string tickPath = TickData_RealWriter.GetTickBarPath(path, code, date);

            return(CsvUtils_TickData.Load(tickPath));
        }