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 sjsj2732, Yesterday, 04:31 AM
|
0 responses
33 views
0 likes
|
Last Post
by sjsj2732
Yesterday, 04:31 AM
|
||
|
Started by NullPointStrategies, 03-13-2026, 05:17 AM
|
0 responses
286 views
0 likes
|
Last Post
|
||
|
Started by argusthome, 03-08-2026, 10:06 AM
|
0 responses
286 views
0 likes
|
Last Post
by argusthome
03-08-2026, 10:06 AM
|
||
|
Started by NabilKhattabi, 03-06-2026, 11:18 AM
|
0 responses
133 views
1 like
|
Last Post
|
||
|
Started by Deep42, 03-06-2026, 12:28 AM
|
0 responses
91 views
0 likes
|
Last Post
by Deep42
03-06-2026, 12:28 AM
|

Comment