bals 发表于 2018-7-10 00:08:37

已有 4 人购买  本主题需向作者支付 2 枚金币 才能浏览 购买主题

3028947360 发表于 2021-2-22 09:48:51

哎,楼主说了是对锁,就是开单错了,反向帮你锁单,固定损失,哪来的平仓代码

wenfan7485 发表于 2018-9-13 20:11:04

骗子,骗金币的,代码里面只有开仓代码,没有平仓代码!鄙视垃圾坑人的东西,举报!
//+------------------------------------------------------------------+
//| mo_bidir_v0_1.mq4                                                |
//|                                                                  |
//| - Works best in 5M timeframe                                     |
//| - Bug fix to stop_loss in line 22 2010.04.07                     |
//+------------------------------------------------------------------+
#property copyright "Copyright ?2010 - Monu Ogbe"

#define MAGIC1234
#define IDENT"mo_bidir_v0_1"

extern doublelots         = 1;
extern doublestop_loss      = 80;   // (8 pips) optimise 50-2000
extern doubletake_profit    = 750;// (75 pips) optimise 50-2000

int            last_bar       = 0;

int start(){
   if (last_bar == Bars) return(0);
   last_bar = Bars;
   if (OrdersTotal() == 0){
         OrderSend(Symbol(), OP_BUY, lots ,Ask, 3, Ask - stop_loss * Point, Bid + take_profit * Point, IDENT, MAGIC, 0, Blue);
         OrderSend(Symbol(), OP_SELL, lots ,Bid, 3, Bid + stop_loss * Point, Ask - take_profit * Point, IDENT, MAGIC, 0, Red);
   }
   return(0);
}

小yo 发表于 2020-6-20 13:42:42

有竞争才有进步嘛

btclyb85 发表于 2020-6-22 16:35:25

找到好贴不容易,我顶你了,谢了

阿伟点金 发表于 2020-7-16 20:08:02

学习了,不错

统一奶茶 发表于 2020-8-21 12:51:37

谢谢楼主分享

很爱很爱你 发表于 2021-7-26 13:35:26

{:1_179:}

覆盖通过发 发表于 2021-8-5 12:34:16

谢谢

lucky518 发表于 2022-2-27 13:08:15

看看
页: [1] 2
查看完整版本: mo_bidir_v0_1对锁趋势ea.mq4