Announcement

Collapse
No announcement yet.

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 NullPointStrategies, Today, 05:17 AM
    0 responses
    24 views
    0 likes
    Last Post NullPointStrategies  
    Started by argusthome, 03-08-2026, 10:06 AM
    0 responses
    120 views
    0 likes
    Last Post argusthome  
    Started by NabilKhattabi, 03-06-2026, 11:18 AM
    0 responses
    63 views
    0 likes
    Last Post NabilKhattabi  
    Started by Deep42, 03-06-2026, 12:28 AM
    0 responses
    41 views
    0 likes
    Last Post Deep42
    by Deep42
     
    Started by TheRealMorford, 03-05-2026, 06:15 PM
    0 responses
    45 views
    0 likes
    Last Post TheRealMorford  
    Working...
    X