Many thanks in advance.
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Turning Off Indicator Labels On Chart
Collapse
X
-
Turning Off Indicator Labels On Chart
This question has come up several times over the past decade but I don't see a valid solution posted in the forums yet. I've got a large strategy that uses a bunch of indicators which all have labels that are currently shown on the chart panel. It's really messy and I would very much like to hide the labels without losing the ability to see the indicator names in the small pop-up that shows the values for each candle (upon right click). Can the settings and names of indicators finally be hidden on the chart window?
Many thanks in advance.Tags: None
-
Hello molecool, thanks for your post.
When you set up the indicator, set the Indicator.Name property to String.Empty before calling AddChartIndicator() from OnStateChanged. e.g.
if (State == State.DataLoaded)
{
MySMA = SMA(15);
MySMA.Name = String.Empty;
AddChartIndicator(MySMA);
}
Please let me know if this does not resolve your inquiry.
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by CarlTrading, 03-31-2026, 09:41 PM
|
1 response
80 views
1 like
|
Last Post
|
||
|
Started by CarlTrading, 04-01-2026, 02:41 AM
|
0 responses
40 views
0 likes
|
Last Post
by CarlTrading
04-01-2026, 02:41 AM
|
||
|
Started by CaptainJack, 03-31-2026, 11:44 PM
|
0 responses
63 views
2 likes
|
Last Post
by CaptainJack
03-31-2026, 11:44 PM
|
||
|
Started by CarlTrading, 03-30-2026, 11:51 AM
|
0 responses
63 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