获取历史记录中最近平仓订单的手数和盈利

楼主  收藏   举报   帖子创建时间:  2019-05-05 14:39 回复:0 关注量:783
该函数模块能够简洁的获取当前窗口最近平仓的一个订单的手数、盈利及其它相关订单信息。

  1.      int totalorders=HistoryTotal();      
  2.      double histype,hisLots, hisProfit;
  3.      for(poshis=0; poshis<totalorders; poshis++)
  4.      {
  5.          chenggong = OrderSelect(poshis,SELECT_BY_POS,MODE_HISTORY);
  6.          if(OrderSymbol()==Symbol())
  7.          histype=OrderType();
  8.          hisProfit=OrderProfit();
  9.          hisLots=OrderLots();
  10.      }
打赏