band_inside
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-24, from bulk-deals-vs-block-deals-in-india.
| ticker | sample_size | inside_band_pct |
|---|---|---|
| KO | 273 | 63.4 |
| PG | 273 | 51.3 |
| JNJ | 273 | 49.8 |
| MSFT | 273 | 36.6 |
| AAPL | 273 | 35.5 |
| WMT | 273 | 34.4 |
- Rows × columns
- 6 × 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 | 6 distinct values (AAPL, JNJ, KO…) | |
sample_size |
number | every row is 273 | |
inside_band_pct |
number | 34.4 to 63.4 | percent |
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,
count() AS sample_size,
round(100 * countIf((toFloat64(high) <= (toFloat64(vwap) * 1.01))
AND (toFloat64(low) >= (toFloat64(vwap) * 0.99))) / count(), 1) AS inside_band_pct
FROM global_markets.stocks_daily_aggs
WHERE ticker IN ('AAPL', 'MSFT', 'KO', 'PG', 'WMT', 'JNJ')
AND date >= today() - 400
AND date < today() - 2
AND vwap > 0
AND low > 0
GROUP BY ticker
ORDER BY inside_band_pct DESC
ఈ డేటాతో మీ AI అసిస్టెంట్లో పని చేయండి
ఈ పేజీ డేటాతో, క్వెరీకి సిద్ధంగా తెరుచుకుంటుంది. ఉచితం, ఖాతా అవసరం లేదు.