var mylist = new List<double>(new [] { 1, 2, 3, 4, 5, 6, 7, 8, 9 });
var sma = SMA(mylist, 3); // ?
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Convert IList<double> to ISeries<double> for using existing indicators on it
Collapse
X
-
Convert IList<double> to ISeries<double> for using existing indicators on it
Is there any way to use existing indicators on my own data? Literally...
My list is "built" from data else-ware and doesn't line up with any data series per se. Is there is way to convert a list to a custom ISeries<> for using indicators on it?Code:Tags: None
-
Hello, thanks for writing in.
There are no type converters for a List<T> to a Series<T>. We discussed this topic in the past here:
https://ninjatrader.com/support/foru...ct#post1091285
Either the data series should be a Series<T> to begin with, or you will need to loop through the list and copy the data values.
Please let me know if I can assist any further.
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by SalmaTrader, 07-07-2026, 10:26 PM
|
0 responses
35 views
0 likes
|
Last Post
by SalmaTrader
07-07-2026, 10:26 PM
|
||
|
Started by CarlTrading, 07-05-2026, 01:16 PM
|
0 responses
20 views
0 likes
|
Last Post
by CarlTrading
07-05-2026, 01:16 PM
|
||
|
Started by CaptainJack, 06-17-2026, 10:32 AM
|
0 responses
12 views
0 likes
|
Last Post
by CaptainJack
06-17-2026, 10:32 AM
|
||
|
Started by kinfxhk, 06-17-2026, 04:15 AM
|
0 responses
18 views
0 likes
|
Last Post
by kinfxhk
06-17-2026, 04:15 AM
|
||
|
Started by kinfxhk, 06-17-2026, 04:06 AM
|
0 responses
20 views
0 likes
|
Last Post
by kinfxhk
06-17-2026, 04:06 AM
|

Comment