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 suroot, 04-10-2017, 02:18 AM
      4 responses
      3,021 views
      0 likes
      Last Post truepenny  
      Started by Stanfillirenfro, Today, 07:23 AM
      1 response
      6 views
      0 likes
      Last Post NinjaTrader_Gaby  
      Started by cmtjoancolmenero, Yesterday, 03:58 PM
      2 responses
      22 views
      0 likes
      Last Post cmtjoancolmenero  
      Started by olisav57, Yesterday, 07:39 PM
      1 response
      9 views
      0 likes
      Last Post NinjaTrader_ChelseaB  
      Started by cocoescala, 10-12-2018, 11:02 PM
      7 responses
      944 views
      0 likes
      Last Post Jquiroz1975  
      Working...
      X