March 24, 2020 across index and sector ETFs: everything up, cyclicals first
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 March 24, 2020: The Day the Market Turned.
| ticker | mar23_close | mar24_close | change_pct |
|---|---|---|---|
| XLE | 23.53 | 27.39 | 16.4 |
| XLI | 48.75 | 54.97 | 12.8 |
| XLF | 17.62 | 19.85 | 12.7 |
| DIA | 185.87 | 206.96 | 11.3 |
| XLU | 44.92 | 49.76 | 10.8 |
| XLK | 70.2 | 77.64 | 10.6 |
| XLY | 87.42 | 95.77 | 9.6 |
| SPY | 222.51 | 243.59 | 9.5 |
| IWM | 99.83 | 109.17 | 9.4 |
| QQQ | 170.61 | 183.79 | 7.7 |
| XLV | 74.8 | 80.31 | 7.4 |
| XLP | 48.66 | 51.12 | 5.1 |
- Rows × columns
- 12 × 4
- Computed
- Completeness
- No missing values
- Source
- US exchange, SIP and OPRA market data
- Licence
- Strasmore terms · free, no signup
What each column holds
| Column | Type | Range | Notes |
|---|---|---|---|
ticker |
text | 12 distinct values (DIA, IWM, QQQ…) | |
mar23_close |
number | 17.62 to 222.51 | US dollars |
mar24_close |
number | 19.85 to 243.59 | US dollars |
change_pct |
number | 5.1 to 16.4 | 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
ticker,
round(argMaxIf(toFloat64(close), window_start, (toHour(toTimeZone(window_start, 'America/New_York')) * 60 + toMinute(toTimeZone(window_start, 'America/New_York'))) BETWEEN 570 AND 959 AND toDate(toTimeZone(window_start, 'America/New_York')) = toDate('2020-03-23')), 2) AS mar23_close,
round(argMaxIf(toFloat64(close), window_start, (toHour(toTimeZone(window_start, 'America/New_York')) * 60 + toMinute(toTimeZone(window_start, 'America/New_York'))) BETWEEN 570 AND 959 AND toDate(toTimeZone(window_start, 'America/New_York')) = toDate('2020-03-24')), 2) AS mar24_close,
round((argMaxIf(toFloat64(close), window_start, (toHour(toTimeZone(window_start, 'America/New_York')) * 60 + toMinute(toTimeZone(window_start, 'America/New_York'))) BETWEEN 570 AND 959 AND toDate(toTimeZone(window_start, 'America/New_York')) = toDate('2020-03-24')) / argMaxIf(toFloat64(close), window_start, (toHour(toTimeZone(window_start, 'America/New_York')) * 60 + toMinute(toTimeZone(window_start, 'America/New_York'))) BETWEEN 570 AND 959 AND toDate(toTimeZone(window_start, 'America/New_York')) = toDate('2020-03-23')) - 1) * 100, 1) AS change_pct
FROM global_markets.delayed_stocks_minute_aggs
WHERE ticker IN ('SPY', 'DIA', 'QQQ', 'IWM', 'XLE', 'XLI', 'XLF', 'XLK', 'XLY', 'XLV', 'XLU', 'XLP')
AND window_start >= toDateTime('2020-03-23 00:00:00') AND window_start < toDateTime('2020-03-25 00:00:00')
GROUP BY ticker
ORDER BY change_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 analysisMarch 24, 2020: The Day the Market Turned
SPY daily close, drawdown, and the 10-year yield: Feb 19 to Mar 23, 2020
series 24×4
→
SPY by half-hour: March 24, 2020 regular session
series 13×4
→
SPY closes, March 23-26, 2020: the three-day burst
series 4×4
→
Did it hold? The retest that never came, and two recovery clocks
scalar 1×12
→
March 24, 2020 ranked against every SPY session on the minute tape
scalar 1×11
→
SPY on March 24, 2020: the turn, receipted
scalar 1×11
→
See all 2,170 queries →