proxy_liquidity
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-26, from what-is-commodity-trading.
| ticker | avg_daily_turnover_musd | avg_daily_shares_m | sessions |
|---|---|---|---|
| GLD | 3506.6 | 8.9 | 82 |
| SLV | 1020.4 | 17.66 | 82 |
| USO | 788.6 | 6.09 | 82 |
| UNG | 121 | 11.35 | 82 |
| DBA | 33.8 | 1.21 | 82 |
| DBC | 28.1 | 0.95 | 82 |
| CPER | 21.3 | 0.54 | 82 |
| CORN | 7.6 | 0.41 | 82 |
- Rows × columns
- 8 × 4
- 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 (CORN, CPER, DBA…) | |
avg_daily_turnover_musd |
number | 7.6 to 3,506.6 | |
avg_daily_shares_m |
number | 0.41 to 17.66 | count |
sessions |
number | every row is 82 |
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,
round(avg(toFloat64(close) * toFloat64(volume)) / 1000000, 1) AS avg_daily_turnover_musd,
round(avg(toFloat64(volume)) / 1000000, 2) AS avg_daily_shares_m,
count() AS sessions
FROM global_markets.stocks_daily_aggs
WHERE ticker IN ('USO', 'UNG', 'GLD', 'SLV', 'CPER', 'DBA', 'DBC', 'CORN')
AND date >= today() - 120
AND date < today() - 1
GROUP BY ticker
HAVING sessions >= 40
ORDER BY avg_daily_turnover_musd DESC
Use dis data for your AI assistant
E go open ready to query, with dis page data. Free, no account.