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 fx.practic, 10-15-2013, 12:53 AM
      5 responses
      5,406 views
      0 likes
      Last Post Bidder
      by Bidder
       
      Started by Shai Samuel, 07-02-2022, 02:46 PM
      4 responses
      98 views
      0 likes
      Last Post Bidder
      by Bidder
       
      Started by DJ888, Yesterday, 10:57 PM
      0 responses
      8 views
      0 likes
      Last Post DJ888
      by DJ888
       
      Started by MacDad, 02-25-2024, 11:48 PM
      7 responses
      160 views
      0 likes
      Last Post loganjarosz123  
      Started by Belfortbucks, Yesterday, 09:29 PM
      0 responses
      9 views
      0 likes
      Last Post Belfortbucks  
      Working...
      X