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
-
Hello afshinmoshrefi,
May I confirm you are using .GetValueAt() with these series?
https://ninjatrader.com/support/help...getvalueat.htm
Or may I confirm this is being run in the call back method of TriggerCustomEvent()?
https://ninjatrader.com/support/help...ustomevent.htm
See note 8 in the first Notes box in OnRender()
https://ninjatrader.com/support/help...s/onrender.htm
See the 3rd Notes box in Series<T>.
https://ninjatrader.com/support/help...us/seriest.htmChelsea B.NinjaTrader Customer Service
-
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
- 1 like
Comment
Latest Posts
Collapse
Topics | Statistics | Last Post | ||
---|---|---|---|---|
Started by NT-Roland, Today, 10:03 AM
|
0 responses
3 views
0 likes
|
Last Post
![]()
by NT-Roland
Today, 10:03 AM
|
||
Started by kevinfloresz, Today, 09:46 AM
|
0 responses
11 views
0 likes
|
Last Post
![]()
by kevinfloresz
Today, 09:46 AM
|
||
Started by tvaughan4, 12-13-2019, 10:46 PM
|
2 responses
19 views
0 likes
|
Last Post
![]()
by tvaughan4
Yesterday, 06:23 PM
|
||
Started by digibob, 12-13-2019, 10:01 PM
|
3 responses
13 views
0 likes
|
Last Post
![]()
by digibob
Yesterday, 09:30 PM
|
||
Started by ldissinger, Yesterday, 12:55 PM
|
1 response
21 views
0 likes
|
Last Post
![]()
by ldissinger
Yesterday, 12:56 PM
|
Comment