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:	118
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 SalmaTrader, 07-07-2026, 10:26 PM
      0 responses
      35 views
      0 likes
      Last Post SalmaTrader  
      Started by CarlTrading, 07-05-2026, 01:16 PM
      0 responses
      20 views
      0 likes
      Last Post CarlTrading  
      Started by CaptainJack, 06-17-2026, 10:32 AM
      0 responses
      13 views
      0 likes
      Last Post CaptainJack  
      Started by kinfxhk, 06-17-2026, 04:15 AM
      0 responses
      19 views
      0 likes
      Last Post kinfxhk
      by kinfxhk
       
      Started by kinfxhk, 06-17-2026, 04:06 AM
      0 responses
      22 views
      0 likes
      Last Post kinfxhk
      by kinfxhk
       
      Working...
      X