Type : Indicator, Name : RSI of Momentum
Inputs:
AVL(3),
RSILEN(3),
length2(3);
Vars: XXX(0);
if o>c then XXX=o-c;
if c>o then XXX=c-o;
plot1 (momentum((rsi(average(XXX,AVL),RSILEN)),Length2));
plot2 (0);
Type : Indicator, Name : RSI of Momentum
Inputs:
AVL(3),
RSILEN(3),
length2(3);
Vars: XXX(0);
if o>c then XXX=o-c;
if c>o then XXX=c-o;
plot1 (momentum((rsi(average(XXX,AVL),RSILEN)),Length2));
plot2 (0);