Stock Portfolio Organizer

The ultimate porfolio management solution.

Shares, Margin, CFD's, Futures and Forex
EOD and Realtime
Dividends and Trust Distributions
And Much More ....
For Portfolio Manager Click Here

WiseTrader Toolbox

#1 Selling Amibroker Plugin featuring:

Advanced Adaptive Indicators
Advanced Pattern Exploration
Neural Networks
And Much More ....
Find Out More Here

Explore the Normalized ATR for Amibroker (AFL)

Rating:
5 / 5 (Votes 2)
Tags:
amibroker, exploration

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

Copy & Paste Friendly
//---------------------------------------------------------------------------
//	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

1. sal157011

Useful Resource: https://www.fidelity.com/learning-center/trading-investing/technical-analysis/technical-indicator-guide/atrp

Leave Comment

Please login here to leave a comment.

Back