STRASMORE/EXPLORE 2,170 QUERIES

Sixteen weeks after the low: weekly lows, closes, and the running minimum

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 9, 2009: The Bottom, On the Tape.

as of ranking 16×4read in context →
Sixteen weeks after the low: weekly lows, closes, and the running minimum — 16 rows by 4 columns, computed from US exchange, SIP and OPRA data.
week_ofweek_lowweek_closelowest_low_after_mar9
2009-03-0969.3776.0969.37
2009-03-1675.4576.7169.37
2009-03-2378.3181.6269.37
2009-03-3077.9684.2569.37
2009-04-0681.5185.8269.37
2009-04-1383.6187.1169.37
2009-04-2082.7586.6569.37
2009-04-2784.7687.8769.37
2009-05-0488.3893.0469.37
2009-05-1188.1588.769.37
2009-05-1888.2689.0669.37
2009-05-2588.3292.6569.37
2009-06-0187.5394.5369.37
2009-06-0893.0495.1269.37
2009-06-1590.8391.9769.37
2009-06-2288.8591.7869.37
Rows × columns
16 × 4
Period covered
to
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 Sixteen weeks after the low: weekly lows, closes, and the running minimum, derived from the stored result.
ColumnTypeRangeNotes
week_of date 2009-03-09 to 2009-06-22
week_low number 69.37 to 93.04 US dollars
week_close number 76.09 to 95.12 US dollars
lowest_low_after_mar9 number every row is 69.37 US dollars

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 daily AS (
    SELECT
        toDate(toTimeZone(window_start, 'America/New_York')) AS et_date,
        minIf(toFloat64(low), (toHour(toTimeZone(window_start, 'America/New_York')) * 60 + toMinute(toTimeZone(window_start, 'America/New_York'))) BETWEEN 570 AND 959) AS day_low,
        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 = 'SPY'
      AND window_start >= toDateTime('2009-03-10 04:00:00') AND window_start < toDateTime('2009-06-27 00:00:00')
    GROUP BY et_date
)
SELECT
    week_of,
    week_low,
    week_close,
    round(min(week_low) OVER (), 2) AS lowest_low_after_mar9
FROM (
    SELECT
        toString(toMonday(et_date)) AS week_of,
        round(min(day_low), 2) AS week_low,
        round(argMax(day_close, et_date), 2) AS week_close
    FROM daily
    GROUP BY week_of
)
ORDER BY week_of

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 9, 2009: The Bottom, On the Tape
SPY by half-hour: March 9, 2009 regular session series 13×4 One year off the low: the crisis epicenter vs the broad market table 9×5 The turn week: SPY, Citigroup, and the 10-year yield, March 9-13 series 5×6 Four major lows: SPY forward returns at three and twelve months series 4×4 Peak to trough to round trip: the whole crisis in one row scalar 1×6 SPY on March 9, 2009: the generational low, receipted scalar 1×14 See all 2,170 queries →