(function() { var didInit = false; function initMunchkin() { if(didInit === false) { didInit = true; Munchkin.init('105-GAR-921'); } } var s = document.createElement('script'); s.type = 'text/javascript'; s.defer = true; s.src = '//munchkin.marketo.net/munchkin.js'; s.onreadystatechange = function() { if (this.readyState == 'complete' || this.readyState == 'loaded') { initMunchkin(); } }; s.onload = initMunchkin; document.getElementsByTagName('head')[0].appendChild(s); })();(function(h,o,t,j,a,r){ h.hj=h.hj||function(){(h.hj.q=h.hj.q||[]).push(arguments)}; h._hjSettings={hjid:1422437,hjsv:6}; a=o.getElementsByTagName('head')[0]; r=o.createElement('script');r.defer=1; r.src=t+h._hjSettings.hjid+j+h._hjSettings.hjsv; a.appendChild(r); })(window,document,'https://static.hotjar.com/c/hotjar-','.js?sv=');

Average True Range (ATR)

Average True Range (ATR) is a technical analysis indicator used to measure market volatility. The true range is the greatest value among the current high minus the current low, the absolute value of the current high minus the previous close, and the absolute value of the current low minus the previous close.

The average true range calculates the average over a specified period, commonly 14 periods. The ATR allows traders to understand how volatility changes over time and adapt their trading strategy. Traders may use the ATR to set stop-loss and take-profit levels, aligning them with the asset's volatility to avoid being stopped out too early due to normal price fluctuations.

Back to Dictionary