Normalized RSI with IFT
For interpretation refer to the May 2004 issue of Technical Analysis of STOCKS & COMMODITIES magazine.
var
plot:=RSI(C,5);
ph:=highestAll(plot);
pl:=LowestAll(plot);
pf:=0;
v1:=0;
v2:=0;
end_var
if ph <> pl then
pf:= 10/(ph-pl);
v1:=((plot - pl) * pf) - 5;
v2:=Mov(v1, 9, W);
return (Exp(2 * v2) - 1) / (Exp(2 * v2) + 1);
|
Download to import into Tradecision. 
How to use this indicator in Tradecision:
- Click Download.
- Save this indicator in a safe location on your hard drive.
- Open Tradecision and in the Tools menu click Indicator Builder.
- In the Indicator Builder dialog, click Import, locate the saved file and then click OK.
The indicator will be added to the Custom Indicators list.
|