STRASMORE/EXPLORE 2,648 QUERIES

When each symbol last printed a daily bar

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-09-20, from Why Ticker Symbols Break Your Dataset.

as of ranking 6×3read in context →
When each symbol last printed a daily bar — 6 rows by 3 columns, computed from US exchange, SIP and OPRA data.
tickerlast_print_labeldays_since_last_print
TWTROct 27, 20221424
ABMDDec 21, 20221369
ATVIOct 12, 20231074
VMWNov 21, 20231034
SGENDec 13, 20231012
AAPLSep 18, 20262
Rows × columns
6 × 3
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 When each symbol last printed a daily bar, derived from the stored result.
ColumnTypeRangeNotes
ticker text 6 distinct values (AAPL, ABMD, ATVI…)
last_print_label text 6 distinct values (Dec 13, 2023, Dec 21, 2022, Nov 21, 2023…)
days_since_last_print number 2 to 1,424

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,
    formatDateTime(max(date), '%b %e, %Y') AS last_print_label,
    dateDiff('day', max(date), today())    AS days_since_last_print
FROM global_markets.stocks_daily_aggs
WHERE ticker IN ('ABMD', 'TWTR', 'ATVI', 'VMW', 'SGEN', 'AAPL')
  AND date >= '2014-01-01'
GROUP BY ticker
ORDER BY days_since_last_print DESC
⌘/Ctrl + Enter

Work with this data in your AI assistant

Opens ready to query, with this page's data. Free, no account.

More from this analysisWhy Ticker Symbols Break Your Dataset
Trading sessions per year under FB and META ranking 15×3 → New listings landing on a symbol that already had history ranking 11×3 → Which share-class spellings actually carry history ranking 4×4 → Options volume by time left to expiry, AAPL, April to June 2026 ranking 5×2 → KO quarterly dividend in cents and as a percent of the share price, 2016 to 2026 series 42×4 → How many of the 390 session minutes each US symbol traded in ranking 10×2 → See all 2,648 queries →