Below is some of the code. Thanks for any direction you can give me.
{
if (longButtonClicked)
EnterLongStopLimit(Convert.ToInt32(1), Open[0] + (7 * TickSize), Open[0] + (7 * TickSize));
if (shortButtonClicked)
EnterShortStopLimit(Convert.ToInt32(1), Open[0] + (-7 * TickSize), Open[0] + (-7 * TickSize));
if (!longButtonClicked)
ExitLong();
if (!shortButtonClicked)
ExitShort();
}

Comment