Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Limit processing of historical data on chart

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

    Limit processing of historical data on chart

    My purpose is to speed up loading of my strategy and place minimal demands on NinjaTrader.

    Is there a way to limit processing of historical data to x bars back from the first real time bar? My primary chart has several days of data but for strategy purposes I don't need to churn through all those prior days -- Just x bars back to make my indicators current.

    #2
    Hello Doctor JR,

    X bars back would require using the Count

    Code:
    if (CurrentBar < Count - (xbarsback) - 1)
    {
     return;
    }
    https://ninjatrader.com/support/help...ries_count.htm

    You may need to add other conditions here to check the state so that this does not keep running later once the count increases with new bars.

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by NullPointStrategies, Yesterday, 05:17 AM
    0 responses
    67 views
    0 likes
    Last Post NullPointStrategies  
    Started by argusthome, 03-08-2026, 10:06 AM
    0 responses
    142 views
    0 likes
    Last Post argusthome  
    Started by NabilKhattabi, 03-06-2026, 11:18 AM
    0 responses
    76 views
    0 likes
    Last Post NabilKhattabi  
    Started by Deep42, 03-06-2026, 12:28 AM
    0 responses
    47 views
    0 likes
    Last Post Deep42
    by Deep42
     
    Started by TheRealMorford, 03-05-2026, 06:15 PM
    0 responses
    51 views
    0 likes
    Last Post TheRealMorford  
    Working...
    X