STRASMORE/EXPLORE 2,170 QUERIES

Five-name baskets per sector: members up vs down, median, best and worst, H1 2026

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-07-26, from Sector Scorecard H1 2026: Winners and Losers.

as of table 11×9read in context →
Five-name baskets per sector: members up vs down, median, best and worst, H1 2026 — 11 rows by 9 columns, computed from US exchange, SIP and OPRA data.
sectormembersmembers_upmembers_downmedian_member_pctbest_memberbest_member_pctworst_memberworst_member_pct
health care (XLV)55021.7UNH25.5ABBV9.9
real estate (XLRE)54121.3EQIX36.1AMT-6.7
materials (XLB)55019.5LIN21.7SHW6.4
industrials (XLI)55017.5CAT84.3RTX3.4
energy (XLE)55013.6EOG23.5CVX9
utilities (XLU)5419.1AEP18.5CEG-30.6
technology (XLK)5325.2AVGO6.9ORCL-25.7
financials (XLF)5413.5MS17.1WFC-11.4
consumer staples (XLP)5412.4KO16.3PEP-5.5
consumer discretionary (XLY)523-8.2AMZN3NKE-35.9
communication services (XLC)514-15.2GOOGL12.7NFLX-24.2
Rows × columns
11 × 9
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 Five-name baskets per sector: members up vs down, median, best and worst, H1 2026, derived from the stored result.
ColumnTypeRangeNotes
sector text 11 distinct values
members number every row is 5
members_up number 1 to 5
members_down number 0 to 4
median_member_pct number -15.2 to 21.7 percent
best_member text 11 distinct values (AEP, AMZN, AVGO…)
best_member_pct number 3 to 84.3 percent
worst_member text 11 distinct values (ABBV, AMT, CEG…)
worst_member_pct number -35.9 to 9.9 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 sector,
       count() AS members,
       countIf(ret_pct > 0) AS members_up,
       countIf(ret_pct <= 0) AS members_down,
       round(quantileDeterministic(0.5)(ret_pct, cityHash64(ticker)), 1) AS median_member_pct,
       argMax(ticker, (ret_pct, ticker)) AS best_member,
       round(max(ret_pct), 1) AS best_member_pct,
       argMin(ticker, (ret_pct, ticker)) AS worst_member,
       round(min(ret_pct), 1) AS worst_member_pct
FROM (
    SELECT ticker,
           multiIf(ticker IN ('AAPL','MSFT','NVDA','AVGO','ORCL'), 'technology (XLK)',
                   ticker IN ('META','GOOGL','NFLX','DIS','TMUS'), 'communication services (XLC)',
                   ticker IN ('XOM','CVX','COP','EOG','SLB'), 'energy (XLE)',
                   ticker IN ('JPM','BAC','WFC','GS','MS'), 'financials (XLF)',
                   ticker IN ('GE','CAT','RTX','UNP','UPS'), 'industrials (XLI)',
                   ticker IN ('LLY','UNH','JNJ','ABBV','MRK'), 'health care (XLV)',
                   ticker IN ('AMZN','TSLA','HD','MCD','NKE'), 'consumer discretionary (XLY)',
                   ticker IN ('PG','COST','WMT','KO','PEP'), 'consumer staples (XLP)',
                   ticker IN ('NEE','SO','DUK','CEG','AEP'), 'utilities (XLU)',
                   ticker IN ('PLD','AMT','EQIX','WELL','SPG'), 'real estate (XLRE)',
                   'materials (XLB)') AS sector,
           (argMaxIf(toFloat64(close), window_start, (toHour(toTimeZone(window_start, 'America/New_York')) * 60 + toMinute(toTimeZone(window_start, 'America/New_York'))) BETWEEN 570 AND 959)
            / argMinIf(toFloat64(open), window_start, (toHour(toTimeZone(window_start, 'America/New_York')) * 60 + toMinute(toTimeZone(window_start, 'America/New_York'))) BETWEEN 570 AND 959) - 1) * 100 AS ret_pct
    FROM global_markets.delayed_stocks_minute_aggs
    WHERE ticker IN ('AAPL','MSFT','NVDA','AVGO','ORCL','META','GOOGL','NFLX','DIS','TMUS','XOM','CVX','COP','EOG','SLB','JPM','BAC','WFC','GS','MS','GE','CAT','RTX','UNP','UPS','LLY','UNH','JNJ','ABBV','MRK','AMZN','TSLA','HD','MCD','NKE','PG','COST','WMT','KO','PEP','NEE','SO','DUK','CEG','AEP','PLD','AMT','EQIX','WELL','SPG','LIN','SHW','APD','FCX','ECL')
      AND window_start >= toDateTime('2026-01-01 00:00:00') AND window_start < toDateTime('2026-07-01 00:00:00')
    GROUP BY ticker
)
GROUP BY sector
ORDER BY median_member_pct DESC, sector

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 analysisSector Scorecard H1 2026: Winners and Losers
The eleven sector ETFs: H1 2026 return, Q1 and Q2 split, and H1 dollar volume table 11×5 Eight heavily traded chip and memory names: H1 return, quarter split, H1 dollar volume table 8×5 XLE, XLF, and XLK by month: the H1 2026 rotation at month grain series 18×3 Median quoted spread by sector ETF, one representative session (June 29, 2026), regular hours ranking 11×4 Sector ETF dollar volume, Q1 vs Q2 2026: every fund traded less in the recovery quarter ranking 11×4 Growth of $100 in the 1x SOXX vs the 3x SOXL, Jan 2 to Jul 13 2026 series 131×3 See all 2,170 queries →