Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Regarding Bars Array

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

    Regarding Bars Array

    I have an Array of Bars( Bars[]). But I am interested to serach through the array for the index of the position of a specific symbol. How could I do this?
    The reason in because I want to access the Closes[?][0], but I would like to get the index so that I can access it.

    Thank you

    #2
    Hello Yandychang,

    Thank you for your post.

    You could run through the Array in the following manner:
    Code:
    			int barindex = 0;
    			for (int i = BarsArray.Length; i > 0; i--)
    			{
    				if (BarsArray[i].Instrument.FullName == "ES 09-16")
    				{
    					barindex = i;
    					break;
    				}
    			}

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by Rapine Heihei, 04-23-2024, 07:51 PM
    2 responses
    30 views
    0 likes
    Last Post Max238
    by Max238
     
    Started by Shansen, 08-30-2019, 10:18 PM
    24 responses
    943 views
    0 likes
    Last Post spwizard  
    Started by Max238, Today, 01:28 AM
    0 responses
    9 views
    0 likes
    Last Post Max238
    by Max238
     
    Started by rocketman7, Today, 01:00 AM
    0 responses
    4 views
    0 likes
    Last Post rocketman7  
    Started by wzgy0920, 04-20-2024, 06:09 PM
    2 responses
    28 views
    0 likes
    Last Post wzgy0920  
    Working...
    X