STRASMORE/EXPLORE 2,170 QUERIES

How long institutional managers take to file a 13F after quarter end

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 What Is Form N-PORT? Fund Holdings Filing.

as of series 12×4read in context →
How long institutional managers take to file a 13F after quarter end — 12 rows by 4 columns, computed from US exchange, SIP and OPRA data.
quarter_end_dateavg_days_to_fileslowest_daysfiled_by_day_45_pct
2023-06-303739894.9
2023-09-3037.439594.9
2023-12-3139.539693.6
2024-03-3138.439395.5
2024-06-3037.539794.9
2024-09-3036.240095.4
2024-12-3138.940094.4
2025-03-313738995.9
2025-06-3036.339995.5
2025-09-3036.632295.4
2025-12-3137.923176.7
2026-03-3134.414196.7
Rows × columns
12 × 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 How long institutional managers take to file a 13F after quarter end, derived from the stored result.
ColumnTypeRangeNotes
quarter_end_date date 2023-06-30 to 2026-03-31
avg_days_to_file number 34.4 to 39.5
slowest_days number 141 to 400
filed_by_day_45_pct number 76.7 to 96.7 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
    quarter_end_date,
    round(avg(days_to_file), 1)                           AS avg_days_to_file,
    max(days_to_file)                                     AS slowest_days,
    round(100 * countIf(days_to_file <= 45) / count(), 1) AS filed_by_day_45_pct
FROM
(
    SELECT
        accession_number,
        toString(toDate(toString(any(period))))                          AS quarter_end_date,
        dateDiff('day', toDate(toString(any(period))), any(filing_date)) AS days_to_file
    FROM global_markets.stocks_13f_filings
    WHERE form_type = '13F-HR'
      AND period >= '2023-06-30'
      AND toDate(toString(period)) <= today() - 75
    GROUP BY accession_number
)
WHERE days_to_file BETWEEN 0 AND 400
GROUP BY quarter_end_date
ORDER BY quarter_end_date

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 analysisWhat Is Form N-PORT? Fund Holdings Filing
When Q1 2026 13F reports landed, by week after quarter end ranking 13×2 Most-filed EDGAR form types over the trailing year ranking 12×3 SPY five-minute price marks across one full session series 78×2 One session, many prices: VOO in half-hour marks, Wednesday July 22, 2026 series 32×3 The first active ETF share class: DFMC weekly closes since its March 2026 listing series 20×4 How far SPY sat from its own closing print, by time of day series 13×3 See all 2,170 queries →