In first time, sorry for my English level, itīs some bad.
I have the next problem: in my strategy I enter on market with long position on day 16 bar. You can see the picture:

EnterLong(DefaultQuantity, "Pos_Long");
stoplevel_alcista = Low[2]-filtro;
EnterShortStop(DefaultQuantity,stoplevel_alcista," Pos_Short");
Long order is executed the previous day with BarOnClose active, so is executed on day 16 open at 46.26, itīs ok. Also, a stop reverse order is executed at same time at 44.56. I supose than stop order is not ejecuted at 16 day because both orders are evaluated at same time (Iīm not sure), but I didnīt understand why stop executes on bar 18 and not in bar 17.
Could someone explains me where I mistaking?
Thanks
Regards,
Andres
Comment