Days since the period each filed share count covers
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 Market Cap and Which Share Count It Uses.
| ticker | report_age | period_covered |
|---|---|---|
| WMT | 295 | Oct 31, 2025 |
| AAPL | 238 | Dec 27, 2025 |
| PG | 234 | Dec 31, 2025 |
| XOM | 234 | Dec 31, 2025 |
| JPM | 234 | Dec 31, 2025 |
| MSFT | 234 | Dec 31, 2025 |
| NVDA | 118 | Apr 26, 2026 |
| KO | 50 | Jul 3, 2026 |
- Rows × columns
- 8 × 3
- 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 | 8 distinct values (AAPL, JPM, KO…) | |
report_age |
number | 50 to 295 | |
period_covered |
text | 5 distinct values (Apr 26, 2026, Dec 27, 2025, Dec 31, 2025…) |
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,
toUInt32(dateDiff('day', last_period, today())) AS report_age,
formatDateTime(last_period, '%b %e, %Y') AS period_covered
FROM
(
SELECT
arrayJoin(tickers) AS ticker,
max(period_end) AS last_period
FROM global_markets.stocks_income_statements
WHERE hasAny(tickers, ['AAPL', 'MSFT', 'NVDA', 'KO', 'JPM', 'XOM', 'WMT', 'PG'])
AND timeframe = 'quarterly'
AND diluted_shares_outstanding > 0
GROUP BY ticker
)
WHERE ticker IN ('AAPL', 'MSFT', 'NVDA', 'KO', 'JPM', 'XOM', 'WMT', 'PG')
ORDER BY report_age DESC
Work with this data in your AI assistant
Opens ready to query, with this page's data. Free, no account.