Having some problems with using EnterShortStopLimit and EnterLongStopLimit orders in my strategy.
When I'm using this code it works good.
EnterLongStopLimit(currentBar.High + 1, currentBar.High + 1);
EnterLongStopLimit(currentBar.High, currentBar.High);
What can be the problem? I really want to enter on the highs and lows of the current bar.
Thanks!

Comment