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!
    Luis H.NinjaTrader Customer Service

    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 gustavobp, Today, 02:50 AM
        0 responses
        3 views
        0 likes
        Last Post gustavobp  
        Started by rubiijonson, Today, 01:02 AM
        0 responses
        4 views
        0 likes
        Last Post rubiijonson  
        Started by fkronloff, Today, 12:25 AM
        0 responses
        3 views
        0 likes
        Last Post fkronloff  
        Started by Zadomani, Yesterday, 11:39 PM
        0 responses
        14 views
        0 likes
        Last Post Zadomani  
        Started by ToNovy, 01-27-2025, 11:22 PM
        20 responses
        198 views
        0 likes
        Last Post ToNovy
        by ToNovy
         
        Working...
        X