Hi,
It's working fine for me (version 5.30 trial). Note that you may need to
allow position size shrinking for all trades to fire. Use the detailed
log option from AA Settings Report tab to see what's going on.
SetBacktestMode(backtestRegularRawMulti);
PositionSize = -33;
Dates = DateTime();
Buy = Dates == StrToDateTime("2010-Jan-05") || Dates ==
StrToDateTime("2010-Jan-11") || Dates == StrToDateTime("2010-Jan-07");
Sell = DateTime() == StrToDateTime("2010-Jan-15");
Mike
--- In [email protected], "graphman27" <st...@...> wrote:
>
> I developed different signals for the same symbol and want all signals
to work individually within the portfolio backtester. It ain't workin'!
I tried adding "SetBacktestMode (backtestRegularRawMulti);" to the
beginning of my code, to no avail. I have the position size set up for
-33 and three separate signals. It only seems to be pulling one signal,
because the number of trades and the CAR should be 3Xs higher than it
is.
>
> Help!
>
> Thanks,
>
> Steve.
>