{
LE1 = EnterLongStopLimit(0, true, qty1, SwHi, SwHi, "Long1");
if (qty2 != 0)
LE2 = EnterLongStopLimit(0, true, qty2, SwHi, SwHi, "Long2");
if (qty3 != 0)
LE3 = EnterLongStopLimit(0, true, qty3, SwHi, SwHi, "Long3");
}
{
SE1 = EnterShortStopLimit(0, true, qty1, SwLo, SwLo, "Short1");
if (qty2 != 0)
SE2 = EnterShortStopLimit(0, true, qty2, SwLo, SwLo, "Short2");
if (qty3 != 0)
SE3 = EnterShortStopLimit(0, true, qty3, SwLo, SwLo, "Short3");
}
Can you tell me what I have wrong here?
Thanks

Comment