Contest - page 13

 
felix:
Hi Newdigital,

are there any news about contest?

felix

Contest was stoped in August. It was not continuing in September. Not yet.

It was stopped temporarily. I am sorry.

 
newdigital:
Contest was stoped in August. It was not continuing in September. Not yet. It was stopped temporarily. I am sorry.

WHAT?? Stopped in September too?? are you sure?

 
codersguru:
WHAT?? Stopped in September too?? are you sure?

Probable. Hope that it will start.

 

got an EA to compete with

Oh, I also wish it will resume. I have an EA that I'm refining and it may have potential.

Please update us when there is a chance for the return of the contest!

 

I am testing this EA for contest with EURUSD H1 timeframe,

USDCHF H1 timeframe and USDJPY H1 with default settings and do not have any problem. This EA can work together with other EAs and magic numbers are generating automatically.

But please note that this EA is not trading often. You may see it from the statements attached. It placed stop orders, executed them and after 2 or 3 weeks all the orders may be closed. After few days not trading period this EA will place the pending orders once again, executed them and closed all. That's all that i saw from the trades.

 

Resuming the contest

Any news about resuming the contest???

 
codersguru:
Any news about resuming the contest???

Not yet sorry.

 
newdigital:
Please find fixed version of GridMACD.

Statements for GridMACD EA.

EA is on post #33.

Files:
gridmacd.htm  210 kb
gridmacd.gif  6 kb
 
newdigital:
PriceCross

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

Settings: Default.

TF: 1H

Pairs:

"EURUSD","USDCHF","GBPUSD","EURJPY"

MaChannel

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

Settings: Default.

TF: 1H

Pairs:

"EURUSD","EURGBP","GBPUSD"

MaChannel EA is performing very good:

Totally from the beginning of July: +1693 pips.

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

Links to files' thread to download https://www.mql5.com/en/forum/176044

Files:
 

That's GREAT! But the version you have has a little bug! I don't know how it made profit!

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

}

}

}

Attached the fixed version!

newdigital:
MaChannel EA is performing very good:

Totally from the beginning of July: +1693 pips.

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

Links to files' thread to download https://www.mql5.com/en/forum/176044
Files:
machannel.mq4  12 kb
Reason: