Stock Portfolio Organizer
The ultimate porfolio management solution.
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
Deel - Average Dollar Price Volatility for Amibroker (AFL)
This is a conversion of the Metastock exploration into Amibroker. Tested and working.
Similar Indicators / Formulas
Indicator / Formula
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | AddColumn ( H - L , "First Day Range" ); AddColumn ( Ref ( H - L , -1), "Second Day Range" ); AddColumn ( Ref ( H - L , -2), "Third Day Range" ); AddColumn ( Ref ( H - L , -3), "Fourth Day Range" ); AddColumn ( Ref ( H - L , -4), "Fifth Day Range" ); Range = ( H - L + ( Ref ( H , -1) - Ref ( L , -1)) + ( Ref ( H , -2) - Ref ( L , -2)) + ( Ref ( H , -3) - Ref ( L , -3)) + ( Ref ( H , -4) - Ref ( L , -4))) / 5; AddColumn (Range, "Averange 5 Day Range" ); Filter = EMA ( C * V , 5) > 500000; |
0 comments
Leave Comment
Please login here to leave a comment.
Back