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
      0 responses
      2 views
      0 likes
      Last Post inanazsocial  
      Started by trilliantrader, 04-18-2024, 08:16 AM
      5 responses
      22 views
      0 likes
      Last Post trilliantrader  
      Started by Davidtowleii, Today, 12:15 AM
      0 responses
      3 views
      0 likes
      Last Post Davidtowleii  
      Started by guillembm, Yesterday, 11:25 AM
      2 responses
      9 views
      0 likes
      Last Post guillembm  
      Started by junkone, 04-21-2024, 07:17 AM
      9 responses
      71 views
      0 likes
      Last Post jeronymite  
      Working...
      X