Quote:
Originally Posted by fxsterling
I have a problem with this EA. I have it set to .10 lots and the money management is set to false. So it should trade .10 lots only. However it just got into a trade trading 1 standard lot!!! So, I think this may be a bug. My record so far using this ea and the previous versions is 3 wins and 2 losses for a total of +250 pips from the 5 trades. Ron
|
Excellent! I don't mean about the experiencing the bug, but rather about finding and reporting it. I will look fix that bug tonight along with the double-open one (which I might have already found a fix for). Also, great news on the excellent profit factor on the trades thus far. 5 trades is still statistically insignificant, but it's exciting nonetheless.
If you want to fix the bug yourself, replace the following line:
Code:
Lots = LotsOptimized();
with this one:
Code:
if (UseMoneyManagement == True) Lots = LotsOptimized();
-MRE-