Can someone explain under what circumstances you would need to utilize the Update() method? Specifically is there ever a case where one would need to use the Update() method to get the correct (meaning updated) indicator's value when calling it from within another indicator or strategy calculation step?
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Update()- When is it necessary?
Collapse
X
-
Update()- When is it necessary?
I have read several posts from Josh on the Update() method but want to make sure I understand WHEN it is necessary if one is only needing to use an indicator's value itself and not an internal variable value within the indicator.
Can someone explain under what circumstances you would need to utilize the Update() method? Specifically is there ever a case where one would need to use the Update() method to get the correct (meaning updated) indicator's value when calling it from within another indicator or strategy calculation step?Tags: None
-
Update is needed any time you are accessing a "non-dataseries" property. DataSeries syns themselves by triggering OnBarUpdate if needed. But if you want access e.g. a custom property which holds the result of some calculation triggers in onBarUpdate, then you would need to make sure OnBarUpdate is triggered by calling Update().
-
Plots and Dataseries Don't require Update() 'call'?
Thanks Dierk,
just to make sure I am getting it, is this correct:
Plots and Data series values (in indicators) do NOT ever require an Update) explicitly because they update on each OnBarUpdate or during each tick (if OnBarUpdate = false).
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
577 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
334 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
101 views
0 likes
|
Last Post
by Mindset
02-09-2026, 11:44 AM
|
||
|
Started by Geovanny Suaza, 02-02-2026, 12:30 PM
|
0 responses
553 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
551 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment