Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

How to hide an indicator from displaying on a chart

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

    How to hide an indicator from displaying on a chart

    If I have an indicator to paint bar color based on RSI values, I need to see the color on the chart. To save spaces, I would like not to display the indicator RSI on the bottom.

    Is there a parameter I can set in order not to display the indicator?

    #2
    Originally posted by Benluk View Post
    If I have an indicator to paint bar color based on RSI values, I need to see the color on the chart. To save spaces, I would like not to display the indicator RSI on the bottom.

    Is there a parameter I can set in order not to display the indicator?

    Display the indicator on the price chart:

    Code:
    Overlay = true;
    Put its Scale on the left so that it is plotted independent of the price axis:

    Code:
    ScaleJustification = ScaleJustification.Left;
    Make the Plot transparent when you declare it, or by using

    Code:
    PlotColors[0][0] = Color.Transparent;

    Comment


      #3
      Does it have to be done at code level?
      Can it be done on the indicator panel?

      Comment


        #4
        Hi Benluck,

        Yes, you can set the color of the indicator to transparent through the Right Click > Indicators screen.

        Ryan M.NinjaTrader Customer Service

        Comment


          #5
          Thank you for helping.
          Set the color to transparent does not save space. I have to shrink the bottom panel to save space. If this is the way to achieve the purpose, I can do it without making the color transparent to begin with.

          Comment


            #6
            Hi Ben, unfortunately I wouldn't be aware of another way to achieve this without programming - to begin with you would not need to display the RSI then at all for your purpose...as the bar colors would be enough to see your condition.

            Comment


              #7
              Originally posted by Benluk View Post
              Does it have to be done at code level?
              Can it be done on the indicator panel?
              You can perform every one of those actions from the user GUI, yes.

              Display the indicator on the price chart: Select "Same as input series" for the "Panel"
              Put its Scale on the left so that it is plotted independent of the price axis: Use the "Scale Justification" item.
              Make the plot transparent by changing the Plot properties.

              Comment

              Latest Posts

              Collapse

              Topics Statistics Last Post
              Started by argusthome, 03-08-2026, 10:06 AM
              0 responses
              85 views
              0 likes
              Last Post argusthome  
              Started by NabilKhattabi, 03-06-2026, 11:18 AM
              0 responses
              48 views
              0 likes
              Last Post NabilKhattabi  
              Started by Deep42, 03-06-2026, 12:28 AM
              0 responses
              29 views
              0 likes
              Last Post Deep42
              by Deep42
               
              Started by TheRealMorford, 03-05-2026, 06:15 PM
              0 responses
              32 views
              0 likes
              Last Post TheRealMorford  
              Started by Mindset, 02-28-2026, 06:16 AM
              0 responses
              67 views
              0 likes
              Last Post Mindset
              by Mindset
               
              Working...
              X