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 CortexZenUSA, Today, 12:53 AM
      0 responses
      1 view
      0 likes
      Last Post CortexZenUSA  
      Started by CortexZenUSA, Today, 12:46 AM
      0 responses
      1 view
      0 likes
      Last Post CortexZenUSA  
      Started by usazencortex, Today, 12:43 AM
      0 responses
      5 views
      0 likes
      Last Post usazencortex  
      Started by sidlercom80, 10-28-2023, 08:49 AM
      168 responses
      2,265 views
      0 likes
      Last Post sidlercom80  
      Started by Barry Milan, Yesterday, 10:35 PM
      3 responses
      11 views
      0 likes
      Last Post NinjaTrader_Manfred  
      Working...
      X