Error on calling 'OnStateChange' method: You are accessing an index with a value that is invalid since it is out-of-range. I.E. accessing a series [barsAgo] with a value of 5 when there are only 4 bars on the chart.
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Data serie size
Collapse
X
-
Data serie size
Hi, say my strategy has Maximum bars look back = 256 and Bars required to trade = 256, is there any reason why NinjaScript would spit out this error when I try to access Close[250] (or Open, Low, etc.)? Please note that I do this in DataLoaded state.
Is there anything special I need to do to access Close, Open etc. from ISeries?Code:Tags: None
-
Hello amaltais,
Thanks for your post.
You can't make a BarsAgo reference in State.DataLoaded because the script has not begun to process bars yet. You could use literal bar indexes with Series.GetValueAt, though.
For example:
Let us know if you have any additional questions.Code:else if (State == State.DataLoaded) { for(int i = 0; i < Bars.Count-1; i++) Print(Close.GetValueAt(i)); }
-
Hello amaltais,
Brackets are used for BarsAgo references when GetValueAt is used for literal indexes.
BarsAgo indexes go from the last bar in the data series to the first bar, while literal indexes go from the first bar to the last bar.
You may open the Data Box on a chart, right click, then select "Show Bar Indexes" and Show BarsAgo indexes" to visualize.
We look forward to assisting.
Comment
-
Hello amaltais,
Not exactly, MaximumBarsLookback turns each Series object into a circular ring buffer. If you set something up like the following, you will see matching prints.
Please see below for complete information.Code:public class MyCustomIndicator12 : Indicator { private Series<double> MySeries; protected override void OnStateChange() { if (State == State.SetDefaults) { Description = @"Enter the description for your new custom Indicator here."; Name = "MyCustomIndicator12"; MaximumBarsLookBack = MaximumBarsLookBack.TwoHundredFiftySix; } else if (State == State.Realtime) { Print(MySeries[0] + " " + MySeries.GetValueAt(CurrentBar-256)); } else if (State == State.DataLoaded) { MySeries = new Series<double>(this); } } protected override void OnBarUpdate() { MySeries[0] = Close[0]; } }
https://ninjatrader.com/support/help...rslookback.htm
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by NullPointStrategies, Today, 05:17 AM
|
0 responses
53 views
0 likes
|
Last Post
|
||
|
Started by argusthome, 03-08-2026, 10:06 AM
|
0 responses
130 views
0 likes
|
Last Post
by argusthome
03-08-2026, 10:06 AM
|
||
|
Started by NabilKhattabi, 03-06-2026, 11:18 AM
|
0 responses
70 views
0 likes
|
Last Post
|
||
|
Started by Deep42, 03-06-2026, 12:28 AM
|
0 responses
44 views
0 likes
|
Last Post
by Deep42
03-06-2026, 12:28 AM
|
||
|
Started by TheRealMorford, 03-05-2026, 06:15 PM
|
0 responses
49 views
0 likes
|
Last Post
|

Comment