I have tried to live with having another tab open with a naked chart of the same instrument, but there are certain features missing that would be solved with a simple, show/hide all indicators button/shortcut. For example, I want to draw on my naked charts and view them on my chart with indicators later, so I make the drawings global, but i don't want drawings to be on ALL my other charts of the same instance of instrument (ES for example). It gets messy fast
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Need shortcut for hiding/showing all indicators
Collapse
X
-
Need shortcut for hiding/showing all indicators
I am working with macros to hide/show specific indicators, but gosh it would be nice if NinjaTrader implemented a shortcut that just hid/showed all indicators in a chart. I cannot create a macro for each indicator and fire off the hide/show sequence for every possible combination of chains indicators I might have.
I have tried to live with having another tab open with a naked chart of the same instrument, but there are certain features missing that would be solved with a simple, show/hide all indicators button/shortcut. For example, I want to draw on my naked charts and view them on my chart with indicators later, so I make the drawings global, but i don't want drawings to be on ALL my other charts of the same instance of instrument (ES for example). It gets messy fastLast edited by Mountain_cast; 02-10-2025, 11:19 PM.Tags: None
-
Hello Mountain_cast,
Thank you for posting on the NinjaTrader forums.
I think this is a great idea and good feedback! Please submit this as a feature request via the following link so we can get this in front of our development team. If your request is selected you might see it be a part of future release notes.
Thank you in advance and thanks again!
- Likes 1
-
-
@Mountain_cast, you can write a custom ninjascript to loop through all indicators and toggle visibility, something like:
I have added a button to my charts to perform this action, see: https://priceactiontoolbar.com/Code:foreach (var indi in ChartControl.Indicators) { indi.IsVisible = !indi.IsVisible; }
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by argusthome, 03-08-2026, 10:06 AM
|
0 responses
57 views
0 likes
|
Last Post
by argusthome
03-08-2026, 10:06 AM
|
||
|
Started by NabilKhattabi, 03-06-2026, 11:18 AM
|
0 responses
37 views
0 likes
|
Last Post
|
||
|
Started by Deep42, 03-06-2026, 12:28 AM
|
0 responses
18 views
0 likes
|
Last Post
by Deep42
03-06-2026, 12:28 AM
|
||
|
Started by TheRealMorford, 03-05-2026, 06:15 PM
|
0 responses
20 views
0 likes
|
Last Post
|
||
|
Started by Mindset, 02-28-2026, 06:16 AM
|
0 responses
49 views
0 likes
|
Last Post
by Mindset
02-28-2026, 06:16 AM
|

Comment