比赛 - 页 13

 
felix:
嗨,Newdigital。

有任何关于比赛的消息吗?

费利克斯

比赛在8月停止了。9月也没有继续。还没有。

它是暂时停止的。我很抱歉。

 
newdigital:
比赛是在8月停止的。它在九月没有继续。还没有,只是暂时停止了。我很抱歉。

什么? 9月也停止了吗? 你确定吗?

 
codersguru:
什么? 9月也停了? 你确定吗?

有可能。希望它能启动。

[删除]  

有一个EA可以与之竞争

哦,我也希望它能恢复。我有一个正在改进的EA,它可能有潜力。

当有机会恢复比赛时,请更新我们的信息

 

我正在用欧元兑美元H1时间框架测试这个EA的比赛。

USDCHF H1时间框架和USDJPY H1的默认设置,没有任何问题。这个EA可以和其他EA一起工作,神奇的数字也会自动生成。

但请注意,这个EA并不经常交易。你可以从所附的报表中看到这一点。它放置止损单,执行它们,2或3周后,所有的订单可能被关闭。在几天的非交易期后,该EA将再次放置挂单,执行它们并关闭所有订单。这就是我从交易中看到的一切。

 

恢復比賽

有关于恢复比赛的消息吗?

 
codersguru:
有关于恢复比赛的消息吗?

还没有,对不起。

 
newdigital:
请找到GridMACD的固定版本。

GridMACD EA的声明。

EA在第33号帖子中。

附加的文件:
gridmacd.htm  210 kb
gridmacd.gif  6 kb
 
newdigital:
价格交叉

-------------------

设置。默认值。

TF: 1H

对子。

"eurusd", "usdchf", "gbpusd", "eurjpy"

渠道

-------------------

设置。默认值。

TF: 1H

对子。

"欧元兑美元"、"欧元兑美元"、"英镑兑美元"

MaChannel EA的表现非常好。

从7月初开始就一直如此。+1693点。

https://www.mql5.com/en/forum/173383/page52

链接到文件的线程,下载https://www.mql5.com/en/forum/176044

附加的文件:
 

这真是太好了!但你的版本有一个小错误! 我不知道它是如何盈利的!

for(cnt=0;cnt<total;cnt++)

{

OrderSelect(cnt, SELECT_BY_POS, MODE_TRADES);

if(OrderType()<=OP_SELL && OrderSymbol()==Symbol())

{

if(OrderType()==OP_BUY) //<-- Long position is opened

{

if(UseClose)

{

if(CloseBuyCondition) //<-- Close the order and exit!

{

CloseOrder(OrderType()); return(0);

}

}

TrailOrder(OrderType()); return(0); //<-- Trailling the order

}

if(OrderType()==OP_SELL) //<-- Go to short position

{

if(UseClose)

{

if(CloseSellCondition) //<-- Close the order and exit!

{

CloseOrder(OP_SELL); return(0);

}

}

TrailOrder(OrderType()); return(0); //<-- Trailling the order

}

}

}[/PHP]

It should be:

[PHP]for(cnt=0;cnt<total;cnt++)

{

OrderSelect(cnt, SELECT_BY_POS, MODE_TRADES);

if(OrderType()<=OP_SELL && OrderSymbol()==Symbol())

{

if(OrderType()==OP_BUY) //<-- Long position is opened

{

if(UseClose)

{

if(CloseBuyCondition) //<-- Close the order and exit!

{

CloseOrder(OrderType());

}

}

TrailOrder(OrderType()); //<-- Trailling the order

}

if(OrderType()==OP_SELL) //<-- Go to short position

{

if(UseClose)

{

if(CloseSellCondition) //<-- Close the order and exit!

{

CloseOrder(OP_SELL);

}

}

TrailOrder(OrderType()); //<-- Trailling the order

}

}

}

附上修复后的版本!

newdigital:
MaChannel EA的表现非常好。

完全是从7月初开始的。+1693点。

https://www.mql5.com/en/forum/173383/page52

链接到文件'线程下载https://www.mql5.com/en/forum/176044
附加的文件:
machannel.mq4  12 kb