Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

What's wrong with "IsFirstTickOfBar"?

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

    What's wrong with "IsFirstTickOfBar"?

    Current TF - 5 minute
    TickReplay - On

    Code:
    ...
    else if (State == State.Configure)
    {
       AddDataSeries(Data.BarsPeriodType.[B]Minute, 5[/B]);
    }
    ...
    
    protected override void OnMarketData(MarketDataEventArgs e)
            {
                if (IsFirstTickOfBar && BarsInProgress==0)
                    Print(e.Time+" - "+BarsInProgress);
            }
    IsFirstTickOfBar always is False if the loaded timeframe is equal to the current timeframe

    #2
    Hello jshapen,

    IsFirstTickOfBar is used in OnBarUpdate(). When the tick triggering OnBarUpdate() is the first tick of the bar, this property will be true, for every series added to the script.

    Below is a link to the help guide.


    When used outside of OnBarUpdate(), its possible you might miss the value being true as the value will be updating based on OnBarUpdate() not OnMarketUpdate().
    Chelsea B.NinjaTrader Customer Service

    Comment


      #3
      If in our example, replace
      Code:
       
       AddDataSeries(Data.BarsPeriodType.Minute, [B]5[/B]);
      with
      Code:
       
       AddDataSeries(Data.BarsPeriodType.Minute,[B] 15[/B]);
      then everything will be fine. IsFirstTickOfBar works as expected.

      Comment


        #4
        Hello jshapen,

        Are you expecting the IsFirstTickOfBar to not be true on the first tick of a bar when using a 15 minute bar type when printing from OnBarUpdate()?

        Below is a video that demonstrates IsFirstTickOfBar works fine in OnBarUpdate() even if the added series bar type and interval matches the primary series.
        https://drive.google.com/file/d/1dmB...w?usp=drivesdk
        Attached Files
        Chelsea B.NinjaTrader Customer Service

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by Geovanny Suaza, 02-11-2026, 06:32 PM
        0 responses
        606 views
        0 likes
        Last Post Geovanny Suaza  
        Started by Geovanny Suaza, 02-11-2026, 05:51 PM
        0 responses
        353 views
        1 like
        Last Post Geovanny Suaza  
        Started by Mindset, 02-09-2026, 11:44 AM
        0 responses
        105 views
        0 likes
        Last Post Mindset
        by Mindset
         
        Started by Geovanny Suaza, 02-02-2026, 12:30 PM
        0 responses
        560 views
        1 like
        Last Post Geovanny Suaza  
        Started by RFrosty, 01-28-2026, 06:49 PM
        0 responses
        561 views
        1 like
        Last Post RFrosty
        by RFrosty
         
        Working...
        X