Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Series<T> object is inaccessible OnRender
Collapse
X
-
Series<T> object is inaccessible OnRender
I have several Series objects holding data per bar. I need the information in the Series to render the indicator. The Series objects are populated inside OnBarUpdate, when I try to access them inside OnRender, null is returned. How can I access Series objects inside OnRender?Tags: None
-
I am not using GetValueAt(). I was trying to use it simply like other price series. What is the function of GetValueAt() vs just checking mySeries[i] ?
Comment
-
Hello afshinmoshrefi
OnRender() updates in a different thread than the price series. The price series will not be in sync with OnRender.
Do you feel the 3rd Note box in the Series<T> help guide page is not adequate?
"Note: The "barsAgo" value is only guaranteed to be in sync with the recent current bar during core data event methods, such as OnBarUpdate(), OnMarketUpdate(), and during strategy related order events such as OnOrderUpdate(), OnExecutionUpdate(), OnPositionUpdate(). For scenarios where you may need to set a value outside of a core data/order event, such as OnRender() or a custom event, you must first synchronize the "barsAgo" pointer via the TriggerCustomEvent() method."
How do you feel this could be changed so that it is easier to digest?Chelsea B.NinjaTrader Customer Service
- Likes 1
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
558 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
324 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
545 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
547 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment