STRASMORE/EXPLORE 2,170 QUERIES

Large caps on a trailing P/E under 15, within 10% of a 52-week 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 ranking 9×3read in context →
Large caps on a trailing P/E under 15, within 10% of a 52-week low — 9 rows by 3 columns, computed from US exchange, SIP and OPRA data.
tickerpct_above_lowpe_ratio
VICI3.210.6
STZ5.612.6
ZTS6.611.8
AIG6.812.5
GLPI6.914.9
BRK.B7.214.7
LEN8.112.9
FIS9.66.2
CCL9.711.3
Rows × columns
9 × 3
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 Large caps on a trailing P/E under 15, within 10% of a 52-week low, derived from the stored result.
ColumnTypeRangeNotes
ticker text 9 distinct values (AIG, BRK.B, CCL…)
pct_above_low number 3.2 to 9.7 percent
pe_ratio number 6.2 to 14.9 ratio or rate

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
WITH ratios AS
(
    SELECT
        ticker,
        argMax(price_to_earnings, date) AS pe,
        argMax(market_cap, date)        AS mcap,
        argMax(average_volume, date)    AS adv
    FROM global_markets.stocks_ratios
    WHERE date >= today() - 14
      AND ticker NOT IN ('SPCX')
    GROUP BY ticker
),
band AS
(
    SELECT
        ticker,
        min(low)            AS low_52w,
        argMax(close, date) AS last_close
    FROM global_markets.stocks_daily_aggs
    WHERE date >= today() - 372
      AND ticker NOT IN ('SPCX')
    GROUP BY ticker
)
SELECT
    b.ticker                                                             AS ticker,
    round(toFloat64(b.last_close) / toFloat64(b.low_52w) * 100 - 100, 1) AS pct_above_low,
    round(r.pe, 1)                                                       AS pe_ratio
FROM band AS b
INNER JOIN ratios AS r ON r.ticker = b.ticker
WHERE r.mcap >= 10000000000
  AND r.adv >= 1000000
  AND r.pe > 0
  AND r.pe <= 15
  AND b.low_52w > 0
  AND toFloat64(b.last_close) / toFloat64(b.low_52w) <= 1.10
ORDER BY pct_above_low ASC, b.ticker ASC
LIMIT 15

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
Qualifying large caps as the distance band and the P/E ceiling widen ranking 6×3 KO month-end close against its trailing 12-month low series 14×4 Squeeze-shaped mechanics: crowded shorts among liquid names, with a rising price ranking 12×4 Every past screened name, by what it did over the next 30 days ranking 6×3 From the whole settlement file down to the screened list, one rule at a time ranking 4×2 Liquid names at 5+ and 10+ days to cover, settlement by settlement series 12×4 See all 2,170 queries →