what find the highest in 30 of K line

 

hello friends,i want to find the highest price int sometimes,and i want to find the highest price's RSI(indicator) value,   so i think i must find the highest's price int waht's K line ,please help me

 
zdj229:

hello friends,i want to find the highest price int sometimes,and i want to find the highest price's RSI(indicator) value,   so i think i must find the highest's price int waht's K line ,please help me

 Where is your Codes? What have you tried so far?

 
i can't find any way to solve this problom
 
zdj229:
i can't find any way to solve this problom

Are you looking for the highest price of a certain number of bars and with the bar of the highest price you like to get the RSI value of that bar?
Something like:

int NumberOfBars=30;
Print(iRSI(NULL,0,14,PRICE_CLOSE,iHighest(NULL,0,MODE_HIGH,NumberOfBars,0)));

If that does not help you, you probably need to rephrase your problem or post some code and explain it on the basis of your code. 

Reason: