STRASMORE/EXPLORE 2,170 QUERIES

KO month-end close against its trailing 12-month low

Answered against 22 years of US equities and 12 years of US options data and published with the query that produced it. This result is stored as of 2026-08-22, from Low P/E Stocks Near 52-Week Lows.

as of series 14×4read in context →
KO month-end close against its trailing 12-month low — 14 rows by 4 columns, computed from US exchange, SIP and OPRA data.
monthclose_pricetrailing_12m_lowpct_above_low
2025-0767.8960.6212
2025-0868.9960.6213.8
2025-0966.3260.629.4
2025-1068.960.6213.7
2025-1173.1260.6220.6
2025-1269.9160.6215.3
2026-0174.8162.3520
2026-0281.5665.3524.8
2026-0376.0565.3516.4
2026-0478.7665.3520.5
2026-0579.0165.3520.9
2026-0681.2765.3524.4
2026-0787.5965.3534
2026-0890.5165.3538.5
Rows × columns
14 × 4
Period covered
to
Computed
Completeness
No missing values
Source
US exchange, SIP and OPRA market data
Licence
Strasmore terms · free, no signup
Formats
JSON · CSV · the SQL below

What each column holds

Column definitions for KO month-end close against its trailing 12-month low, derived from the stored result.
ColumnTypeRangeNotes
month date 2025-07 to 2026-08
close_price number 66.32 to 90.51 US dollars
trailing_12m_low number 60.62 to 65.35 US dollars
pct_above_low number 9.4 to 38.5 percent

Computed from Strasmore's warehouse of US exchange, SIP and OPRA market data. Equity prices are delayed; options greeks and implied volatility are end-of-day. This result is stored, not recomputed on load — it is exactly the numbers that were returned on , and the query below is what returned them.

the exact SQL behind every number
SELECT
    formatDateTime(m, '%Y-%m')                                             AS month,
    round(toFloat64(month_close), 2)                                       AS close_price,
    round(toFloat64(trailing_low), 2)                                      AS trailing_12m_low,
    round(toFloat64(month_close) / toFloat64(trailing_low) * 100 - 100, 1) AS pct_above_low
FROM
(
    SELECT
        m,
        month_close,
        min(month_low) OVER (ORDER BY m ASC ROWS BETWEEN 11 PRECEDING AND CURRENT ROW) AS trailing_low
    FROM
    (
        SELECT
            toStartOfMonth(date) AS m,
            argMax(close, date)  AS month_close,
            min(low)             AS month_low
        FROM global_markets.stocks_daily_aggs
        WHERE ticker = 'KO'
          AND date >= today() - 1100
        GROUP BY m
    )
)
WHERE m >= toStartOfMonth(today() - 400)
ORDER BY m

Run your own version of this

The same 22 years of US equities and 12 years of options data are queryable in SQL or plain English. A free account runs 100 queries a day and takes no card.

More from this analysisLow P/E Stocks Near 52-Week Lows
Large caps on a trailing P/E under 15, within 10% of a 52-week low ranking 9×3 Qualifying large caps as the distance band and the P/E ceiling widen ranking 6×3 Liquid names at 5+ and 10+ days to cover, settlement by settlement series 12×4 Every input behind this screen, and how many days old it is series 3×3 Squeeze-shaped mechanics: crowded shorts among liquid names, with a rising price ranking 12×4 The screened names ranked by short interest against shares outstanding (not float) table 10×5 See all 2,170 queries →