Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Hide plots
Collapse
X
-
Hello WHICKED,
To hide plots you can set their color to Transparent, the platform checks for that brush specifically and will hide the plots from the UI when that is used. An alternative would be to add the OnRender override to the indicator and then do not call base.OnRender, by not calling base.OnRender the plots are not rendered.
I look forward to being of further assistance.
-
Hello WHICKED,
The default behavior for transparent plots is to be hidden, there is a note about that in the following page. If that is not working please try changing ShowTransparentPlotsInDataBox to false and then re apply the script.
The other option would be the other item it had noted:
https://ninjatrader.com/support/help...htsub=onrenderAn alternative would be to add the OnRender override to the indicator and then do not call base.OnRender, by not calling base.OnRender the plots are not rendered.
You still get the price marker in that use case so you owuld have to still use a transparent plot or turn off the indicators price markers.
Comment
-
the plot is still shown down below - all the plots are transparent and I added the OnRender method as well but it still shows up. There are no price markers etc.
Code:AddPlot(new Stroke(Brushes.Transparent, 1)
Code:IsOverlay = true; DisplayInDataBox = false; DrawOnPricePanel = true; DrawHorizontalGridLines = false; DrawVerticalGridLines = false; PaintPriceMarkers = false; ShowTransparentPlotsInDataBox = false;
Code:protected override void OnRender(ChartControl chartControl, ChartScale chartScale) { }
Comment
-
Hello WHICKED,
What you have pointed to in the image is the indicators label. If you want to hide that you need to either delete the text in the Label when applying the indicator or override the displayname https://ninjatrader.com/support/help...ub=displayname
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
601 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
347 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
103 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
559 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
558 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment