all_time_low
All-Time Low (Minimum value from inception)
all_time_low(source)
Parameters
| Name | Type | Description |
|---|---|---|
source |
field | Field to track minimum value, typically low or close |
Formula
all_time_low(field) = MIN(field) from first trading day to current bar
Examples
all_time_low(low); # Lowest price ever reached
all_time_low(close); # Lowest closing price ever
close < all_time_low(low) * 1.1; # Within 10% of all-time low
(close - all_time_low(low)) / (all_time_high(high) - all_time_low(low)) > 0.8; # Price position in historical range
Returns
float
Notes
Requires full price history (infinite lookback); useful for identifying stocks near all-time lows and often combined with all_time_high for range analysis; works in mtf() blocks for cross-timeframe analysis; the value decreases monotonically, never increasing over time