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 FrazMann, Today, 11:21 AM
    2 responses
    6 views
    0 likes
    Last Post NinjaTrader_ChristopherJ  
    Started by rjbtrade1, 11-30-2023, 04:38 PM
    2 responses
    80 views
    0 likes
    Last Post DavidHP
    by DavidHP
     
    Started by Spiderbird, Today, 12:15 PM
    1 response
    7 views
    0 likes
    Last Post NinjaTrader_ChristopherJ  
    Started by lorem, Yesterday, 09:18 AM
    5 responses
    18 views
    0 likes
    Last Post NinjaTrader_ChelseaB  
    Started by cmtjoancolmenero, Yesterday, 03:58 PM
    12 responses
    42 views
    0 likes
    Last Post NinjaTrader_ChelseaB  
    Working...
    X