Exemple #1
0
 public void ClearMyTradeHistory()
 {
     if (AccountTradeHistory != null)
     {
         AccountTradeHistory.Clear();
     }
     if (AccountShortTradeHistory != null)
     {
         AccountShortTradeHistory.Clear();
     }
 }
Exemple #2
0
 public void AddAccountTradeHistoryItem(TradeInfoItem item)
 {
     AccountTradeHistory.AddLast(item);
     AccountShortTradeHistory.Add(item);
 }