STRASMORE/EXPLORE 2,170 QUERIES

The information flow in one row: volume, composition, and co-tags

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-07-26, from NVDA: NVIDIA's Full June 2026, Tick by Tick.

as of scalar 1×12read in context →
june articles
642
publishers
4
first tagged day
2026-05-31
peak day date
2026-06-01
peak day articles
45
top publisher
The Motley Fool
top publisher articles
403
top publisher pct
63
tsla co articles
69
amd co articles
101
msft co articles
169
aapl co articles
134
Rows × columns
1 × 12
Period covered
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 information flow in one row: volume, composition, and co-tags, derived from the stored result.
ColumnTypeRangeNotes
june_articles number every row is 642
publishers number every row is 4
first_tagged_day date 2026-05-31
peak_day_date date 2026-06-01
peak_day_articles number every row is 45
top_publisher text 1 distinct value (The Motley Fool)
top_publisher_articles number every row is 403
top_publisher_pct number every row is 63 percent
tsla_co_articles number every row is 69
amd_co_articles number every row is 101
msft_co_articles number every row is 169
aapl_co_articles number every row is 134

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
WITH
    (
        SELECT (toString(d), n)
        FROM (
            SELECT toDate(toTimeZone(published_utc, 'America/New_York')) AS d, count() AS n
            FROM global_markets.stocks_news
            WHERE has(tickers, 'NVDA')
              AND published_utc >= toDateTime('2026-06-01 00:00:00')
              AND published_utc < toDateTime('2026-07-01 04:00:00')
            GROUP BY d ORDER BY n DESC, d ASC LIMIT 1
        )
    ) AS peak_day,
    (
        SELECT (JSONExtractString(any(publisher), 'name'), count())
        FROM global_markets.stocks_news
        WHERE has(tickers, 'NVDA')
          AND published_utc >= toDateTime('2026-06-01 00:00:00')
          AND published_utc < toDateTime('2026-07-01 04:00:00')
        GROUP BY JSONExtractString(publisher, 'name') ORDER BY count() DESC LIMIT 1
    ) AS top_pub
SELECT
    count() AS june_articles,
    uniqExact(JSONExtractString(publisher, 'name')) AS publishers,
    toString(min(toDate(toTimeZone(published_utc, 'America/New_York')))) AS first_tagged_day,
    peak_day.1 AS peak_day_date,
    peak_day.2 AS peak_day_articles,
    top_pub.1 AS top_publisher,
    top_pub.2 AS top_publisher_articles,
    round(100.0 * top_pub.2 / count(), 0) AS top_publisher_pct,
    countIf(has(tickers, 'TSLA')) AS tsla_co_articles,
    countIf(has(tickers, 'AMD')) AS amd_co_articles,
    countIf(has(tickers, 'MSFT')) AS msft_co_articles,
    countIf(has(tickers, 'AAPL')) AS aapl_co_articles
FROM global_markets.stocks_news
WHERE has(tickers, 'NVDA')
  AND published_utc >= toDateTime('2026-06-01 00:00:00')
  AND published_utc < toDateTime('2026-07-01 04:00:00')

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 analysisNVDA: NVIDIA's Full June 2026, Tick by Tick
The whole NVDA tape in one row: prints, print sizes, and the quote census scalar 1×10 The off-exchange peak and trough, bounded (deduped per session) scalar 1×6 The mid-June short-interest print scalar 1×6 The rank receipt: NVDA's place, its lead over the next name, and the basis, as checked columns scalar 1×5 NVDA's options market in one row: totals, expiry structure, flagship contracts scalar 1×18 The month on one row: open, close, extremes, volume, and their receipts scalar 1×25 See all 2,170 queries →