The news feed on June 30: article count and the day's last headline for each name in this recap
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 Market Recap: June 30, 2026, The Day in Numbers.
| ticker | articles_today | latest_et | publisher_name | latest_headline |
|---|---|---|---|---|
| NVDA | 21 | 16:28 | Investing.com | These Stocks Could Benefit as the Robotaxi Race Heats Up |
| MU | 7 | 15:38 | Investing.com | S&P 500 Earnings Depend on AI Infrastructure Doing the Heavy Lifting |
| JEM | 1 | 04:00 | GlobeNewswire Inc. | 707 Cayman Holdings Appoints New Executive Director |
| SNDK | 1 | 15:12 | The Motley Fool | Why Sandisk Stock Is Skyrocketing Today |
| ABVX | 0 | none | no article in our feed this session | no article in our feed this session |
| CRCL | 0 | none | no article in our feed this session | no article in our feed this session |
| SOC | 0 | none | no article in our feed this session | no article in our feed this session |
- Rows × columns
- 7 × 5
- 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 | 7 distinct values (ABVX, CRCL, JEM…) | |
articles_today |
number | 0 to 21 | |
latest_et |
text | 5 distinct values (04:00, 15:12, 15:38…) | |
publisher_name |
text | 4 distinct values | |
latest_headline |
text | 5 distinct values |
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
names.n AS ticker,
countIf(has(tickers, names.n)) AS articles_today,
if(countIf(has(tickers, names.n)) = 0, 'none',
formatDateTime(toTimeZone(argMaxIf(published_utc, (published_utc, id), has(tickers, names.n)), 'America/New_York'), '%H:%i')) AS latest_et,
if(countIf(has(tickers, names.n)) = 0, 'no article in our feed this session',
JSONExtractString(argMaxIf(publisher, (published_utc, id), has(tickers, names.n)), 'name')) AS publisher_name,
if(countIf(has(tickers, names.n)) = 0, 'no article in our feed this session',
argMaxIf(title, (published_utc, id), has(tickers, names.n))) AS latest_headline
FROM global_markets.stocks_news
CROSS JOIN (SELECT arrayJoin(['NVDA', 'MU', 'SNDK', 'CRCL', 'SOC', 'ABVX', 'JEM']) AS n) AS names
WHERE published_utc >= '2026-06-30 04:00:00' AND published_utc < '2026-07-01 04:00:00'
GROUP BY names.n
ORDER BY articles_today DESC, ticker ASC
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 analysisMarket Recap: June 30, 2026, The Day in Numbers
Shares traded per 30-minute bucket, regular hours (billions)
series 13×3
→
The six busiest option contracts of June 30, by contracts traded
series 6×7
→
Q2 2026 end to end: each index ETF from the April 1 open to the June 30 close, regular hours
series 4×7
→
Volume leaders two ways: top 6 by dollars traded, top 4 by shares traded (one reused-symbol listing excluded pending entity verification)
table 10×6
→
The ten S&P sector funds on June 30: change vs Monday's close, and how far each sat behind the leader
table 10×7
→
Top 5 gainers and top 5 decliners among names with $10M+ traded on June 30 (one reused-symbol listing excluded)
table 10×8
→
See all 2,170 queries →