public void TestLoadAsxRawFromAzure()
        {
            TickerBLL tBll = new TickerBLL(_unit, null);

            int tradingDate = DateHelper.DateToInt(DateTime.Now);

            tBll.UpdateDailyShareTickerBatchToday(tradingDate.ToString());
        }
Beispiel #2
0
        public static void LoadTickers()
        {
            Console.WriteLine("Start to load tickers");
            int tradingDate = DateHelper.DateToInt(DateTime.Now);

            tBLL.UpdateDailyShareTickerBatchToday(tradingDate.ToString());
            Console.WriteLine("Finish loading tickers");
        }
        public void Test_UpdateDailyShareTickerBatchToday()
        {
            TickerBLL tBll = new TickerBLL(_unit);

            tBll.UpdateDailyShareTickerBatchToday("20170525");
        }