Cleverio - Quantower Indicators Help

Normalized Average True Range (NATR)

Video Demonstration

Description

The Normalized Average True Range (NATR) is a volatility indicator that adjusts the Average True Range (ATR) to make it comparable across different securities and price levels. This is achieved by expressing the ATR as a percentage of the closing price.

How It Works

By normalizing ATR, you can compare volatility across different stocks or securities, regardless of their price levels. It provides a clearer picture of volatility by removing the bias introduced by absolute price values. We need to calculate ATR as usual and then we divide by the closing price. It helps in identifying stocks with the desired volatility for your trading strategy. Volatility Analysis: Useful for understanding market conditions and making informed trading decisions.

Formula

//1. Calculate True Range Percent double highLowVolatility = ((High() - Low()) / Low()) * 100.0; double highCloseVolatility = ((High() - Close(-1)) / Close(-1)) * 100.0; double lowCloseVolatility = ((Low() - Close(-1)) / Close(-1)) * 100.0; //Return the largest value return Math.Max(Math.Max(highLowVolatility, highCloseVolatility), lowCloseVolatility); //2. Sum True Range for specified period (Ex: 14 days) double totalTrueRange = 10.0 + 11.0 + 10.5 + ... + 10.3 + 13.3 +13.0; //3. Calculate Average Volatility double volatility = (1.0 / 14) * totalTrueRange;

Chart Settings

natr-settings-1.png
natr-settings-2.png

* For common indicator properties please see Common Indicator Settings

  1. "Period Moving Average"

Watchlist Settings

wl-natr-settings.png

* For common indicator properties please see Common Indicator Settings

  1. "Period Moving Average"

Chart View

chart-natr-indicator.png
Last modified: 24 September 2024