Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
sequence of events
Collapse
X
-
sequence of events
what is the sequence of events when i add a strategy to a chart? for example, if the price is drawn, then the indicator computed, then the strategy. it means that the strategy can see in the future. on the other hand, if the price, indicator and strategy are calculated bar by bar, the indicator can't see in the future.Tags: None
-
Hi tubular2000,
Thanks for your note.
When a strategy is added to a chart only the Intialize() function will be run. This is to initialize variables and set defaults. No other functions will run in the script at that time.
For all NinjaScripts, indicator or strategy, certain functions run at certain times.
First, the data will be received by the platform and processed. Next the bar will appear on the chart.
The OnBarUpdate will run whenever a bar is closed (when CalculateOnBarClose is set to true) or when a tick is received (when CalculateOnBarClose is set to false).
OnMarketData will always run whenever any data is received (such as a tick, or daily high, daily low, volume etc).
An indicator and strategy added directly to the same chart will be asynchronous, meaning that there is no guarantee that either will run before the other. They will both depend on NinjaTrader closing a bar or receiving data independently.
An indicator that is called from a strategy will always be run when it is called.
Please let me know if this does not resolve your inquiry.Chelsea B.NinjaTrader Customer Service
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by argusthome, 03-08-2026, 10:06 AM
|
0 responses
93 views
0 likes
|
Last Post
by argusthome
03-08-2026, 10:06 AM
|
||
|
Started by NabilKhattabi, 03-06-2026, 11:18 AM
|
0 responses
48 views
0 likes
|
Last Post
|
||
|
Started by Deep42, 03-06-2026, 12:28 AM
|
0 responses
31 views
0 likes
|
Last Post
by Deep42
03-06-2026, 12:28 AM
|
||
|
Started by TheRealMorford, 03-05-2026, 06:15 PM
|
0 responses
34 views
0 likes
|
Last Post
|
||
|
Started by Mindset, 02-28-2026, 06:16 AM
|
0 responses
69 views
0 likes
|
Last Post
by Mindset
02-28-2026, 06:16 AM
|

Comment