So I am thinking of alternatives.
If I understand correctly using ExitLongMIT() causes the same problem, so I thought of checking when the exit condition is met and exit on a simple market order via ExitLong().
So my question is: what is the (best) way to control when a price level is hit and instantaneously (without waiting for the bar to close) trigger the market order?
ex: if (Close[0]==High[1]) {ExitLong();}

Comment