STRASMORE/EXPLORE 2,648 QUERIES

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.

as of ranking 8×4read in context →
proxy_liquidity — 8 rows by 4 columns, computed from US exchange, SIP and OPRA data.
tickeravg_daily_turnover_musdavg_daily_shares_msessions
GLD3506.68.982
SLV1020.417.6682
USO788.66.0982
UNG12111.3582
DBA33.81.2182
DBC28.10.9582
CPER21.30.5482
CORN7.60.4182
Rows × columns
8 × 4
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 proxy_liquidity, derived from the stored result.
ColumnTypeRangeNotes
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
⌘/Ctrl + Enter

Use dis data for your AI assistant

E go open ready to query, with dis page data. Free, no account.