Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Accessing Data, String, Bool, etc Series
Collapse
X
-
Accessing Data, String, Bool, etc Series
Is it possible to access series other than plots in MA? If I have an indicator with a bool series that is not a plot, can I access the values held in that bool series? It appears that only plots are accessible.Tags: None
-
Hello snaphook,
Yes, this is possible. You can use this reference sample as a guide:
Exposing indicator values that are not plotsRyan M.NinjaTrader Customer Service
-
Not true.Originally posted by NinjaTrader_RyanM View PostI see - thanks for responding. Columns in the market analyzer can only be plots. A common approach then for the bool series is to set a plot as 1 when true and 0 otherwise.
Market Analyzer Columns can also be a user defined DataSeries that does not plot; it just has to have a property getter method with characteristics of [Browsable(false)] and [XmlIgnore()].
I wasn't able to get this to work with a BoolSeries, but with a DataSeries it works fine.
Working code:
Code:Protected bool Going_Up = false; Protected DataSeries goingUp; goingUp = new DataSeries( this ); // In Initialize() goingUp[0] = Going_Up ? 1 : 0; // In OnBarUpdate() [Browsable(false)] [XmlIgnore()] public DataSeries GoingUp { get { Update(); return goingUp; } }
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by CarlTrading, Yesterday, 11:51 AM
|
0 responses
17 views
0 likes
|
Last Post
by CarlTrading
Yesterday, 11:51 AM
|
||
|
Started by CarlTrading, Yesterday, 11:48 AM
|
0 responses
22 views
0 likes
|
Last Post
by CarlTrading
Yesterday, 11:48 AM
|
||
|
Started by CaptainJack, 03-25-2026, 09:53 PM
|
0 responses
23 views
0 likes
|
Last Post
by CaptainJack
03-25-2026, 09:53 PM
|
||
|
Started by CaptainJack, 03-25-2026, 09:51 PM
|
0 responses
13 views
0 likes
|
Last Post
by CaptainJack
03-25-2026, 09:51 PM
|
||
|
Started by Mindset, 03-23-2026, 11:13 AM
|
0 responses
20 views
0 likes
|
Last Post
by Mindset
03-23-2026, 11:13 AM
|

Comment