Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

pivate DataSeries vs. double

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

    pivate DataSeries vs. double

    What is more efficient to use if i need ie. 4 historic values of an indicator for my strategy :

    should ia create a pivate DataSeries like this

    private DataSeries myECO2;
    myECO2 = new DataSeries(this);
    myRSX.Set(ECO2(21,45,8,6)[0]);

    or

    should i use this style of coding to get my four needed values
    - just right in the OnBarUpdate()-section :

    double eco01 = (ECO2(21,45,8,6)[1]);
    double eco02 = (ECO2(21,45,8,6)[2]);
    double eco03 = (ECO2(21,45,8,6)[3]);
    double eco04 = (ECO2(21,45,8,6)[4]);

    Thanks for an idea
    max-td

    #2
    Go with the doubles if you don't need more history for the ECO or if you don't need to 'feed' into another method accepting only dataseries inputs.

    Comment


      #3
      ok thanks for the info

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by CarlTrading, 03-31-2026, 09:41 PM
      1 response
      67 views
      0 likes
      Last Post NinjaTrader_ChelseaB  
      Started by CarlTrading, 04-01-2026, 02:41 AM
      0 responses
      36 views
      0 likes
      Last Post CarlTrading  
      Started by CaptainJack, 03-31-2026, 11:44 PM
      0 responses
      60 views
      1 like
      Last Post CaptainJack  
      Started by CarlTrading, 03-30-2026, 11:51 AM
      0 responses
      62 views
      0 likes
      Last Post CarlTrading  
      Started by CarlTrading, 03-30-2026, 11:48 AM
      0 responses
      53 views
      0 likes
      Last Post CarlTrading  
      Working...
      X