My strategy...it cannot make use of the live historical orders aspect of a strategy...so I need to be able to submit stop orders using the function:
ExitShortStop(int barsInProgressIndex, bool liveUntilCancelled, int quantity, double stopPrice, string signalName, string fromEntrySignal)
because I need to make use of liveUntilCancelled
But I wont have a "fromEntrySignal" to use. Can I pass null? Is there a way to still submit stop orders with this function?

Comment