예제 #1
0
 public void GetTickGeneric(TickGeneric tg)
 {
     //throw new NotImplementedException();
 }
예제 #2
0
파일: SPYRepo.cs 프로젝트: Mhburg/IBSoft
 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)));
 }