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

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 geotrades1, Today, 10:02 AM
    1 response
    4 views
    0 likes
    Last Post NinjaTrader_BrandonH  
    Started by ender_wiggum, Today, 09:50 AM
    1 response
    5 views
    0 likes
    Last Post NinjaTrader_Gaby  
    Started by rajendrasubedi2023, Today, 09:50 AM
    1 response
    11 views
    0 likes
    Last Post NinjaTrader_BrandonH  
    Started by bmartz, Today, 09:30 AM
    1 response
    9 views
    0 likes
    Last Post NinjaTrader_Erick  
    Started by geddyisodin, Today, 05:20 AM
    3 responses
    26 views
    0 likes
    Last Post NinjaTrader_Gaby  
    Working...
    X