Announcement

Collapse
No announcement yet.

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;

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by CarlTrading, 03-31-2026, 09:41 PM
    1 response
    152 views
    1 like
    Last Post NinjaTrader_ChelseaB  
    Started by CarlTrading, 04-01-2026, 02:41 AM
    0 responses
    87 views
    1 like
    Last Post CarlTrading  
    Started by CaptainJack, 03-31-2026, 11:44 PM
    0 responses
    131 views
    2 likes
    Last Post CaptainJack  
    Started by CarlTrading, 03-30-2026, 11:51 AM
    0 responses
    127 views
    1 like
    Last Post CarlTrading  
    Started by CarlTrading, 03-30-2026, 11:48 AM
    0 responses
    106 views
    0 likes
    Last Post CarlTrading  
    Working...
    X