I meet a problem in NT8 strategy coding. I want to use 60M, and 1D two time frame. 60M's indicator signal is an order entry signal. It will be calculate by Bar Close. However I want to use 1D indicator to filter the entry. In the 1D indicator calculate, I want to use by price change to calculate. In strategy coding, In very beginning: during if (State== State.SetDefaults) part, it has "calculate = Calculate.onBarClose . How to code it. Thanks a lot.
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Multi time frame strategy code probelm
Collapse
X
-
Multi time frame strategy code probelm
Dear NT system admin,
I meet a problem in NT8 strategy coding. I want to use 60M, and 1D two time frame. 60M's indicator signal is an order entry signal. It will be calculate by Bar Close. However I want to use 1D indicator to filter the entry. In the 1D indicator calculate, I want to use by price change to calculate. In strategy coding, In very beginning: during if (State== State.SetDefaults) part, it has "calculate = Calculate.onBarClose . How to code it. Thanks a lot.Tags: None
-
Hello wadson,
Thanks for your post and welcome to the NinjaTrader forums!
You would need to set your strategy to Calculate.OnPriceChange and then seperate your code that runs on price change and on bar update. This can be done by using the bool IsFirstTickOfBar.
For example
if (IsFirstTickOfBar)
{
// all code here is executed once per bar
}
// all code out here is executed on each price change.
For further clarity, we have an example here: https://ninjatrader.com/support/help...us/?charts.htm
Please note however that as you are using a multi-timeframe, you will need to consider which data series is calling OnBarClose() and you can use BarsInProgress value to determine this. You can then combine BarsInProgress and IsFirstTickOfBar, for example:
if (BarsInProgress == 0 && IsFirstTickOfBar)
{
// execute code here based on the first tick of the chart bar
}
A good reference for multi-timeframe or multi series coding is in the help guide section here: https://ninjatrader.com/support/help...nstruments.htm
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Mindset, 04-21-2026, 06:46 AM
|
0 responses
88 views
0 likes
|
Last Post
by Mindset
04-21-2026, 06:46 AM
|
||
|
Started by M4ndoo, 04-20-2026, 05:21 PM
|
0 responses
134 views
0 likes
|
Last Post
by M4ndoo
04-20-2026, 05:21 PM
|
||
|
Started by M4ndoo, 04-19-2026, 05:54 PM
|
0 responses
68 views
0 likes
|
Last Post
by M4ndoo
04-19-2026, 05:54 PM
|
||
|
Started by cmoran13, 04-16-2026, 01:02 PM
|
0 responses
119 views
0 likes
|
Last Post
by cmoran13
04-16-2026, 01:02 PM
|
||
|
Started by PaulMohn, 04-10-2026, 11:11 AM
|
0 responses
67 views
0 likes
|
Last Post
by PaulMohn
04-10-2026, 11:11 AM
|

Comment