Stock Portfolio Organizer
The ultimate porfolio management solution.
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
Explore the Normalized ATR for Amibroker (AFL)
Average True Range (ATR) is a very useful measure of volatility, but it is not directly comparable across securities and over time.
Normalized ATR can solve this issue or make it into PositionScore.
Indicator / Formula
//--------------------------------------------------------------------------- // Explore & Debug & TimeSeries View & DataFrame //--------------------------------------------------------------------------- PeriodAtr = ATR( 20 ); NormalizedAtr = ( PeriodAtr / Close ) * 100; Filter = 1; AddColumn( O, "O", 1.2 ); AddColumn( H, "H", 1.2 ); AddColumn( L, "L", 1.2 ); AddColumn( C, "C", 1.2 ); AddColumn( NormalizedAtr, "Normalized ATR", 1.2 );
1 comments
Leave Comment
Please login here to leave a comment.
Back
Useful Resource: https://www.fidelity.com/learning-center/trading-investing/technical-analysis/technical-indicator-guide/atrp