Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Data serie size

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

    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.
    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.
    Is there anything special I need to do to access Close, Open etc. from ISeries?

    #2
    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:

    Code:
    else if (State == State.DataLoaded)
    {
        for(int i = 0; i < Bars.Count-1; i++)
            Print(Close.GetValueAt(i));
    }
    Let us know if you have any additional questions.

    Comment


      #3
      What is the difference between [ ] and getValueAt?

      Comment


        #4
        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


          #5
          Ok I see, so with Maximum bars look back = 256, am I accessing the 256 bars ago with GetValueAt(0)?

          Comment


            #6
            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.

            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];
                }
            }
            Please see below for complete information.

            https://ninjatrader.com/support/help...rslookback.htm

            Comment

            Latest Posts

            Collapse

            Topics Statistics Last Post
            Started by CarlTrading, 03-31-2026, 09:41 PM
            1 response
            45 views
            0 likes
            Last Post NinjaTrader_ChelseaB  
            Started by CarlTrading, 04-01-2026, 02:41 AM
            0 responses
            21 views
            0 likes
            Last Post CarlTrading  
            Started by CaptainJack, 03-31-2026, 11:44 PM
            0 responses
            31 views
            1 like
            Last Post CaptainJack  
            Started by CarlTrading, 03-30-2026, 11:51 AM
            0 responses
            50 views
            0 likes
            Last Post CarlTrading  
            Started by CarlTrading, 03-30-2026, 11:48 AM
            0 responses
            42 views
            0 likes
            Last Post CarlTrading  
            Working...
            X