Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Convert IList<double> to ISeries<double> for using existing indicators on it

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    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...

    Code:
    var mylist = new List<double>(new [] { 1, 2, 3, 4, 5, 6, 7, 8, 9 });
    
    var sma = SMA(mylist, 3); // ?
    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?

    #2
    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.

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by CarlTrading, 03-31-2026, 09:41 PM
    1 response
    81 views
    1 like
    Last Post NinjaTrader_ChelseaB  
    Started by CarlTrading, 04-01-2026, 02:41 AM
    0 responses
    42 views
    0 likes
    Last Post CarlTrading  
    Started by CaptainJack, 03-31-2026, 11:44 PM
    0 responses
    64 views
    2 likes
    Last Post CaptainJack  
    Started by CarlTrading, 03-30-2026, 11:51 AM
    0 responses
    68 views
    0 likes
    Last Post CarlTrading  
    Started by CarlTrading, 03-30-2026, 11:48 AM
    0 responses
    55 views
    0 likes
    Last Post CarlTrading  
    Working...
    X