Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Calculate OnBarUpdate from the last 200 bars.

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

    Calculate OnBarUpdate from the last 200 bars.

    Due to the OrderFlowCumulativeDelta indicator forces to set the DataSeries/Load data based on: "Days"
    every "Reload NinjaScript F5" keyStroke consumes too much idle time.
    In order to mitigate this 'idle' time I added the following condition:
    Click image for larger version

Name:	image.png
Views:	101
Size:	1.9 KB
ID:	1247032
    The previous condition is too severe!! The issue is that It is needed to pass trough on the last 200 bars of the State == State.Historical
    I was wondering if there is a way to know how many Historic bars are loaded in the chart before the OnBarUpdate starts running??
    Thank you very much!!
    FVJ

    #2
    efeuvejota01 There are a few approaches, but for simplicity, how about this:
    Code:
    if (CurrentBars[0] < BarsArray[0].Count - 200) return;
    Bruce DeVault
    QuantKey Trading Vendor Services
    NinjaTrader Ecosystem Vendor - QuantKey

    Comment


      #3
      Thank you!!
      FVJ

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by Geovanny Suaza, 02-11-2026, 06:32 PM
      0 responses
      649 views
      0 likes
      Last Post Geovanny Suaza  
      Started by Geovanny Suaza, 02-11-2026, 05:51 PM
      0 responses
      370 views
      1 like
      Last Post Geovanny Suaza  
      Started by Mindset, 02-09-2026, 11:44 AM
      0 responses
      109 views
      0 likes
      Last Post Mindset
      by Mindset
       
      Started by Geovanny Suaza, 02-02-2026, 12:30 PM
      0 responses
      574 views
      1 like
      Last Post Geovanny Suaza  
      Started by RFrosty, 01-28-2026, 06:49 PM
      0 responses
      576 views
      1 like
      Last Post RFrosty
      by RFrosty
       
      Working...
      X