I am trying to set the Stop-Loss one tick above the last bar and have the following code.
// Enter Short
if ((CrossBelow(MACD1.Default, MACD1.Avg, 1)) && TradeTaken == false && Close[0] < Close[1])
{
EnterShort(Convert.ToInt32(DefaultQuantity), @"Short");
TradeTaken = true;
}
SetStopLoss(@"Short", CalculationMode.Price, High[0] + TickSize, false);

Comment