Announcement

Collapse

Looking for a User App or Add-On built by the NinjaTrader community?

Visit NinjaTrader EcoSystem and our free User App Share!

Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
See more
See less

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 inanazsocial, Today, 01:15 AM
      1 response
      5 views
      0 likes
      Last Post NinjaTrader_Jason  
      Started by rocketman7, Today, 02:12 AM
      0 responses
      10 views
      0 likes
      Last Post rocketman7  
      Started by dustydbayer, Today, 01:59 AM
      0 responses
      1 view
      0 likes
      Last Post dustydbayer  
      Started by trilliantrader, 04-18-2024, 08:16 AM
      5 responses
      23 views
      0 likes
      Last Post trilliantrader  
      Started by Davidtowleii, Today, 12:15 AM
      0 responses
      3 views
      0 likes
      Last Post Davidtowleii  
      Working...
      X