I believe you are not understanding the core concepts here about live until cancelled orders.
A live until cancelled order is a order you submit one time and it works until filled or cancelled. If you call that order method again you get the ignored warning because you are trying to submit a separate duplicate order. Your condition that calls ExitShortStopMarket needs to happen only 1 time, the code you have now its happening more than one time.
If you wanted to later update the price for example to trail with that order that is active you need to use ChangeOrder and supply the order object for the order you want to change.

Comment