Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Input Series For Indicator
Collapse
X
-
I'm not sure you have understood my intent, I understand the HA code references the high/low values on the chart and as such cannot be given a single 'DataSeries' as input. What I meant was could I say take the close of a HA bar series and use it to calculate a MA for instance.Originally posted by Gumphrie View PostYou can't as price type is not supported on HeikenAshi. Think about it, anything that references High/Low etc.. values directly isn't likely to support price type.
Comment
-
I did something similar to this.
There's one twist you have to handle, and that is that the HaikenAshi indicator as supplied by NinjaTrader has the the ChartOnly attribute set to true in the Initialize() method.
In order to call an indicator, ChartOnly must be set to "false".
Therefore, I created a new copy of the HaikenAshi using "Save As...", naming it HaikenAshiCallable, and I then changed the one line as follows:
Then I compiled the indicator.Code:ChartOnly = [COLOR=Blue]false[/COLOR]; [COLOR=DarkGreen]// Changed to "false" so indicator can be called from another indicator.[/COLOR]
Then I edited the EMA indicator did another "Save As..", calling the result EMA_HiekenAshi, and changed the OnBarUpdate method so it reads as follows:
Then I compiled it and added it to a chart. It seems to work, but is only slightly different fraom a standard EMA.Code:[COLOR=Blue] protected override void[/COLOR] OnBarUpdate() { DataSeries ha_close = HeikenAshiCallable().HAClose; [COLOR=DarkGreen]// Reference close data series of HeikenAshi indicator.[/COLOR] Value.Set( EMA( ha_close, period )[0] ); }
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
571 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
330 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
548 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
549 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment