STRASMORE/EXPLORE 2,170 QUERIES

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.

as of ranking 9×4read in context →
The most recent 10-K on file for the same nine issuers — 9 rows by 4 columns, computed from US exchange, SIP and OPRA data.
tickerlatest_annual_reportfiled_inannual_reports_on_file
AAPL2025-10-31October1
COST2025-10-08October1
HD2026-03-18March2
JNJ2026-02-11February2
KO2026-02-20February2
MSFT2025-07-30July1
NVDA2026-02-25February2
ORCL2026-06-22June2
WMT2026-03-13March2
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
Formats
JSON · CSV · the SQL below

What each column holds

Column definitions for The most recent 10-K on file for the same nine issuers, derived from the stored result.
ColumnTypeRangeNotes
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 →