Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Need shortcut for hiding/showing all indicators

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    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 fast
    Last edited by Mountain_cast; 02-10-2025, 11:19 PM.

    #2
    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!

    Comment


      #3
      Feature request sent!

      Comment


        #4
        @Mountain_cast,​ you can write a custom ninjascript to loop through all indicators and toggle visibility, something like:
        Code:
        foreach (var indi in ChartControl.Indicators)
        {
            indi.IsVisible = !indi.IsVisible;
        }
        I have added a button to my charts to perform this action, see: https://priceactiontoolbar.com/

        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 argusthome  
        Started by NabilKhattabi, 03-06-2026, 11:18 AM
        0 responses
        37 views
        0 likes
        Last Post NabilKhattabi  
        Started by Deep42, 03-06-2026, 12:28 AM
        0 responses
        18 views
        0 likes
        Last Post Deep42
        by Deep42
         
        Started by TheRealMorford, 03-05-2026, 06:15 PM
        0 responses
        20 views
        0 likes
        Last Post TheRealMorford  
        Started by Mindset, 02-28-2026, 06:16 AM
        0 responses
        49 views
        0 likes
        Last Post Mindset
        by Mindset
         
        Working...
        X