Where nine familiar issuers close their reported periods
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 | periods_close_in | distinct_months | closes_on_file | latest_close |
|---|---|---|---|---|
| AAPL | Mar, Jun, Jul, Sep, Dec | 5 | 11 | 2025-12-27 |
| COST | Feb, May, Aug, Sep, Nov | 5 | 12 | 2026-05-10 |
| HD | Jan, Feb, Apr, May, Jul, Aug, Oct, Nov | 8 | 11 | 2026-05-03 |
| JNJ | Mar, Jun, Jul, Sep, Oct, Dec | 6 | 11 | 2025-12-28 |
| KO | Mar, Jun, Sep, Dec | 4 | 10 | 2025-12-31 |
| MSFT | Mar, Jun, Sep, Dec | 4 | 10 | 2025-12-31 |
| NVDA | Jan, Apr, Jul, Oct | 4 | 12 | 2026-04-26 |
| ORCL | Feb, May, Aug, Nov | 4 | 12 | 2026-05-31 |
| WMT | Jan, Apr, Jul, Oct | 4 | 10 | 2025-10-31 |
- Rows × columns
- 9 × 5
- 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…) | |
periods_close_in |
text | 7 distinct values | |
distinct_months |
number | 4 to 8 | |
closes_on_file |
number | 10 to 12 | |
latest_close |
date | 2025-10-31 to 2026-05-31 |
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
ticker,
arrayStringConcat(
arrayMap(m -> ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'][m],
arraySort(groupUniqArray(toMonth(period_end)))),
', ') AS periods_close_in,
uniqExact(toMonth(period_end)) AS distinct_months,
uniqExact(period_end) AS closes_on_file,
toString(max(period_end)) AS latest_close
FROM
(
SELECT
arrayJoin(tickers) AS ticker,
period_end
FROM global_markets.stocks_income_statements
WHERE period_end >= toDate('2023-07-01')
AND period_end < toDate('2026-07-01')
)
WHERE ticker IN ('AAPL', 'COST', 'HD', 'JNJ', 'KO', 'MSFT', 'NVDA', 'ORCL', 'WMT')
GROUP BY ticker
ORDER BY ticker