← Glossary
True range
True range takes the greatest of three values for a single bar: high minus low, the distance from high to the prior close, and the distance from low to the prior close. Using the prior close catches gaps that a plain high-low range would miss, which is why ATR is built from true range rather than the raw daily range.
TrueRange = max(High−Low, |High−PrevClose|, |Low−PrevClose|)See also
This explains what true range measures. It isn't investment advice — see the disclaimer.