The most recent 10-K on file for the same nine issuers
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-06, from What H1 and H2 Mean in Company Reporting.
| ticker | latest_annual_report | filed_in | annual_reports_on_file |
|---|---|---|---|
| AAPL | 2025-10-31 | October | 1 |
| COST | 2025-10-08 | October | 1 |
| HD | 2026-03-18 | March | 2 |
| JNJ | 2026-02-11 | February | 2 |
| KO | 2026-02-20 | February | 2 |
| MSFT | 2025-07-30 | July | 1 |
| NVDA | 2026-02-25 | February | 2 |
| ORCL | 2026-06-22 | June | 2 |
| WMT | 2026-03-13 | March | 2 |
- Rows × columns
- 9 × 4
- 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 |
|---|---|---|---|
ticker |
text | 9 distinct values (AAPL, COST, HD…) | |
latest_annual_report |
date | 2025-07-30 to 2026-06-22 | |
filed_in |
text | 5 distinct values (February, July, June…) | |
annual_reports_on_file |
number | 1 to 2 |
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
ticker,
toString(max(filing_date)) AS latest_annual_report,
monthName(max(filing_date)) AS filed_in,
uniqExact(accession_number) AS annual_reports_on_file
FROM
(
SELECT
leftPad(toString(cik), 10, '0') AS filer_cik,
filing_date,
accession_number
FROM global_markets.stocks_sec_edgar_index
WHERE form_type = '10-K'
AND filing_date >= toDate('2025-01-01')
AND filing_date < toDate('2026-07-01')
) AS annual
INNER JOIN
(
SELECT
ticker,
argMax(leftPad(toString(cik), 10, '0'), period_end) AS filer_cik
FROM
(
SELECT
arrayJoin(tickers) AS ticker,
cik,
period_end
FROM global_markets.stocks_income_statements
WHERE period_end >= toDate('2023-07-01')
)
WHERE ticker IN ('AAPL', 'COST', 'HD', 'JNJ', 'KO', 'MSFT', 'NVDA', 'ORCL', 'WMT')
GROUP BY ticker
) AS issuers USING (filer_cik)
GROUP BY ticker
ORDER BY ticker
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 H1 and H2 Mean in Company Reporting
Annual and interim filing forms counted over calendar H1 2026
ranking 3×3
→
Where nine familiar issuers close their reported periods
table 9×5
→
Companies filing a 10-K annual report in each month of calendar H1 2026
series 6×3
→
Where fiscal quarters actually end: statement periods by calendar month, July 2023 to June 2026
ranking 12×3
→
Share of sessions with an inverted curve: front band above the 91-180 day band, twelve months to July 31, 2026
ranking 10×4
→
NVDA: the ten largest overnight moves, July 2024 to June 2026
ranking 10×3
→
See all 2,170 queries →