Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

"Array" instead of "Dataseries"

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

    #16
    Originally posted by pstrusi View Post
    After seeing practical cases for better results, I think that using LIST would help me to work properly with one-dimensional arrays.

    Please, any of NT team support:

    Could you simply tell me, how to declaret and initialize a simple LIST array ?

    1. Starting with this, I know that you must add to the code this declaration:
    using System.Collections.Generic;

    2.After that, where to put this in order to work properly with OnBarUpdate?
    List<int> myInts = new List<int>();
    After, before or within at protected override void Initialize()?
    After, before or within at protected override void OnBarUpdate()

    I've tried every combination but something is missing

    Thanks
    ref: http://ninjatrader.com/support/forum...78&postcount=1

    Change ArrayList semantics to List<> semantics in the example.

    Comment


      #17
      The simplest, quickest and final solution to my requirement is using a traditional ARRAY.
      Here, all the basic steps done in order to be able to work properly as needed

      1. Declaring ARRAY

      #region Variables
      double[] acu = new double[initial];
      #endregion

      2. Updating the Array dimension that actually will be used

      protected override void OnStartUp()
      {
      acu = new double[oscillation+1];
      }

      3. After use if "reseting or clearing" the Array is needed, then proceed with:

      Array.Clear(acu, 0, wpoint.Length);

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by Geovanny Suaza, 02-11-2026, 06:32 PM
      0 responses
      576 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