if CrossAbove(condition) (a moment in time condition)
buyentry = EnterLongLimit(0, true, 1, EMA(20)[0] + TickSize * 0, "Buy_1");
But this code locks in a working Limit order at the price of the EMA at the moment in time that the condition was true. How can I make the working limit entry follow the price of the EMA until it is filled instead of only looking for the specific price that the EMA was at the time the condition became true?
Thanks

Comment