I'm currently using a Heiken Ashi lower indicator but it's missing the ability to add a zero line as a value plot. Any ideas on adding the zero line as a value plot in the indicator? Thanks!
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Heiken Ashi
Collapse
X
-
This will enable me to use the zeroline as a value plot when building a strategy?Originally posted by NinjaTrader_ChelseaB View PostHello trader14,
Line plots can be added with AddLine().
Below is a link to the help guide.
https://ninjatrader.com/support/help...us/addline.htm
Comment
-
Hello trader14,
If the value is always 0, you can compare with 0 in the strategy conditions.
If you want the value (in case the user changes the value of the line) and the strategy is an unlocked strategy, the indicator.Lines[0].Value will be the value of that line.
If the strategy is in the strategy builder, only Plots are available in the strategy builder. So the line would need to be added with AddPlot(new Stroke(Brushes.Blue), PlotStyle.HLine, 1) and on each bar you would need to set the Value of the plot. (You could set this to a user input value)
Chelsea B.NinjaTrader Customer Service
Comment
-
I'm trying to use this as a cross over in my strategy, when xyz crosses above or below the zeroline... etc.Originally posted by NinjaTrader_ChelseaB View PostHello trader14,
If the value is always 0, you can compare with 0 in the strategy conditions.
If you want the value (in case the user changes the value of the line) and the strategy is an unlocked strategy, the indicator.Lines[0].Value will be the value of that line.
If the strategy is in the strategy builder, only Plots are available in the strategy builder. So the line would need to be added with AddPlot(new Stroke(Brushes.Blue), PlotStyle.HLine, 1) and on each bar you would need to set the Value of the plot. (You could set this to a user input value)
https://ninjatrader.com/support/help...us/addplot.htm
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by CarlTrading, 03-31-2026, 09:41 PM
|
1 response
81 views
1 like
|
Last Post
|
||
|
Started by CarlTrading, 04-01-2026, 02:41 AM
|
0 responses
42 views
0 likes
|
Last Post
by CarlTrading
04-01-2026, 02:41 AM
|
||
|
Started by CaptainJack, 03-31-2026, 11:44 PM
|
0 responses
64 views
2 likes
|
Last Post
by CaptainJack
03-31-2026, 11:44 PM
|
||
|
Started by CarlTrading, 03-30-2026, 11:51 AM
|
0 responses
66 views
0 likes
|
Last Post
by CarlTrading
03-30-2026, 11:51 AM
|
||
|
Started by CarlTrading, 03-30-2026, 11:48 AM
|
0 responses
54 views
0 likes
|
Last Post
by CarlTrading
03-30-2026, 11:48 AM
|

Comment