LEH month-end closes, January 2007 to the September 2008 filing
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 Lehman's Collapse: The 2008 Tape, Replayed.
| month | month_close | vs_best_month_close_pct |
|---|---|---|
| 2007-01 | 82.17 | 0 |
| 2007-02 | 73.32 | -10.8 |
| 2007-03 | 70 | -14.8 |
| 2007-04 | 75.19 | -8.5 |
| 2007-05 | 73.37 | -10.7 |
| 2007-06 | 74.48 | -9.4 |
| 2007-07 | 61.85 | -24.7 |
| 2007-08 | 54.72 | -33.4 |
| 2007-09 | 61.73 | -24.9 |
| 2007-10 | 63.37 | -22.9 |
| 2007-11 | 62.64 | -23.8 |
| 2007-12 | 65.41 | -20.4 |
| 2008-01 | 64.01 | -22.1 |
| 2008-02 | 51 | -37.9 |
| 2008-03 | 37.48 | -54.4 |
| 2008-04 | 44.27 | -46.1 |
| 2008-05 | 36.72 | -55.3 |
| 2008-06 | 19.67 | -76.1 |
| 2008-07 | 17.03 | -79.3 |
| 2008-08 | 15.85 | -80.7 |
| 2008-09 | 0.14 | -99.8 |
- Rows × columns
- 21 × 3
- Period covered
- to
- 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 |
|---|---|---|---|
month |
date | 2007-01 to 2008-09 | |
month_close |
number | 0.14 to 82.17 | US dollars |
vs_best_month_close_pct |
number | -99.8 to 0 | 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
WITH monthly AS (
SELECT
formatDateTime(month_start, '%Y-%m') AS month,
round(argMax(day_close, et_date), 2) AS month_close
FROM (
SELECT
toDate(toTimeZone(window_start, 'America/New_York')) AS et_date,
toStartOfMonth(toDate(toTimeZone(window_start, 'America/New_York'))) AS month_start,
argMaxIf(toFloat64(close), window_start, (toHour(toTimeZone(window_start, 'America/New_York')) * 60 + toMinute(toTimeZone(window_start, 'America/New_York'))) BETWEEN 570 AND 959) AS day_close
FROM global_markets.delayed_stocks_minute_aggs
WHERE ticker = 'LEH'
AND window_start >= toDateTime('2007-01-01 00:00:00') AND window_start < toDateTime('2008-09-18 00:00:00')
GROUP BY et_date, month_start
)
GROUP BY month_start
)
SELECT
month,
month_close,
round((month_close / max(month_close) OVER () - 1) * 100, 1) AS vs_best_month_close_pct
FROM monthly
ORDER BY month
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 analysisLehman's Collapse: The 2008 Tape, Replayed
SPY by half-hour: September 15, 2008 regular session
series 13×4
→
The ten worst SPY sessions, 2003-2025, plus where Lehman Monday ranks
series 11×5
→
SPY closes and Treasury yields, September 15-19, 2008: the whipsaw week
series 5×6
→
The financials in Lehman week: Friday 9/12 close to Friday 9/19 close
table 6×8
→
The full bear market: SPY peak close to trough close, and the road back
scalar 1×11
→
SPY on September 15, 2008: the Lehman Monday, receipted
scalar 1×11
→
See all 2,170 queries →