STRASMORE/EXPLORE 2,170 QUERIES

Sector ETFs, July 27 close vs July 24 close, ranked

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-01, from Market Recap: July 27, 2026, The Day in Numbers.

as of ranking 11×3read in context →
Sector ETFs, July 27 close vs July 24 close, ranked — 11 rows by 3 columns, computed from US exchange, SIP and OPRA data.
sectorday_pctpoints_behind_best
Staples1.50
Consumer Discretionary1.330.17
Communications1.280.22
Financials1.030.47
Health Care0.540.96
Industrials0.321.18
Materials0.291.21
Real Estate-0.371.87
Technology-0.892.39
Utilities-1.332.83
Energy-2.063.56
Rows × columns
11 × 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 Sector ETFs, July 27 close vs July 24 close, ranked, derived from the stored result.
ColumnTypeRangeNotes
sector text 11 distinct values
day_pct number -2.06 to 1.5 percent
points_behind_best number 0 to 3.56

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, day_pct, round(max(day_pct) OVER () - day_pct, 2) AS points_behind_best
FROM (
    SELECT multiIf(ticker = 'XLK', 'Technology', ticker = 'XLC', 'Communications', ticker = 'XLE', 'Energy',
                   ticker = 'XLF', 'Financials', ticker = 'XLI', 'Industrials', ticker = 'XLB', 'Materials',
                   ticker = 'XLP', 'Staples', ticker = 'XLRE', 'Real Estate', ticker = 'XLU', 'Utilities',
                   ticker = 'XLV', 'Health Care', 'Consumer Discretionary') AS sector,
           round((c27 / c24 - 1) * 100, 2) AS day_pct
    FROM (
        SELECT ticker,
               argMaxIf(toFloat64(close), window_start, window_start < '2026-07-27 00:00:00') AS c24,
               argMaxIf(toFloat64(close), window_start, window_start >= '2026-07-27 00:00:00') AS c27
        FROM global_markets.delayed_stocks_minute_aggs
        WHERE ticker IN ('XLB', 'XLC', 'XLE', 'XLF', 'XLI', 'XLK', 'XLP', 'XLRE', 'XLU', 'XLV', 'XLY')
          AND ((window_start >= '2026-07-24 13:30:00' AND window_start < '2026-07-24 20:00:00')
            OR (window_start >= '2026-07-27 13:30:00' AND window_start < '2026-07-27 20:00:00'))
        GROUP BY ticker
        HAVING c24 > 0 AND c27 > 0
    )
)
ORDER BY day_pct DESC

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 analysisMarket Recap: July 27, 2026, The Day in Numbers
Biggest gainers and decliners: July 27 close vs July 24 close, $5M+ traded, splits excluded ranking 16×4 Top 6 by dollars traded, top 4 by shares traded: July 27 regular hours table 10×5 Eight mega-caps: change vs July 24 and regular-hours dollars, July 27 table 8×5 Seven names: RTH median quoted spread in basis points, with quote-quality counts, July 27 table 7×5 Treasury curve prints on file, July 22 through July 27 series 4×5 SPY / QQQ / DIA / IWM: July 27 vs the July 24 close, regular hours table 4×10 See all 2,170 queries →