manual backtest 31-5-2012
18 winners, 5 losers, 5 no trades
18 winners, 5 losers, 5 no trades
3 Bar Fractal with mid-bar and bar on each side 11 replies
Inside bar detector system 0 replies
Inside bar or outside bar identifier 7 replies
Pin bar, pin bar, pin bar 0 replies
DislikedFWIW
EA needs a lot of (a lot) of improvements, if the thread moves ahead and the strategy has any edge, whatsoever
To name a few things:
- There is nothing in trade logic for 5min IB's where close is same as open
- Settings are quite inflexible
- I am even not sure what exactly is the flow of code regarding regular SL or MaxSL
- There were a lot of Order Send errors in v1.4 so have not tested it.
(Have tested & traded relatively more HIGH frequency EA's and never have received any such errors in logs)
P.S. Personally...Ignored
Dislikedi did a quick visual backtest for the last few days and it was a total fiasco... at the point that even with negative R:R, there was more losses than wins.Ignored
Disliked@Anath
For ECN broker you couldn't put TP and SL when you open trades. Instead you modify the order with TP and SL after the order is open. And slippage will be ignored on ECN broker.
Take a look here:
if (ECN) Ticket = OrderSend(Symbol(), OP_SELL, Lots, Bid, Slippage, 0, 0, TradeComment, MagicNumber, 0, DeepPink);
>>To open order if it is an ECN broker.
else Ticket = OrderSend(Symbol(), OP_SELL, Lots, Bid, Slippage, StopLossLevel, TakeProfitLevel, TradeComment, MagicNumber, 0, DeepPink);
>>If it was not ECN TP and SL is sent with...Ignored
DislikedI am not aware of how ECN thing will work, since i didn't traded with those brokers.
Thank you very much for providing this valuable information.
I will take a look at this and also i need to read more about ECN brokers.
Thanks a lot bro.Ignored
DislikedThe EA I attached to this post have those bug repaired.
I also have my own version attached. It's a bit different.Ignored