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 charlesugo_1, 05-26-2026, 05:03 PM
|
0 responses
68 views
0 likes
|
Last Post
by charlesugo_1
05-26-2026, 05:03 PM
|
||
|
Started by DannyP96, 05-18-2026, 02:38 PM
|
1 response
151 views
0 likes
|
Last Post
|
||
|
Started by CarlTrading, 05-11-2026, 05:56 AM
|
0 responses
162 views
0 likes
|
Last Post
by CarlTrading
05-11-2026, 05:56 AM
|
||
|
Started by CarlTrading, 05-10-2026, 08:12 PM
|
0 responses
100 views
0 likes
|
Last Post
by CarlTrading
05-10-2026, 08:12 PM
|
||
|
Started by Hwop38, 05-04-2026, 07:02 PM
|
0 responses
288 views
0 likes
|
Last Post
by Hwop38
05-04-2026, 07:02 PM
|

Comment