I enter a short trade with:
EnterShort(0, 1, "SHORT");
What is the best way?
1. Right after I execute EnterShort, I can run:
SetStopLoss("SHORT", CalculationMode.Price, StopLossPrice, false);
2. At the
BarsInProgress == 1
ExitShort(0, 1, "SL", "SHORT");
I noticed that when I use the 2nd option, the order is not done asap and there are several ticks done in the middle - there are 4-5s until the ExitShort order is completed. I use Rithmic.

Comment