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.
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Limit processing of historical data on chart
Collapse
X
-
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.Tags: None
-
Hello Doctor JR,
X bars back would require using the Count
https://ninjatrader.com/support/help...ries_count.htmCode:if (CurrentBar < Count - (xbarsback) - 1) { return; }
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.
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by NullPointStrategies, Yesterday, 05:17 AM
|
0 responses
67 views
0 likes
|
Last Post
|
||
|
Started by argusthome, 03-08-2026, 10:06 AM
|
0 responses
142 views
0 likes
|
Last Post
by argusthome
03-08-2026, 10:06 AM
|
||
|
Started by NabilKhattabi, 03-06-2026, 11:18 AM
|
0 responses
76 views
0 likes
|
Last Post
|
||
|
Started by Deep42, 03-06-2026, 12:28 AM
|
0 responses
47 views
0 likes
|
Last Post
by Deep42
03-06-2026, 12:28 AM
|
||
|
Started by TheRealMorford, 03-05-2026, 06:15 PM
|
0 responses
51 views
0 likes
|
Last Post
|

Comment