True range is the largest of three spans for a bar: high minus low, the absolute value of high minus the previous close, and the absolute value of the previous close minus low.
It captures the full move including gaps, which a simple high-minus-low range would miss. Averaging true range over several bars gives ATR.
Formula / example: TR = max(high - low, |high - prev close|, |prev close - low|)