Seetu position size

I have code lines below to specify strategy to maintain position size of 1.
Signals generated with quant of 4, instead of 1.
Help me. If there is any step missed or tweaks to be made. Thanks.

fyi - trying on futures like NQZ20 or ESZ20.

SetOption( “initialequity”, 50000 );
SetOption(“RoundLotSize”,1);
SetPositionSize(1, spsShares);
C2TradingSignal(sigBTO, PriceType = priceMarket, TypeOfSymbol = instrmntFuture);
C2TradingSignal(sigSTO, PriceType = priceMarket, TypeOfSymbol = instrmntFuture);

Use “Amount”:

C2TradingSignal(sigBTO, PriceType = priceMarket, TypeOfSymbol = instrmntFuture, Amount=1);

Seetu uses your strategy BuyPower instead of StartingCapital when generating trading signals in the “Run It” mode.