If im using,
pEntry = EnterShortLimit(0,true, 1, hPiv - entryAllowance * TickSize, "pEntry");
to enter a position and once executed a stop order is placed,
pStop = ExitShortStop(0, true, execution.Order.Filled, hPiv + stop * TickSize, "Stop of Short", "pEntry");
If I want to liquidate the position at a certain time before close can I just use,
ExitLong("pEntry");
and if so do I need to take-care of the stop order or will it automaticly get cancelled?

Comment