Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Set back an Array to Null Value

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

    Set back an Array to Null Value

    I want to set back an array to null value on each OnBarUpdate calling.
    How do you do that ?

    #2
    baba123,

    Can you clarify how you're using the array? Is this a custom array or do you mean a data series?

    If you're using a basic data series, you can use:

    myDataSeries.Reset();

    Please let me know if that's not what you meant.
    MatthewNinjaTrader Product Management

    Comment


      #3
      Originally posted by baba123 View Post
      I want to set back an array to null value on each OnBarUpdate calling.
      How do you do that ?
      What type of array is it?
      What was your intital declaration of said array?

      Comment


        #4
        It is a custom array : int[ ] MyArray =new int {0,0,0}

        To be more specific I want to clear all the value in my array on each bar update

        Comment


          #5
          Originally posted by baba123 View Post
          It is a custom array : int[ ] MyArray =new int {0,0,0}

          To be more specific I want to clear all the value in my array on each bar update
          Then just declare the array again on each OnBarUpdate() pass. Declaring an array with the same name as an existing array replaces the existing array.

          If you just want to reset all the elements of the array to zero, use Array.Clear(MyArray, 0, MyArray.Length).
          Last edited by koganam; 08-11-2011, 08:06 PM. Reason: Corrected spelling

          Comment

          Latest Posts

          Collapse

          Topics Statistics Last Post
          Started by Geovanny Suaza, 02-11-2026, 06:32 PM
          0 responses
          580 views
          0 likes
          Last Post Geovanny Suaza  
          Started by Geovanny Suaza, 02-11-2026, 05:51 PM
          0 responses
          335 views
          1 like
          Last Post Geovanny Suaza  
          Started by Mindset, 02-09-2026, 11:44 AM
          0 responses
          102 views
          0 likes
          Last Post Mindset
          by Mindset
           
          Started by Geovanny Suaza, 02-02-2026, 12:30 PM
          0 responses
          554 views
          1 like
          Last Post Geovanny Suaza  
          Started by RFrosty, 01-28-2026, 06:49 PM
          0 responses
          552 views
          1 like
          Last Post RFrosty
          by RFrosty
           
          Working...
          X