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 StockTrader88, 03-06-2021, 08:58 AM
    45 responses
    3,992 views
    3 likes
    Last Post johntraderuser2  
    Started by TAJTrades, Today, 09:46 AM
    0 responses
    7 views
    0 likes
    Last Post TAJTrades  
    Started by rhyminkevin, Yesterday, 04:58 PM
    5 responses
    62 views
    0 likes
    Last Post dp8282
    by dp8282
     
    Started by realblubb, Today, 09:28 AM
    0 responses
    8 views
    0 likes
    Last Post realblubb  
    Started by AaronKoRn, Yesterday, 09:49 PM
    1 response
    19 views
    0 likes
    Last Post Rikazkhan007  
    Working...
    X