aks_v

ATR_Info

What Is the Average True Range (ATR)?

The average true range (ATR) is a technical analysis indicator, introduced by market technician J. Welles Wilder Jr. in his book New Concepts in Technical Trading Systems, that measures market volatility by decomposing the entire range of an asset price for that period.

Each instrument per unit of time passes its average value of the true range, but there are moments when the volatility explodes or abruptly decays, these phenomena introduce large distortions into the average value of the true range.
The ATR_WPB function calculates the average value of the true range for the specified number of bars, while excluding paranormally large and paranormally small bars from the calculation of the average.

For example, if the instrument has passed a small ATR value, then it has many chances to continue moving, but if the instrument has passed its ATR value, then the chances of continuing to move are extremely low.

Library "ATR_Info"
ATR_Info: Calculates ATR without paranormal bars

ATR_WPB(source, period, psmall, pbig)
  ATR_WPB: Calculates ATR without paranormal bars
  Parameters:
    source (float): ATR_WPB: (series float) The sequence of data on the basis of which the ATP calculation will be made
    period (int): ATR_WPB: (int) Sequence size for ATR calculation
    psmall (float): ATR_WPB: (float) Coefficient for paranormally small bar
    pbig (float): ATR_WPB: (float) Coefficient for paranormally big bar
  Returns: ATR_WPB: (float) ATR without paranormal bars
Pine library

In true TradingView spirit, the author has published this Pine code as an open-source library so that other Pine programmers from our community can reuse it. Cheers to the author! You may use this library privately or in other open-source publications, but reuse of this code in a publication is governed by House Rules.

Disclaimer

The information and publications are not meant to be, and do not constitute, financial, investment, trading, or other types of advice or recommendations supplied or endorsed by TradingView. Read more in the Terms of Use.

Want to use this library?

Copy the following line and paste it in your script.