Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Can I add a dynamic second data series?
Collapse
X
-
Can I add a dynamic second data series?
Lets say I am using 15 min candles for my data series. I have an indicator that I would like to use 5 minute candles for to get more granular. But I want to build the indicator so that whatever the main data series is, my second data series will just take it and divide it by a number like 3. Is this possible?Tags: None
-
Hello ErikY,
Yes that is possible. The indicator can use AddDataSeries to add a more granular series. You can then use the BarsInProgress property to separate different parts of your logic.
To get the primary bar prices you can use the plural close series Closes[0][0] which represents the primary price.
I look forward to being of further assistance.
-
Thanks Jesse.
Is there a way that I can figure out the main data series value, so that I can simply divide that value by 2 when i do the AddDataSeries?
So something like this:
int DSMinutes = MainDataSeries.value;
AddDataSeries(Data.BarsPeriodType.Minute, DSMinutes/2);
So what I don't know how to do is get the main data series minutes value, or whatever that type may be, ticks, minutes, seconds, etc.
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Mindset, 04-21-2026, 06:46 AM
|
0 responses
46 views
0 likes
|
Last Post
by Mindset
04-21-2026, 06:46 AM
|
||
|
Started by M4ndoo, 04-20-2026, 05:21 PM
|
0 responses
67 views
0 likes
|
Last Post
by M4ndoo
04-20-2026, 05:21 PM
|
||
|
Started by M4ndoo, 04-19-2026, 05:54 PM
|
0 responses
35 views
0 likes
|
Last Post
by M4ndoo
04-19-2026, 05:54 PM
|
||
|
Started by cmoran13, 04-16-2026, 01:02 PM
|
0 responses
95 views
0 likes
|
Last Post
by cmoran13
04-16-2026, 01:02 PM
|
||
|
Started by PaulMohn, 04-10-2026, 11:11 AM
|
0 responses
59 views
0 likes
|
Last Post
by PaulMohn
04-10-2026, 11:11 AM
|

Comment