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 andrewtrades, Today, 04:57 PM
    1 response
    5 views
    0 likes
    Last Post NinjaTrader_Manfred  
    Started by chbruno, Today, 04:10 PM
    0 responses
    3 views
    0 likes
    Last Post chbruno
    by chbruno
     
    Started by josh18955, 03-25-2023, 11:16 AM
    6 responses
    436 views
    0 likes
    Last Post Delerium  
    Started by FAQtrader, Today, 03:35 PM
    0 responses
    6 views
    0 likes
    Last Post FAQtrader  
    Started by rocketman7, Today, 09:41 AM
    5 responses
    19 views
    0 likes
    Last Post NinjaTrader_Jesse  
    Working...
    X