Example #1
0
 public void GetTickGeneric(TickGeneric tg)
 {
     //throw new NotImplementedException();
 }
Example #2
0
 public void ReadtickGeneric(int tickerId, int field, double value)
 {
     TickGeneric tg = new TickGeneric() { Ticker_Id = tickerId, Field = field, Value = value };
     _strategyBacklog[tickerId].ForEach(t => Task.Run(() => t.GetTickGeneric(tg)));
 }