Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
indicator calculation inside onbarupdate
Collapse
X
-
indicator calculation inside onbarupdate
If I have sth like output=MA(customdata, 5)[0] inside OnBarupdate(), does it calculate the sma for the entire data everytime it’s called then assign the last value to output or is it smart enough to do only online update based on previous calculated values? Thanks!Tags: None
-
Hello dodoei,
Indicators are cached when the parameters are the same and only update the latest bar.
Add a print to OnBarUpdate() in the indicator and you can see when this is updating.
You can also assign an indicator to a class level variable in OnStateChange when State is State.DataLoaded.
private SMA mySMA;
in OnStateChange():
mySMA = SMA(6);
in OnBarUpdate():
Print(mySMA[0]);Chelsea B.NinjaTrader Customer Service
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by charlesugo_1, 05-26-2026, 05:03 PM
|
0 responses
68 views
0 likes
|
Last Post
by charlesugo_1
05-26-2026, 05:03 PM
|
||
|
Started by DannyP96, 05-18-2026, 02:38 PM
|
1 response
151 views
0 likes
|
Last Post
|
||
|
Started by CarlTrading, 05-11-2026, 05:56 AM
|
0 responses
162 views
0 likes
|
Last Post
by CarlTrading
05-11-2026, 05:56 AM
|
||
|
Started by CarlTrading, 05-10-2026, 08:12 PM
|
0 responses
100 views
0 likes
|
Last Post
by CarlTrading
05-10-2026, 08:12 PM
|
||
|
Started by Hwop38, 05-04-2026, 07:02 PM
|
0 responses
288 views
0 likes
|
Last Post
by Hwop38
05-04-2026, 07:02 PM
|

Comment