For example, i want to go long on breaking through level 600, but candle opens at 595, and closes at 610. So i get fill on 610 price. I want to be filled at 600 level.
This happens if i use next code:
if(High[0] > buylvl)
EnterLong(1,"Long");
But if i use EnterLongLimit - i have no fill at all.

Comment