If I have 1 min as the primary and 3 min as the secondary series, is it possible to evaluate the Primary bars after the close of the bar, and evaluate the 3 min in real-time? In theory it would evaluate all the conditions on the 1 min close, and at the same time evaluate the conditions of the 3 min bar as they exist at the 1 min close. Granted this might provide a false signal after a final evaluation once the 3 min bar actually closes, but if I wait for the 3 bar to close, I often miss the entry signal.
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Possible to evaluate Primary and Secondary bars differently?
Collapse
X
-
Possible to evaluate Primary and Secondary bars differently?
I have several MTF strategies that I'm porting to NT8. I do a lot with 1min, 3min and hourly bars. Using a lower timeframe as the primary and the other bar series for confirmation.
If I have 1 min as the primary and 3 min as the secondary series, is it possible to evaluate the Primary bars after the close of the bar, and evaluate the 3 min in real-time? In theory it would evaluate all the conditions on the 1 min close, and at the same time evaluate the conditions of the 3 min bar as they exist at the 1 min close. Granted this might provide a false signal after a final evaluation once the 3 min bar actually closes, but if I wait for the 3 bar to close, I often miss the entry signal.Tags: None
-
Hi fmcap, thanks for posting.
You can filter each bar context with the BarsInProgress property context and also filter OnEachTick logic from OnBarClose logic by running the script OnEachTick and using IsFirstTickOfBar e.g.
The bar data will always be referenced in the way described here in the documentation:Code:if(BarsInProgress == 0) { //primary bar context if(IsFirstTickOfBar) { //OnBarClose logic } //OnEachTick logic } if(BarsInProgress == 1) { //primary bar context if(IsFirstTickOfBar) { //OnBarClose logic } //OnEachTick logic }
https://ninjatrader.com/support/help...taIsReferenced
Best regards,
-ChrisL
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by CarlTrading, 05-11-2026, 05:56 AM
|
0 responses
56 views
0 likes
|
Last Post
by CarlTrading
05-11-2026, 05:56 AM
|
||
|
Started by CarlTrading, 05-10-2026, 08:12 PM
|
0 responses
33 views
0 likes
|
Last Post
by CarlTrading
05-10-2026, 08:12 PM
|
||
|
Started by Hwop38, 05-04-2026, 07:02 PM
|
0 responses
195 views
0 likes
|
Last Post
by Hwop38
05-04-2026, 07:02 PM
|
||
|
Started by CaptainJack, 04-24-2026, 11:07 PM
|
0 responses
359 views
0 likes
|
Last Post
by CaptainJack
04-24-2026, 11:07 PM
|
||
|
Started by Mindset, 04-21-2026, 06:46 AM
|
0 responses
280 views
0 likes
|
Last Post
by Mindset
04-21-2026, 06:46 AM
|

Comment