Announcement

Collapse

Looking for a User App or Add-On built by the NinjaTrader community?

Visit NinjaTrader EcoSystem and our free User App Share!

Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
See more
See less

Partner 728x90

Collapse

Initialize a Series of Lists

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

    Initialize a Series of Lists

    Hello, just curious if there is an example of initializing a series of lists. I'd like to use a series of lists because i do not know how many elements are going to be computed in each bar. I found an example for creating and initializing a list (Initialize List) but for some reason I am unable to get it to work with a series of lists. Any help would be appreciated. Thanks!

    #2
    For example, private Series<List<double>> MySeries = new Series<List<double>>(); returns the error 'NinjaTrader.NinjaScript.Series<System.Collections .Generic.List<double>>' does not contain a constructor that takes 0 arguments.

    Comment


      #3
      Originally posted by Renorail View Post
      For example, private Series<List<double>> MySeries = new Series<List<double>>(this); returns the error 'NinjaTrader.NinjaScript.Series<System.Collections .Generic.List<double>>' does not contain a constructor that takes 0 arguments.
      Off the top of my head, looks like you need to break up
      the declaration, keep it separate from the initial assignment.

      Declare your variable, but do not initialize it (or initialize to null),

      Code:
      private Series<List<double>> MySeries = null;
      Initialize MySeries in OnStateChange, like this,

      Code:
      protected override void OnStateChange()
      {
          switch (State)
          {
              case State.SetDefaults:
                  MySeries = new Series<List<double>>([COLOR=#e74c3c]this[/COLOR]);
                  break;
          ....
          }
      }

      Comment


        #4
        Thank you for your response and your help. I had that earlier too and could get it through compile but then get a " Error on calling 'OnBarUpdate' method on bar 20: Object reference not set to an instance of an object. So, i thought it was an initialization issue.

        Maybe it is my .Add statement. I'll get a print before the assignment but not after.

        For testing purposes, i have the following:

        Code:
        private Series<List<double>> MySeries = null;
        Code:
        else if (State == State.DataLoaded)
        {
        MySeries =new Series<List<double>>(this);
        }
        My assignment that looks looks like:

        Code:
        double test_double = 4.3;
        MySeries[0].Add (test_double);
        Print(MySeries[0][0]);

        Comment


          #5
          Originally posted by Renorail View Post
          My assignment that looks looks like:

          Code:
          double test_double = 4.3;
          MySeries[0].Add (test_double);
          Print(MySeries[0][0]);
          That code is wrong.
          Do you want a Series of doubles?
          Do you want a Series of a list of doubles?

          Comment


            #6
            Hello Renorail,

            A new list would need to be instantiated for that bar.

            Code:
            MySeries[0] = new List<double>();
            double test_double = 4.3;
            MySeries[0].Add(test_double);
            Print(MySeries[0][0]);
            Chelsea B.NinjaTrader Customer Service

            Comment


              #7
              Perfect, thank you!

              Comment

              Latest Posts

              Collapse

              Topics Statistics Last Post
              Started by ghoul, Today, 06:02 PM
              3 responses
              14 views
              0 likes
              Last Post NinjaTrader_Manfred  
              Started by jeronymite, 04-12-2024, 04:26 PM
              3 responses
              44 views
              0 likes
              Last Post jeronymite  
              Started by Barry Milan, Yesterday, 10:35 PM
              7 responses
              20 views
              0 likes
              Last Post NinjaTrader_Manfred  
              Started by AttiM, 02-14-2024, 05:20 PM
              10 responses
              180 views
              0 likes
              Last Post jeronymite  
              Started by DanielSanMartin, Yesterday, 02:37 PM
              2 responses
              13 views
              0 likes
              Last Post DanielSanMartin  
              Working...
              X