Intraday highest calue of rsi(7) except current bar

#1
Hi Traders,

How to get the highest high and lowest low values in intraday of RSI(7) EXCEPT the value of current running bar,

I dont want to include the current running bar..I am using 5 minutes chart.

Any help from AFL experts.

Thanks
 

rvlv

Active Member
#2
HI
JUST USE HHV(RSI(7),10) AND LLV(RSI(7),10)

PLEASE EXPLAIN HOW YOU PLAN TO USE THIS. THEN WE CAN HELP YOU BETTER,be it a divergence or something else.
without price info on same chart, you cant be comfortable. must be able to see what price is doing while rsi is doing xyz.

=====================================
HTML:
_SECTION_BEGIN("RSI");
SetChartOptions(0,0,chartGrid30|chartGrid70);
periods = Param( "Periods", 7, 1, 200, 1 );
Plot( RSI( 7), "RSI(7)",  colorOrange, styleThick  );
_SECTION_END();
HRSI =HHV(RSI(7),10);
LRSI =LLV(RSI(7),10);
Plot(HRSI,"HRSI",colorAqua,styleDashed);
Plot(LRSI,"LRSI",colorYellow,styleDashed);