If I'm understanding what you want to do - set up 10 positions with
$10k each, or 1/10 of the portfolio, then the code could look like this:
PosQty = 10; //Number of positions
SetOption("MaxOpenPositions", PosQty );
PositionSize = -100/PosQty; //Divide total equity by # of positions.
Hope this helps!
--- In [email protected], "gmorlosky" <[EMAIL PROTECTED]> wrote:
>
> How can I set the BackTester settings so that of the $100,000 portfolio
> I designate, it buys with only $10,000 (max open positions would be 10,
> of course, at first). I only end up with 1 open position no matter what
> I set ?
>