I'm trying to get NT to submit an order at 9:29:50 AM, but I'm not getting anywhere. I don't have a problem doing it at 9:29 or 9:30 because on 1 minute bars, the bar time stamp is to the minute, not the seconds.
Below is a sample of what I'm trying to do, but it is not working. Any help is greatly appreciated.
CalculateOnBarClose = false;
If (Position.MarketPosition == MarketPosition.Flat
&& DateTime.Now.Ticks == 092950
{
Do This
}

Comment