STRASMORE/EXPLORE 2,170 QUERIES

Trade date to settlement date across real sessions, November 2025

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-22, from How Stock Settlement Works Under T+1.

as of series 11×5read in context →
Trade date to settlement date across real sessions, November 2025 — 11 rows by 5 columns, computed from US exchange, SIP and OPRA data.
trade_datetrade_day_labelsettlement_datesettlement_day_labelcalendar_days_to_settle
2025-11-20Thu Nov 202025-11-21Fri Nov 211
2025-11-21Fri Nov 212025-11-24Mon Nov 243
2025-11-24Mon Nov 242025-11-25Tue Nov 251
2025-11-25Tue Nov 252025-11-26Wed Nov 261
2025-11-26Wed Nov 262025-11-28Fri Nov 282
2025-11-28Fri Nov 282025-12-01Mon Dec 13
2025-12-01Mon Dec 12025-12-02Tue Dec 21
2025-12-02Tue Dec 22025-12-03Wed Dec 31
2025-12-03Wed Dec 32025-12-04Thu Dec 41
2025-12-04Thu Dec 42025-12-05Fri Dec 51
2025-12-05Fri Dec 52025-12-08Mon Dec 83
Rows × columns
11 × 5
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 Trade date to settlement date across real sessions, November 2025, derived from the stored result.
ColumnTypeRangeNotes
trade_date date 2025-11-20 to 2025-12-05
trade_day_label text 11 distinct values (Fri Dec 5, Fri Nov 21, Fri Nov 28…)
settlement_date date 2025-11-21 to 2025-12-08
settlement_day_label text 11 distinct values (Fri Dec 5, Fri Nov 21, Fri Nov 28…)
calendar_days_to_settle number 1 to 3

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 sessions AS
(
    SELECT DISTINCT toDate(toTimeZone(window_start, 'America/New_York')) AS session_date
    FROM global_markets.delayed_stocks_minute_aggs
    WHERE ticker = 'SPY'
      AND window_start >= '2025-11-19 00:00:00'
      AND window_start <  '2025-12-10 00:00:00'
      AND toDate(toTimeZone(window_start, 'America/New_York')) BETWEEN '2025-11-20' AND '2025-12-09'
)
SELECT
    toString(td)                            AS trade_date,
    formatDateTime(td, '%a %b %e')          AS trade_day_label,
    toString(next_td)                       AS settlement_date,
    formatDateTime(next_td, '%a %b %e')     AS settlement_day_label,
    dateDiff('day', td, next_td)            AS calendar_days_to_settle
FROM
(
    SELECT
        session_date AS td,
        leadInFrame(session_date) OVER (ORDER BY session_date ASC
            ROWS BETWEEN CURRENT ROW AND 1 FOLLOWING) AS next_td
    FROM sessions
)
WHERE next_td > td
  AND td <= '2025-12-05'
ORDER BY td

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 analysisHow Stock Settlement Works Under T+1
Microsoft dividend dates, from the T+2 era into T+1 series 13×6 Ex-dividend date to payment date, latest 2026 dividend for nine household payers series 9×4 Gap between ex-dividend date and record date, by year ranking 12×3 Regular dividends: ex-date before the record date, or on it series 43×5 Share of 2024 US dividends whose record date fell on the ex-dividend date series 12×3 Board declaration to ex-date to payment, eight household payers ranking 8×4 See all 2,170 queries →