if (BarsInProgress==0) {
if (
(Position.MarketPosition == MarketPosition.Flat)
&& (BarsSinceExit(0,"",0) == -1 || BarsSinceExit(0,"",0) > 0)
&& (Close[2][0]>Open[2][0])
)
{
EnterLong(0, quantity,"LockedLong");
EnterLong(0, quantity,"Long");
}
}
The part in question is (Close[2][0]>Open[2][0])
So I understand from the last post I made http://www.ninjatrader.com/support/f...ad.php?t=63108 that I have to use BarsInProgress, but what if I want to enter on the 1st bar series but my entry conditions include other bar series? How can I make it check a, for example, 10 min time series as well as the primary series

Comment