This simulator will emit a batch of StockTicks every two seconds. each time, a single item will be selected and updated with a "drastic change" (more than 10%)
示例#1
0
        private static void AutomaticSimulator(StockTicker stockTicker)
        {
            var simulator = new StockSimulator(stockTicker);

            simulator.Run();
        }
示例#2
0
 private static void AutomaticSimulator(StockTicker stockTicker)
 {
     var simulator = new StockSimulator(stockTicker);
     simulator.Run();
 }