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

OnBarUpdate BarsInProgress[1] Clarification++

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

    OnBarUpdate BarsInProgress[1] Clarification++

    Ninja's,

    Please reference this previous post regarding BarsInProgress OnBarUpdate: https://ninjatrader.com/support/foru...ad.php?t=43737

    Default Data series = 5 mins, secondary or first AddDataSeries = 1m

    If I do not specify the BarsInProgress it runs like this:

    OnBarUpdate() - 5 min .
    OnBarUpdate() - 1 min
    OnBarUpdate() - 1 min
    OnBarUpdate() - 1 min
    OnBarUpdate() - 1 min
    OnBarUpdate() - 1 min
    OnBarUpdate() - 5 min

    Question1: How would I not specify BarsInProgress?!? Is this correct code logic to not specify BarsInProgress? "if (BarsInProgress != 0)" ?

    Question 2:If I am using increment counters "x++" will the counters run and reset to zero at each OnBarUpdate listed above 5, 1, 1, 1, 1, 1, 5? (note: "private int x=0" is just above protected override void OnBarUpdate() in code.

    Very much appreciated,
    Blairski

    #2
    Hello Blairski,

    Not specifying which bars in progress means you wouldn't have any condition.

    That line of code would be completely removed.

    The code you have suggested 'if (BarsInProgress != 0)' would trigger the action for any series that is processing that is not the primary.

    Removing the condition all together would allow the logic to run for all series.


    Incrementing a variable without specifying which BarsInProgress would cause the variable to increment for all bars being updated.

    Below is a publicly available link to the help guide on BarsInProgress.
    Chelsea B.NinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by gentlebenthebear, Today, 01:30 AM
    2 responses
    13 views
    0 likes
    Last Post gentlebenthebear  
    Started by Kaledus, Today, 01:29 PM
    2 responses
    7 views
    0 likes
    Last Post Kaledus
    by Kaledus
     
    Started by frankthearm, Yesterday, 09:08 AM
    13 responses
    45 views
    0 likes
    Last Post frankthearm  
    Started by PaulMohn, Today, 12:36 PM
    2 responses
    16 views
    0 likes
    Last Post PaulMohn  
    Started by Conceptzx, 10-11-2022, 06:38 AM
    2 responses
    56 views
    0 likes
    Last Post PhillT
    by PhillT
     
    Working...
    X