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 argusthome, 03-08-2026, 10:06 AM
|
0 responses
77 views
0 likes
|
Last Post
by argusthome
03-08-2026, 10:06 AM
|
||
|
Started by NabilKhattabi, 03-06-2026, 11:18 AM
|
0 responses
45 views
0 likes
|
Last Post
|
||
|
Started by Deep42, 03-06-2026, 12:28 AM
|
0 responses
27 views
0 likes
|
Last Post
by Deep42
03-06-2026, 12:28 AM
|
||
|
Started by TheRealMorford, 03-05-2026, 06:15 PM
|
0 responses
32 views
0 likes
|
Last Post
|
||
|
Started by Mindset, 02-28-2026, 06:16 AM
|
0 responses
62 views
0 likes
|
Last Post
by Mindset
02-28-2026, 06:16 AM
|

Comment