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

Time[] error

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

    Time[] error

    I am trying to reference a specific bar via the Time[] index. When I use the code:

    Print("Time[0]: "+Time[0].ToString());

    it prints the time stamp of every single bar on the chart.

    When I use the code:

    Print("Time[1]: "+Time[1].ToString());

    or any other index number, I get the following error message in the output window:
    "Error on calling 'OnBarUpdate' method for indicator 'TEHarmonics' on bar 0: You are accessing an index with a value that is invalid since its out of range. I.E. accessing a series [barsAgo] with a value of 5 when there are only 4 bars on the chart."

    What am I doing wrong, and why do I only get an output when using index 0?

    Also, there are 258 bars on the chart.

    Thanks for the help!

    #2
    Hi Antny, the issue would be coming up here for the first bar on your chart (CurrentBar == 0), here you could not reference one bar back, since that would not exist. You can add a check at the top of your OnBarUpdate() to just return out processing for this bar to fix.

    if (CurrentBar < 1) return;
    BertrandNinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by helpwanted, Today, 03:06 AM
    1 response
    10 views
    0 likes
    Last Post sarafuenonly123  
    Started by Brevo, Today, 01:45 AM
    0 responses
    8 views
    0 likes
    Last Post Brevo
    by Brevo
     
    Started by aussugardefender, Today, 01:07 AM
    0 responses
    5 views
    0 likes
    Last Post aussugardefender  
    Started by pvincent, 06-23-2022, 12:53 PM
    14 responses
    242 views
    0 likes
    Last Post Nyman
    by Nyman
     
    Started by TraderG23, 12-08-2023, 07:56 AM
    9 responses
    386 views
    1 like
    Last Post Gavini
    by Gavini
     
    Working...
    X