Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Daily Series is not loading enough days

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

    Daily Series is not loading enough days

    Hey guys for some reason NT is not allowing me to load enough days. I created a simple strategy with BetterRenko 2 brick size for ES futures. Then I added the daily series as:

    Add(PeriodType.Day, 1); //REFER TO SERIES AS CLOSE[1][0] EXAMPLE

    In the bar update I coded:

    //CREATE SMA
    for (int xz = 0; xz < (32); xz++)
    {
    smaTotal = smaTotal + Closes[1][xz];
    Print("Closes 1: " + Closes[1][xz]);
    }

    When I activate the above code in the SIM 101 account, it errors out after 2 prints.
    I asked it to load 60 days but as you can see, it only loads 2 days, any ideas?

    My data provider is Kinetick.
    The session is a custom session that goes between 3am and 10pm monday through friday.

    #2
    elitetradernyc,

    Do you have a current bar check in place before running the loop?

    if(CurrentBars[0] < 32 || CurrentBars[1] < 32)
    return;
    Cal H.NinjaTrader Customer Service

    Comment


      #3
      Hi, no I do not, but wouldn't it have already loaded at least 60 days worth of data once it starts executing?

      Comment


        #4
        Correct, but you need to ensure that there is enough data being loaded for the script to operate.
        This article explains it in more detail -
        http://www.ninjatrader.com/support/f...ead.php?t=3170
        Cal H.NinjaTrader Customer Service

        Comment


          #5
          Got it, that worked, thanks.

          Comment

          Latest Posts

          Collapse

          Topics Statistics Last Post
          Started by Buttony, 01-18-2025, 12:10 PM
          12 responses
          58 views
          0 likes
          Last Post rockmanx00  
          Started by lorien, 01-15-2025, 12:10 PM
          7 responses
          77 views
          2 likes
          Last Post qewcool
          by qewcool
           
          Started by slade3789, 01-16-2025, 01:12 AM
          2 responses
          23 views
          0 likes
          Last Post slade3789  
          Started by tardi44, 09-07-2023, 07:20 AM
          2 responses
          152 views
          1 like
          Last Post ingresoscontalento  
          Started by Tagliareni, 01-18-2025, 10:04 AM
          2 responses
          27 views
          0 likes
          Last Post Tagliareni  
          Working...
          X