Stock Portfolio Organizer
The ultimate porfolio management solution.
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
RS Rank Explorer for 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
1 2 3 4 5 6 7 8 | 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.
Back
this is just ROC. you could have simply written roc instead of writing lengthy ref lines…