1评论

0收藏

求助一个EA程序问题。

avatar wx_F5H2VHdS | 808 人阅读 | 1 人评论 | 2017-08-05

void total()
{
  int total_0=0,total_1 = 0,total = 0;
  int ordertype = 0;
  for(int i=0; i<OrdersTotal(); i++)
  {
      OrderSelect(i,SELECT_BY_POS,MODE_TRADES);
      ordertype = OrderType();
      if(OrderSymbol()!=Symbol() || OrderMagicNumber()!=magic) continue;
         if(ordertype == OP_BUY)
         {
          total_0++;
         }
         else if(ordertype == OP_SELL)
         {
          total_1++;
         }   


  }

  total_buy = total_0;
  total_sell = total_1;
  total=total_0+total_1;
}

这样一串代码,能正常统计多单数量和空单数量吗?我实际运行似乎没达到我的统计效果。是不是有什么条件,请大侠们指点一下。

""
还没有人打赏,支持一下

评论|共 1 个

最他妈不是人

发表于 2018-8-28 21:13:56 | 显示全部楼层

好帖,来顶下

您需要登录后才可以回帖 登录 | 注册 微信登录

EA之家评论守则