I'm trying to create a comparative relative strength
ranking that is
similar to that of Investors Business Daily - that is
between 0 and 100.
The AFL I'm using is:
Filter = C > 5 AND V>100000;
RS_Rank =
((((C - Ref(c,-63))/Ref(c,-63) *.4 + (C -
Ref(c,-126))/Ref
(c,-126) * .2 + (C - Ref(c,-189))/Ref(c,-189)
*.2 + (C-Ref(c,-252))/Ref
(c,-252) * .2)) *
100;
Addcolumn(C,"Close",1.2);
Addcolumn(RS_Rank,
"RS_Rank",1.2);