Two different pos sizing, was: raw Backtest using SetBacktestMode( backtestRegularRaw2Multi )

Need some help using SetBacktestMode( backtestRegularRaw2Multi ).

Please have a look at below sample code :

SetBacktestMode( backtestRegularRaw2Multi );

SetPositionSize( 20, spsShares);
Buy = High>Ref(High,-1) AND Low<Ref(Low,-1);
Sell = Ref(Close, 0);

SetPositionSize( 40, spsShares);
Buy = High>Ref(High,-1) AND Low>Ref(Low,-1);
Sell = Ref(Close, 0);

After Backtesting, I can see the results only for

SetPositionSize( 40, spsShares);
Buy = High>Ref(High,-1) AND Low>Ref(Low,-1);
Sell = Ref(Close, 0);

Can someone pls guide me as to what needs to be done to get results of both the 20 and 40 Setpositionsize codes?

Thanks in Advance

You've got two systems (pos sizing is PART of the system) and you have to run TWO backtests to get TWO results.

Thanks @Tomasz

Btw, Isn't backtestraw2Multi supposed to help us run multiple entries and exits in the same backtest?

What you are trying to do is NOT using multiple entries, but using 2 different position sizing with SAME entries.

http://www.amibroker.com/guide/h_portfolio.html