RS Rank Explorer for Amibroker (AFL)
masut about 7 years ago Amibroker (AFL)
The RS Rank is computed by taking the average of a long-term price change with a short term price change.
Indicator / Formula
Copy & Paste Friendly
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.0);
AddColumn(RS_Rank, "RS_Rank",1.0);
SetSortColumns ( -4, 1);1 comments
Leave Comment
Please login here to leave a comment.
this is just ROC. you could have simply written roc instead of writing lengthy ref lines…