Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Hide Indicator name and input parameters?

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

    Hide Indicator name and input parameters?

    is these a way to hide the indicator name and the input parameters so they don't show up like on the attached?

    or at least just the input parameters?

    #2
    Hello cre8able,
    You can delete Label from Indicator Settings to remove both or keep name only by putting name in double quotes e.g. "Bubble".
    Hope it helps!

    Comment


      #3
      thanks s.kinra
      That works when I delete Bubble from the properties box when loading the indicator on a chart. Is there a way to disable it in the code for the indicator?

      Comment


        #4
        Yes, you can do this from code as well. Refer below:
        Add this before OnBarUpdate.

        Remove both name & parameters:
        Code:
        public override string DisplayName
        {
        get { return "";}
        }
        Remove parameters only:
        Code:
        public override string DisplayName
        {
        get { return this.Name;}
        }
        Hope it helps!

        Comment


          #5
          perfect
          thank you

          Comment


            #6
            To separate the descriptive text that is shown in the indicator loading window, from the text in the label in the chart (string.Empty) you can use this code:

            Code:
            public override string DisplayName { get { return State == State.SetDefaults ? this.Name + " custom text" : string.Empty; } }

            Comment


              #7
              Would be nice if these tidbits were easier to find than having to google them. :/

              Quoted to drop the parameters was what I was looking for, the code options are nice bonus mention! Thanks.

              Tool Tips on the input fields for example..

              One flaw with the DisplayName override is that in the Indicators list it uses your user-supplied Instance as the this.Name as well, gets confusing if the user blanked it.

              Comment

              Latest Posts

              Collapse

              Topics Statistics Last Post
              Started by Geovanny Suaza, 02-11-2026, 06:32 PM
              0 responses
              576 views
              0 likes
              Last Post Geovanny Suaza  
              Started by Geovanny Suaza, 02-11-2026, 05:51 PM
              0 responses
              334 views
              1 like
              Last Post Geovanny Suaza  
              Started by Mindset, 02-09-2026, 11:44 AM
              0 responses
              101 views
              0 likes
              Last Post Mindset
              by Mindset
               
              Started by Geovanny Suaza, 02-02-2026, 12:30 PM
              0 responses
              553 views
              1 like
              Last Post Geovanny Suaza  
              Started by RFrosty, 01-28-2026, 06:49 PM
              0 responses
              551 views
              1 like
              Last Post RFrosty
              by RFrosty
               
              Working...
              X