コード例 #1
0
ファイル: BoxStrategy.cs プロジェクト: Mhburg/ATSoftware
 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)));
 }