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 CaptainJack, 04-24-2026, 11:07 PM
    0 responses
    32 views
    0 likes
    Last Post CaptainJack  
    Started by Mindset, 04-21-2026, 06:46 AM
    0 responses
    127 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Started by M4ndoo, 04-20-2026, 05:21 PM
    0 responses
    182 views
    0 likes
    Last Post M4ndoo
    by M4ndoo
     
    Started by M4ndoo, 04-19-2026, 05:54 PM
    0 responses
    94 views
    0 likes
    Last Post M4ndoo
    by M4ndoo
     
    Started by cmoran13, 04-16-2026, 01:02 PM
    0 responses
    138 views
    0 likes
    Last Post cmoran13  
    Working...
    X