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

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 kevinenergy, 02-17-2023, 12:42 PM
      118 responses
      2,778 views
      1 like
      Last Post kevinenergy  
      Started by briansaul, Today, 05:31 AM
      0 responses
      9 views
      0 likes
      Last Post briansaul  
      Started by traderqz, Yesterday, 12:06 AM
      11 responses
      28 views
      0 likes
      Last Post NinjaTrader_Gaby  
      Started by PaulMohn, Today, 03:49 AM
      0 responses
      8 views
      0 likes
      Last Post PaulMohn  
      Started by inanazsocial, Today, 01:15 AM
      1 response
      10 views
      0 likes
      Last Post NinjaTrader_Jason  
      Working...
      X