Hi,
I've been trying to do a points only backtest for the GBPUSD. I have been using
the code below:
SetBacktestMode( backtestRegular );
SetOption("FuturesMode", True);
SetOption("InitialEquity", 10000);
SetOption("AllowPositionShrinking", 1);
SetOption("CommissionMode", 2);
SetOption("CommissionAmount", 0);
RoundLotSize = 1;
PointValue=1;
PositionSize = MarginDeposit = 1;
But it doesn't work!
I'd like for each each 1 pip move to give a profit/loss of $1. For GBPUSD 1 pip
= 0.0001 move. This is so I can compare trading systems by how many pips they
make, not $ profit.
Thanks,
Alex