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

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 Belfortbucks, Today, 09:29 PM
          0 responses
          6 views
          0 likes
          Last Post Belfortbucks  
          Started by zstheorist, Today, 07:52 PM
          0 responses
          7 views
          0 likes
          Last Post zstheorist  
          Started by pmachiraju, 11-01-2023, 04:46 AM
          8 responses
          151 views
          0 likes
          Last Post rehmans
          by rehmans
           
          Started by mattbsea, Today, 05:44 PM
          0 responses
          6 views
          0 likes
          Last Post mattbsea  
          Started by RideMe, 04-07-2024, 04:54 PM
          6 responses
          33 views
          0 likes
          Last Post RideMe
          by RideMe
           
          Working...
          X