Type : Indicator, Name : RSI of Volatility
Inputs:
AVL(3),
RSILEN(3),
Obought(85),
Osold(25);
Vars:
XXX(0);
if o>c then XXX=o-c;
if c>o then XXX=c-o;
plot1 (rsi(average(XXX,AVL),RSILEN));
plot2 (50);
plot3 (Osold);
Plot4 (OBought);
Type : Indicator, Name : RSI of Volatility
Inputs:
AVL(3),
RSILEN(3),
Obought(85),
Osold(25);
Vars:
XXX(0);
if o>c then XXX=o-c;
if c>o then XXX=c-o;
plot1 (rsi(average(XXX,AVL),RSILEN));
plot2 (50);
plot3 (Osold);
Plot4 (OBought);