Is there a parameter I can set in order not to display the indicator?
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
How to hide an indicator from displaying on a chart
Collapse
X
-
How to hide an indicator from displaying on a chart
If I have an indicator to paint bar color based on RSI values, I need to see the color on the chart. To save spaces, I would like not to display the indicator RSI on the bottom.
Is there a parameter I can set in order not to display the indicator?Tags: None
-
Originally posted by Benluk View PostIf I have an indicator to paint bar color based on RSI values, I need to see the color on the chart. To save spaces, I would like not to display the indicator RSI on the bottom.
Is there a parameter I can set in order not to display the indicator?
Display the indicator on the price chart:
Put its Scale on the left so that it is plotted independent of the price axis:Code:Overlay = true;
Make the Plot transparent when you declare it, or by usingCode:ScaleJustification = ScaleJustification.Left;
Code:PlotColors[0][0] = Color.Transparent;
-
You can perform every one of those actions from the user GUI, yes.Originally posted by Benluk View PostDoes it have to be done at code level?
Can it be done on the indicator panel?
Display the indicator on the price chart: Select "Same as input series" for the "Panel"
Put its Scale on the left so that it is plotted independent of the price axis: Use the "Scale Justification" item.
Make the plot transparent by changing the Plot properties.
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Mindset, 04-21-2026, 06:46 AM
|
0 responses
117 views
0 likes
|
Last Post
by Mindset
04-21-2026, 06:46 AM
|
||
|
Started by M4ndoo, 04-20-2026, 05:21 PM
|
0 responses
166 views
0 likes
|
Last Post
by M4ndoo
04-20-2026, 05:21 PM
|
||
|
Started by M4ndoo, 04-19-2026, 05:54 PM
|
0 responses
85 views
0 likes
|
Last Post
by M4ndoo
04-19-2026, 05:54 PM
|
||
|
Started by cmoran13, 04-16-2026, 01:02 PM
|
0 responses
130 views
0 likes
|
Last Post
by cmoran13
04-16-2026, 01:02 PM
|
||
|
Started by PaulMohn, 04-10-2026, 11:11 AM
|
0 responses
88 views
0 likes
|
Last Post
by PaulMohn
04-10-2026, 11:11 AM
|

Comment