Beispiel #1
0
 protected void CloseAllOrders()
 {
     if (PendingOrders.Count > 0)
     {
         foreach (var tp in PendingOrders.OrderByDescending(x => x.Id))
         {
             CancelPendingOrder(tp);
         }
     }
 }