Hello guys, this is an EA that I created with that website (I forgot the name) and tweaked myself. It's actually a pretty good EA except for one thing. When it loses, it loses BIG. This seems due to the fact that it will not close orders immediately when the price goes over the Slow MA. I've tried implementing realtime checks like:
The above statements should stop a buy if the two previous bars close in a down trend but for some reason it will not close on these conditions as intended. Also enacting a S/L seems to have a bad effect on the overall performance of the EA as well.
Any assistance would be appreciated. Check out the report and you'll see that it has potential. Over the past year and a half it would have turned $3000 into about $60k. This might not sound impressive however the total profit was $330k which means it botched a lot of trades.
Suggested settings:
EURUSD
M30
EachTick Mode = True
Trailing Stop = 60
I'm using a Demo account on FXOpen
Inserted Code
if(iclose(Symbol(), Period(), 2) < iclose(Symbol(), Period(), 1)) CloseBuy; or if(Close[2] < Close[1]) CloseBuy;
Any assistance would be appreciated. Check out the report and you'll see that it has potential. Over the past year and a half it would have turned $3000 into about $60k. This might not sound impressive however the total profit was $330k which means it botched a lot of trades.
Suggested settings:
EURUSD
M30
EachTick Mode = True
Trailing Stop = 60
I'm using a Demo account on FXOpen
Attached File(s)