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 Geovanny Suaza, 02-11-2026, 06:32 PM
    0 responses
    647 views
    0 likes
    Last Post Geovanny Suaza  
    Started by Geovanny Suaza, 02-11-2026, 05:51 PM
    0 responses
    369 views
    1 like
    Last Post Geovanny Suaza  
    Started by Mindset, 02-09-2026, 11:44 AM
    0 responses
    108 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Started by Geovanny Suaza, 02-02-2026, 12:30 PM
    0 responses
    572 views
    1 like
    Last Post Geovanny Suaza  
    Started by RFrosty, 01-28-2026, 06:49 PM
    0 responses
    573 views
    1 like
    Last Post RFrosty
    by RFrosty
     
    Working...
    X