Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Error on calling 'OnBarUpdate'

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

    Error on calling 'OnBarUpdate'

    Hi,

    So I figured out:

    Code:
    DrawRay("Line1" + Time, false, 0, High[0], 1, High[Math.Min(CurrentBar, 1)], Color.SkyBlue, DashStyle.Dot, 1);
    thanks to this common error explained here:




    but I'd like to go a step back and highlight the line that was drawn before the first one.

    essentially:

    DrawRay("PreviousLine", false, 1, High[1], 2, High[2], Color.Yellow, DashStyle.Dot, 2);

    so isn't that:

    Code:
    DrawRay("PreviousLine", false, 1, High[Math.Min(CurrentBar, 1)], 2, High[Math.Min(CurrentBar, 2)], Color.Yellow, DashStyle.Dot, 2);
    computer doesn't like that...

    what don't I understand about Math.Min or this concept of the bar doesn't exist yet. I got the first one.
    Last edited by stockgoblin; 03-27-2013, 06:39 PM.

    #2
    Originally posted by stockgoblin View Post
    Hi,

    So I figured out:

    Code:
    DrawRay("Line1" + Time, false, 0, High[0], 1, High[Math.Min(CurrentBar, 1)], Color.SkyBlue, DashStyle.Dot, 1);
    thanks to this common error explained here:




    but I'd like to go a step back and highlight the line that was drawn before the first one.

    essentially:

    DrawRay("PreviousLine", false, 1, High[1], 2, High[2], Color.Yellow, DashStyle.Dot, 2);

    so isn't that:

    Code:
    DrawRay("PreviousLine", false, 1, High[Math.Min(CurrentBar, 1)], 2, High[Math.Min(CurrentBar, 2)], Color.Yellow, DashStyle.Dot, 2);
    computer doesn't like that...

    what don't I understand about Math.Min or this concept of the bar doesn't exist yet. I got the first one.
    1. Your link is broken,
    2. If you want to access a bar 2 bars ago, then you need to escape 2 bars at the start of OBU. You need the statement:
    Code:
    if (CurrentBar < 2) return;

    Comment


      #3
      Ha! had if (CurrentBar < 1)

      thanks .

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by CarlTrading, 05-11-2026, 05:56 AM
      0 responses
      34 views
      0 likes
      Last Post CarlTrading  
      Started by CarlTrading, 05-10-2026, 08:12 PM
      0 responses
      22 views
      0 likes
      Last Post CarlTrading  
      Started by Hwop38, 05-04-2026, 07:02 PM
      0 responses
      185 views
      0 likes
      Last Post Hwop38
      by Hwop38
       
      Started by CaptainJack, 04-24-2026, 11:07 PM
      0 responses
      344 views
      0 likes
      Last Post CaptainJack  
      Started by Mindset, 04-21-2026, 06:46 AM
      0 responses
      266 views
      0 likes
      Last Post Mindset
      by Mindset
       
      Working...
      X