There was a report of some lot size issue by someone earlier....
until we find the gremlin responsible for this, it might be kinder on your live account to hold off trading live for a while.
Cheers
That's....weird.bazze » Tue Jan 14, 2014 4:53 pm wrote:I opened a new demoacc. with a new broker,using the last version of the EA.
I run it OOTB.
There must be something wrong? It opened it's first tade with lotsize 50![]()
I run the previous version on another broker,and it's doing just fine![]()
For now it has closed a total of 10 trades,7 wins(+$342.33) and 3 losses(-$160.20)
One trade still open at +$17...
I run it with lotsize 0.1...
Edit: Last trade closed with a profit of $26.60
With the limited info you provided (actually, singular info), I'd need to be a *mind reader* to know why it's happening (!!)bazze » Tue Jan 14, 2014 5:50 pm wrote:Yeah,that's true...Luckely it turns out to be a winner![]()
Do you have any idea why this is happening?
Now these is the kind of info I'm talking 'bout!, thanks Varso!varso » Tue Jan 14, 2014 6:16 pm wrote:here is thepictures from roboforex. No trade.
and here is also log files. No errors.
2014.01.13 17:57:03 TMA_CG XAUUSD.m,M15: initialized
2014.01.13 17:57:03 TMA_CG XAUUSD.m,M15: loaded successfully
2014.01.13 17:57:03 TMA_CG XAUUSD.m,M15: initialized
2014.01.13 17:57:03 TMA_CG XAUUSD.m,M15: loaded successfully
2014.01.13 17:56:59 TMACG_Gold_M15_STACKING_B XAUUSD.m,M15: initialized
2014.01.13 17:56:59 TMACG_Gold_M15_STACKING_B XAUUSD.m,M15 inputs: LotSize=0; Risk=3; StopLossPips=30; MaxSpread=100; JumpingStopPips=32; JumpToBreakEvenOnly=true; BreakEvenProfit=2;
2014.01.13 17:56:31 TMACG_Gold_M15_STACKING_B XAUUSD.m,M15: loaded successfully
2014.01.13 17:56:16 TMA_CG XAUUSD.m,M15: initialized
Hey Geges!Geges » Wed Jan 15, 2014 1:32 am wrote:
Hi Dudest,
I am testing version "B" on Finfx micro demo symbol = XAUUSDm
OOTB settings...10 trades....7 winners....3 losers...account up over 10%
in only 2 trading days. No errors in expert,journal or log file.
I also test version "Bmod" on Pellucidfx demo symbol = XAUUSD(.)
OOTB setting.... 7 trades....5 winners....2 losers....account up over 10%
No errors here either.
I did manually close 2 winners in the second account at the end of the
NY session.
I have version "C'" running on a different pc and have not been checked
that yet.
Like you I am going live with this next week.
Congratulations and Thank You very much.
Geges
Thank yoududest » Wed Jan 15, 2014 11:49 am wrote:Now these is the kind of info I'm talking 'bout!, thanks Varso!varso » Tue Jan 14, 2014 6:16 pm wrote:here is thepictures from roboforex. No trade.
and here is also log files. No errors.
2014.01.13 17:57:03 TMA_CG XAUUSD.m,M15: initialized
2014.01.13 17:57:03 TMA_CG XAUUSD.m,M15: loaded successfully
2014.01.13 17:57:03 TMA_CG XAUUSD.m,M15: initialized
2014.01.13 17:57:03 TMA_CG XAUUSD.m,M15: loaded successfully
2014.01.13 17:56:59 TMACG_Gold_M15_STACKING_B XAUUSD.m,M15: initialized
2014.01.13 17:56:59 TMACG_Gold_M15_STACKING_B XAUUSD.m,M15 inputs: LotSize=0; Risk=3; StopLossPips=30; MaxSpread=100; JumpingStopPips=32; JumpToBreakEvenOnly=true; BreakEvenProfit=2;
2014.01.13 17:56:31 TMACG_Gold_M15_STACKING_B XAUUSD.m,M15: loaded successfully
2014.01.13 17:56:16 TMA_CG XAUUSD.m,M15: initialized
And you get rewarded for itwith a quick solution.
Your brokers advertised spread for Gold is 730 points, though from the quotes in the Order (F9) window, that's more like 73 points ( 7.3 pips ) [ the quotes on the Order window show 6.8 pips but I'm guessing you took that a few seconds after the chart, which is OK, gives all the info I need ]
In short, your broker is advertising the 2 digits after the decimal as pips, when in reality, for Gold, only the first digit after the decimal is the pip!
The solution for you guys with the sneaky XAUUSD.m broker type is to set MaxSpread to 1000
To your broker that will mean: 1000 points = 100 pips [ when in real life, that's 10 pips, which is the default setting anyway ]
So: MaxSpread = 1000
Cheers
Yeah, I would like to get to the bottom of that too.SpiderX » Wed Jan 15, 2014 3:35 am wrote:Hi Geges,
There was a report of some lot size issue by someone earlier....
until we find the gremlin responsible for this, it might be kinder on your live account to hold off trading live for a while.![]()
Cheers
Hmm...for now, just MaxSpread.varso » Wed Jan 15, 2014 2:04 pm wrote: Thank you
I connect to Vps and rewritte the setting.
Do i rewrite also another setting? Like Stoplost, JumpingStop, BreakEven? Or only MaxSpread?
Code: Select all
Defining the Variables:
int MiniAccountDivisor = 1;
Init:
if (MarketInfo(Symbol(),MODE_LOTSIZE) == 10000)MiniAccountDivisor = 10;
LotDivisor /= MiniAccountDivisor;
When calculating lots:
Lots = NormalizeDouble(AccountBalance() / LotDivisor,2);
if (Lots < 0.01)Lots = 0.01;