STRASMORE/EXPLORE 2,469 QUERIES

Day-of-month and the gap between consecutive settlement dates: the twice-monthly cadence

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-09-20, from When Is Short Interest Released?.

as of series 16×3read in context →
Day-of-month and the gap between consecutive settlement dates: the twice-monthly cadence — 16 rows by 3 columns, computed from US exchange, SIP and OPRA data.
settlement_dateday_of_monthdays_since_prior
2026-01-151515
2026-01-303015
2026-02-131314
2026-02-272714
2026-03-131314
2026-03-313118
2026-04-151515
2026-04-303015
2026-05-151515
2026-05-292914
2026-06-151517
2026-06-303015
2026-07-151515
2026-07-313116
2026-08-141414
2026-08-313117
Rows × columns
16 × 3
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 Day-of-month and the gap between consecutive settlement dates: the twice-monthly cadence, derived from the stored result.
ColumnTypeRangeNotes
settlement_date date 2026-01-15 to 2026-08-31
day_of_month number 13 to 31
days_since_prior number 14 to 18

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.

Run it yourself

This is the exact query behind the result above. Change a ticker, a date or a column and run it against the warehouse — no account, no key. The no-signup tier is smaller than the one this page was computed on; a query that reaches past it comes back saying which plan runs it.

SELECT settlement_date,
       toDayOfMonth(settlement_date) AS day_of_month,
       dateDiff('day', prior, settlement_date) AS days_since_prior
FROM (
    SELECT settlement_date,
           lagInFrame(settlement_date) OVER (ORDER BY settlement_date) AS prior
    FROM (
        SELECT DISTINCT settlement_date
        FROM global_markets.stocks_short_interest
        ORDER BY settlement_date DESC
        LIMIT 17
    )
    ORDER BY settlement_date
)
WHERE prior > toDate('2000-01-01')
ORDER BY settlement_date
⌘/Ctrl + Enter
More from this analysisWhen Is Short Interest Released?
The short interest release schedule: recent FINRA settlement dates and names reported series 16×2 Measured publication lag: settlement date vs the day the file first arrived here series 12×3 The publication lag in one row: fastest, median and slowest across incrementally-delivered settlements scalar 1×4 The current state of the release cycle: the newest print on file and the settlement still pending scalar 1×6 Every incrementally-delivered settlement: measured on one date, on file days later series 12×3 GME, winter 2020-21: each short interest print and the price move before it went public (as-traded prices) table 6×5 See all 2,469 queries →