1评论

0收藏

移动止损 辅助工具

avatar 辞忧 | 293 人阅读 | 1 人评论 | 2024-09-01

void MoveStopLoss(int trail)
  {
   for(int cnt = OrdersTotal() - 1; cnt >= 0; cnt--)
     {
      if(OrderSelect(cnt, SELECT_BY_POS, MODE_TRADES))
        {
         if(OrderSymbol() == Symbol() && OrderMagicNumber() == MagicNumber)
           {
            double currentSL = OrderStopLoss();
            double newSL;
            double currentProfit = 0.0;

            // 计算当前盈利































                 }
           }
        }
     }

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

评论|共 1 个

探索者_6717

发表于 2024-9-25 10:52:36 | 显示全部楼层

这个在ea系统内还是很有用的。

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

EA之家评论守则