Hi Eric, I couldn't get your code to work. I made some slight amendments (not to the critical areas) and it was "PointValue" not "PositionSize" that I meant to change - sorry, a confused moment!!!
if( Status("action") == actionPortfolio )
{
bo = GetBacktesterObject();
bo.PreProcess();
for(bar = 0; bar < BarCount; bar++){
for(sig = bo.getFirstSignal(bar); sig; sig =
bo.getNextSignal(bar)){
sig.PointValue = 5000;
}
bo.processTradeSignals(bar);
}
bo.postProcess();
}
Can anyone advise?
