Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Ensuring that only a single instance of an indicator is loaded on chart

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

    Ensuring that only a single instance of an indicator is loaded on chart

    Hi,

    Is there a way to ensure, that only a single instance of an indicator is loaded on chart?

    #2
    Hello Shai Samuel,

    Thank you for writing in. While there is no way to prevent a user from attempting to add multiples of the same indicator, you can add a check in your indicator so that it simply returns if it has been added more than once.
    For example:
    Code:
    #region Variables
        private bool alreadyExists = false;
    #endregion
    protected override void Initialize()
    {
        foreach(Indicator i in ChartControl.Indicators)
        {
            if(i.Name == "myIndicator") //Replace with the name of your indicator
            {
                alreadyExists = true;
                return;
            } else {
                //Initialize the indicator
            }
        }
    }
    protected override void OnBarUpdate()
    {
        if(!alreadyExists)
        {
            //your OnBarUpdate() code goes here
        }
    }
    Please let me know if I may be of further assistance.
    Michael M.NinjaTrader Quality Assurance

    Comment


      #3
      Originally posted by Shai Samuel View Post
      Hi,

      Is there a way to ensure, that only a single instance of an indicator is loaded on chart?
      What action/notification do you want to see if a user attempts to add a second instance?

      Comment


        #4
        Thank you Michael, this is really helpful.

        koganam, what I would add to this code, is a Log message with NinjaTrader.Cbi.LogLevel.Alert, and return.

        Comment


          #5
          Michael, how can I check that what I am running is a chart and not for example Market Analyzer?

          Comment


            #6
            Hello Shai Samuel,

            Please see this post for more information on this topic: http://ninjatrader.com/support/forum...ad.php?t=64014

            Please let me know if you have any further questions.
            Michael M.NinjaTrader Quality Assurance

            Comment

            Latest Posts

            Collapse

            Topics Statistics Last Post
            Started by Geovanny Suaza, 02-11-2026, 06:32 PM
            0 responses
            585 views
            0 likes
            Last Post Geovanny Suaza  
            Started by Geovanny Suaza, 02-11-2026, 05:51 PM
            0 responses
            340 views
            1 like
            Last Post Geovanny Suaza  
            Started by Mindset, 02-09-2026, 11:44 AM
            0 responses
            103 views
            0 likes
            Last Post Mindset
            by Mindset
             
            Started by Geovanny Suaza, 02-02-2026, 12:30 PM
            0 responses
            554 views
            1 like
            Last Post Geovanny Suaza  
            Started by RFrosty, 01-28-2026, 06:49 PM
            0 responses
            552 views
            1 like
            Last Post RFrosty
            by RFrosty
             
            Working...
            X