Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Iterating through BarsArray error

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

    Iterating through BarsArray error

    Here is the error I am getting:
    Code:
    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.
    It's coming from this block:

    Code:
             ...else if (State == State.DataLoaded){
                    int i = 0;
                    while (i < BarsArray[0].Count){
                        Print(i + Times[1][i].ToString());
                        i++;
    
                    }
    
                }...
    It seems to get through one bar and then the error gets thrown.

    #2
    Hello swcooke,

    Times[1] is the second series. BarsArray[0] is the first series.

    You are attempting to loop through the bars of the first series and get the bar times of the second series without checking that series has a bar there.

    Below are public links to the help guide on BarsArray and Times.
    https://ninjatrader.com/support/help.../barsarray.htm
    https://ninjatrader.com/support/help...ries_times.htm

    Also, I recommend you do any bar access in OnBarUpdate().
    Chelsea B.NinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by Mindset, 04-21-2026, 06:46 AM
    0 responses
    44 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Started by M4ndoo, 04-20-2026, 05:21 PM
    0 responses
    54 views
    0 likes
    Last Post M4ndoo
    by M4ndoo
     
    Started by M4ndoo, 04-19-2026, 05:54 PM
    0 responses
    34 views
    0 likes
    Last Post M4ndoo
    by M4ndoo
     
    Started by cmoran13, 04-16-2026, 01:02 PM
    0 responses
    95 views
    0 likes
    Last Post cmoran13  
    Started by PaulMohn, 04-10-2026, 11:11 AM
    0 responses
    57 views
    0 likes
    Last Post PaulMohn  
    Working...
    X