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 rhyminkevin, Today, 04:58 PM
      3 responses
      49 views
      0 likes
      Last Post Anfedport  
      Started by iceman2018, Today, 05:07 PM
      0 responses
      5 views
      0 likes
      Last Post iceman2018  
      Started by lightsun47, Today, 03:51 PM
      0 responses
      7 views
      0 likes
      Last Post lightsun47  
      Started by 00nevest, Today, 02:27 PM
      1 response
      14 views
      0 likes
      Last Post 00nevest  
      Started by futtrader, 04-21-2024, 01:50 AM
      4 responses
      50 views
      0 likes
      Last Post futtrader  
      Working...
      X