Hi all,
I was testing a system for a specific Forex symbol, so I used
setoption("futuresmode",true) and I also specified the symbol's
definitions (ticksize,margindeposit,etc) in the afl itself, but I
wasn't getting the expected results.
I was sepecifying the symbol's definitions before calling setoption
function.
Then I tried to call setoption first and only after that, setting the
symbol's definitions and now it works fine.
Does someone know why this happens?
SetOption("Futuresmode",True);
TickSize=0.0001;
MarginDeposit=10;
PointValue=1000;
RoundLotSize=1;
thanks