Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Any way to convert quickly dataseries to double ?

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

    Any way to convert quickly dataseries to double ?

    Hi everybody,

    I would like to know how could I convert a dataseries variable to a double variable. Can't do it with cast...
    Because I need to do something like : (double) Soustraction = (Dataseries) Number1 - (Dataseries) Number1[1]

    Thanks a lot !

    After

    #2
    After,

    Thank you for your post.

    Are you looking to get the double return of the DataSeries object?

    DataSeries is essentially an array and not able to convert this.

    You would need to call the index of the array which returns the double value at that index
    (double) Soustraction = Number1[0] - Number1[1]
    Cal H.NinjaTrader Customer Service

    Comment


      #3
      Haaaan that's it, it works. I didn't think I have to call the index of the array as we don't specify it when we load a Plot.

      Thanks !

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by Geovanny Suaza, 02-11-2026, 06:32 PM
      0 responses
      577 views
      0 likes
      Last Post Geovanny Suaza  
      Started by Geovanny Suaza, 02-11-2026, 05:51 PM
      0 responses
      334 views
      1 like
      Last Post Geovanny Suaza  
      Started by Mindset, 02-09-2026, 11:44 AM
      0 responses
      101 views
      0 likes
      Last Post Mindset
      by Mindset
       
      Started by Geovanny Suaza, 02-02-2026, 12:30 PM
      0 responses
      553 views
      1 like
      Last Post Geovanny Suaza  
      Started by RFrosty, 01-28-2026, 06:49 PM
      0 responses
      551 views
      1 like
      Last Post RFrosty
      by RFrosty
       
      Working...
      X