if ((Close[0] < (Open[0]-(DipAmount * TickSize)) ))
{
EnterLong(Convert.ToInt32(DefaultQuantity), "");
}
I'm trying to say if the current price (Close[0]) is less than the opening price of the bar (Open[0]) by a certain amount (DipAmount), then to enter long. However it's not reading correctly and its always trading at 5pm (futures open of the bar). Any help please

Comment