So my question is how can I replicate the NT8 data series in NT7?
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Strategy on Heiken-Ashi tick Bars
Collapse
X
-
Strategy on Heiken-Ashi tick Bars
I have developed a strategy in NT8, but unfortunately my live license is only for NT7, currently. This strategy runs on Heiken-Ashi tick bars but this method isn't supported in NT7 as it is in NT8.
So my question is how can I replicate the NT8 data series in NT7?Tags: None
-
Hello MisterGee,
Thanks for your post.
In NinjaTrader7 you would create the dataseries with the same value of tick bars as in NinjaTrader8. In NinjaTrader7 you would use the Heiken-Ashi indicator to have the bars then show the same as Ninjatrader8.
To access the Heiken-Ashi price values you would need to refer to the indicator, as an example, in this manner: if (HeikenAshi().HAClose[0] > EMA(8)[0])
You would use HAOpen, HALow, HAHigh as needed.
-
Hello MisterGee,
Thanks for your post.
In NinjaTrader7 something like:
if (CrossAbove(HeikenAshi().HAClose, EMA(8), 1))
{
// do something
}
References:
http://ninjatrader.com/support/helpG...eiken_ashi.htm
http://ninjatrader.com/support/helpG...crossabove.htm
http://ninjatrader.com/support/helpG...crossbelow.htm
Comment
-
Hello MisterGee,
Thank-you for clarifying.
In Ninjatrader7, because Heiken-ashi bars are an indicator, you would need to use the Heiken-ashi as the input series to the EMAs. Typically the EMA would use the tick bars close so when using Heiken-Ashi you would specify the HAClose. Here is a cross above example:
if (CrossAbove(EMA(HeikenAshi().HAClose, 5), EMA(HeikenAshi().HAClose, 10), 1))
{
// do something
}
Comment
-
Originally posted by NinjaTrader_PaulH View PostHello MisterGee,
Thanks for your post.
In NinjaTrader7 you would create the dataseries with the same value of tick bars as in NinjaTrader8. In NinjaTrader7 you would use the Heiken-Ashi indicator to have the bars then show the same as Ninjatrader8.
To access the Heiken-Ashi price values you would need to refer to the indicator, as an example, in this manner: if (HeikenAshi().HAClose[0] > EMA(8)[0])
You would use HAOpen, HALow, HAHigh as needed.
Hello,
I would like to create a strategy that sells when a Heiken Ashi candle is red. I tried implementing it based on your instructions:
Code:if (HeikenAshi().HAOpen[0] > HeikenAshi().HAClose[0]) { EnterShort(); }
However, I encountered an error message when compiling the script:
The name "HeikenAshi" does not exist in the current context.
Any guidance on resolving this issue would be greatly appreciated.
Thanks
Comment
-
Hello kiro1000,
If you are by chance using NT7 the error would mean that where you tried to use that code was incorrect.
If you are otherwise using NT8 that would be expected, heiken ashi indicator is not included with NinjaTrader 8. The platform includes a bars type of heiken ashi instead. To use this type of condition in NT8 you would have to use the heikenashi8 indicator instead. https://ninjatraderecosystem.com/use...heiken-ashi-8/
For NT8 I would suggest using the strategy builder to create the condition so that it generates the correct syntax to use the indicator.
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
557 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
324 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
101 views
0 likes
|
Last Post
by Mindset
02-09-2026, 11:44 AM
|
||
|
Started by Geovanny Suaza, 02-02-2026, 12:30 PM
|
0 responses
545 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
547 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment