예제 #1
0
 public void GetTickSize(TickSize ts)
 {
     //throw new NotImplementedException();
 }
예제 #2
0
파일: SPYRepo.cs 프로젝트: Mhburg/IBSoft
 public void ReadtickSize(int tickerId, int field, int size)
 {
     TickSize ts = new TickSize() { Ticker_Id = tickerId, Field = field, Size = size };
     _strategyBacklog[tickerId].ForEach(t => Task.Run(() => t.GetTickSize(ts)));
 }