No - I have all my BUY and SELL rules in place. The backtester works fine buying and selling according to all my rules.
I place the code I mentioned after the BUY and SELL rules:
e = Equity();
netprofit = ROC( e, 1 );
for (i=1; i<BarCount; i++)
{
xxx = netprofit[i];
}
And only get zero's for xxx!
PS- I am using Futures Mode - does this alter things?
