SHORTS....
if (some condition is met)
{
EnterShortLimit(0, true, DefaultQuantity, GetCurrentAsk() + 2 * TickSize, "ShortA");
EnterShortLimit(0, true, DefaultQuantity, GetCurrentAsk() + 3 * TickSize, "ShortB");
EnterShortLimit(0, true, DefaultQuantity, GetCurrentAsk() + 4 * TickSize, "ShortC");
}
if (some condition is met
{
EnterLongLimit(0, true, DefaultQuantity, GetCurrentBid() - 2 * TickSize, "LongA");
EnterLongLimit(0, true, DefaultQuantity, GetCurrentBid() - 3 * TickSize, "LongB");
EnterLongLimit(0, true, DefaultQuantity, GetCurrentBid() - 4 * TickSize, "LongC");
}

Comment