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

What means "Current Bar"?

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

    What means "Current Bar"?

    Hi Ninjatraders,

    please help a non-programmer

    What does the following code snippet exactly mean :

    if (CurrentBar < 12) return;


    Is "current bar" the close of the current bar??

    Thanks in advance...


    Last edited by andrew8w; 03-19-2011, 06:01 AM.

    #2
    In short, its the a reference to the current bar being processed by the OnBarUpdate() method. For example, if you had only 10 bars on your chart, OnBarUpdate() will be called for each bar starting with the left most bar. This bar is number zero, and will increment by one for the next bar until it reaches the 10th bar which would be current bar is 9.

    from the help guide - http://www.ninjatrader.com/support/h...currentbar.htm

    So the code condition you pasted means "Return out of this method if the bar is less than 12" in other words, don't start process additional code until you have seen 12 bars.
    RayNinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by Noerclou, Today, 04:55 AM
    0 responses
    2 views
    0 likes
    Last Post Noerclou  
    Started by llanqui, Yesterday, 09:59 AM
    2 responses
    17 views
    0 likes
    Last Post llanqui
    by llanqui
     
    Started by ThoriSten, Today, 03:56 AM
    0 responses
    6 views
    0 likes
    Last Post ThoriSten  
    Started by PhillT, 04-19-2024, 02:16 PM
    3 responses
    23 views
    0 likes
    Last Post mangel2000  
    Started by TraderBCL, Today, 02:37 AM
    0 responses
    4 views
    0 likes
    Last Post TraderBCL  
    Working...
    X