I use EnterLong(num, "Long1") to enter a long position, and in initialize function I have
SetProfitTarget("Long1", CalculationMode.Ticks, MyProfit);
SetStopLoss("Long1", CalculationMode.Ticks, MyStop, true);
for exit.
My question is, in certain condition, I would like to add more shares/contract to a open position... I thought I could simply use
EnterLong(num, "Long2")
to open another long position, but it seems not working.
Is there a easy way to open another long position? (instead of using multiple entries)
Thanks.

Comment