老周 发表于 2017-3-16 15:35:32

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

该函数模块能够简洁的获取当前窗口最近平仓的一个订单的手数、盈利及其它相关订单信息。

   int totalorders=HistoryTotal();      
   double histype,hisLots, hisProfit;
   for(poshis=0; poshis<totalorders; poshis++)
   {
         chenggong = OrderSelect(poshis,SELECT_BY_POS,MODE_HISTORY);
         if(OrderSymbol()==Symbol())
         histype=OrderType();
         hisProfit=OrderProfit();
         hisLots=OrderLots();
   }

页: [1]
查看完整版本: 获取历史记录中最近平仓订单的手数和盈利