Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

SetState Error

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

    SetState Error

    How can I avoid following error, while changing input of an indicator:

    Indicator '(null)': Error on calling 'SetState' method: Object reference not set to an instance of an object.

    Is it due to using following code within State.SetDefaults and State.SetConfigure:
    if (Instrument != null)
    {
    Print(this.Name + " [" + DateTime.Now.ToString("dd-MMM-yyyy hh.mm.ss.ffffff") + "] " + Instrument.FullName );
    }

    Kind Regards
    Vivek

    #2
    Hello engrvivs, and thank you for your question. It is very likely that your Instrument is not set up in advance of this call. I would recommend the following code change :

    Print(this.Name + " [" + DateTime.Now.ToString("dd-MMM-yyyy hh.mm.ss.ffffff") + "] " + (Instrument == null ? "(Instrument not yet set up) : Instrument.FullName) );

    Please let us know if there are any other ways we can help.
    Jessica P.NinjaTrader Customer Service

    Comment


      #3
      Thanks Jessica for the response!

      Yet, confusing point is before executing the Print command I have checked using:
      if (Instrument != null)

      Won't it do the same task as you suggested?

      Thanks

      Comment


        #4
        Hello engrvivs,

        You are correct, this was a mistake caused by my overlooking that part of your code.

        I would like to mention, the Help Guide section on Instrument mentions this :

        Originally posted by http://ninjatrader.com/support/helpGuides/nt7/instrument.htm
        NOTE: The properties in this class should NOT be accessed within the Initialize() method.
        In light of this, I would like to ask a few questions :

        1. Would it be possible for you to comment out this section in your code and replace it by this code?

          Print(Instrument);
          //Print(Instrument.FullName);
        2. Could you test that, then comment out the first line and uncomment the second line, and test that
        3. Could you provide some contextual information concerning the code surrounding your call to Instrument?
        Jessica P.NinjaTrader Customer Service

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by Hwop38, 05-04-2026, 07:02 PM
        0 responses
        164 views
        0 likes
        Last Post Hwop38
        by Hwop38
         
        Started by CaptainJack, 04-24-2026, 11:07 PM
        0 responses
        319 views
        0 likes
        Last Post CaptainJack  
        Started by Mindset, 04-21-2026, 06:46 AM
        0 responses
        246 views
        0 likes
        Last Post Mindset
        by Mindset
         
        Started by M4ndoo, 04-20-2026, 05:21 PM
        0 responses
        350 views
        0 likes
        Last Post M4ndoo
        by M4ndoo
         
        Started by M4ndoo, 04-19-2026, 05:54 PM
        0 responses
        179 views
        0 likes
        Last Post M4ndoo
        by M4ndoo
         
        Working...
        X