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 Mestor, 03-10-2023, 01:50 AM
              16 responses
              387 views
              0 likes
              Last Post z.franck  
              Started by rtwave, 04-12-2024, 09:30 AM
              4 responses
              31 views
              0 likes
              Last Post rtwave
              by rtwave
               
              Started by yertle, Yesterday, 08:38 AM
              7 responses
              29 views
              0 likes
              Last Post yertle
              by yertle
               
              Started by bmartz, 03-12-2024, 06:12 AM
              2 responses
              22 views
              0 likes
              Last Post bmartz
              by bmartz
               
              Started by funk10101, Today, 12:02 AM
              0 responses
              7 views
              0 likes
              Last Post funk10101  
              Working...
              X