コード例 #1
0
ファイル: Portfolio.cs プロジェクト: lynxliu/Backtesting
 public void ProcessOrderList(List <IOrder> orderlist)
 {
     orderlist.ForEach(v =>
     {
         ProcessOrder(v);
     });
     PositionList.RemoveAll(v => Math.Abs(v.Shares) < CommonProc.EPSILON);
 }