all_time_low

All-Time Low (Minimum value from inception)

all_time_low(source)

Parameters

All-Time Low - all_time_low(source)

Returns the lowest value ever reached for a given field from the first

trading day to the current bar.

  • source (field, required): Field to track minimum value - typically low, close, or other price field

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

The minimum value of the specified field from inception to current bar.