Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Initialize a Series of Lists
Collapse
X
-
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!
Tags: None
-
Off the top of my head, looks like you need to break upOriginally posted by Renorail View PostFor 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.
the declaration, keep it separate from the initial assignment.
Declare your variable, but do not initialize it (or initialize to null),
Initialize MySeries in OnStateChange, like this,Code:private Series<List<double>> MySeries = null;
Code:protected override void OnStateChange() { switch (State) { case State.SetDefaults: MySeries = new Series<List<double>>([COLOR=#e74c3c]this[/COLOR]); break; .... } }
Comment
-
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;
My assignment that looks looks like:Code:else if (State == State.DataLoaded) { MySeries =new Series<List<double>>(this); }
Code:double test_double = 4.3; MySeries[0].Add (test_double); Print(MySeries[0][0]);
Comment
-
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
648 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
369 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
108 views
0 likes
|
Last Post
by Mindset
02-09-2026, 11:44 AM
|
||
|
Started by Geovanny Suaza, 02-02-2026, 12:30 PM
|
0 responses
572 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
573 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment