STRASMORE/EXPLORE 2,500 QUERIES

overnight_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-23, from us-stock-market-hours-beijing-time.

as of ranking 6×4read in context →
overnight_liquidity — 6 rows by 4 columns, computed from US exchange, SIP and OPRA data.
symbolpremarket_pctafterhours_pctextended_pct
SPY2.0713.0615.14
NVDA5.882.688.55
AAPL2.072.654.72
TSLA2.161.633.79
MSFT2.521.273.79
KO1.040.941.98
Rows × columns
6 × 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 overnight_liquidity, derived from the stored result.
ColumnTypeRangeNotes
symbol text 6 distinct values (AAPL, KO, MSFT…)
premarket_pct number 1.04 to 5.88 percent
afterhours_pct number 0.94 to 13.06 percent
extended_pct number 1.98 to 15.14 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
    symbol,
    round(100 * sumIf(volume, et_minute <  570) / sum(volume), 2)                   AS premarket_pct,
    round(100 * sumIf(volume, et_minute >  960) / sum(volume), 2)                   AS afterhours_pct,
    round(100 * sumIf(volume, et_minute < 570 OR et_minute > 960) / sum(volume), 2) AS extended_pct
FROM
(
    SELECT
        ticker AS symbol,
        toHour(toTimeZone(window_start, 'America/New_York')) * 60
            + toMinute(toTimeZone(window_start, 'America/New_York')) AS et_minute,
        volume
    FROM global_markets.delayed_stocks_minute_aggs
    WHERE ticker IN ('SPY', 'AAPL', 'MSFT', 'NVDA', 'TSLA', 'KO')
      AND window_start >= toDateTime('2026-09-14 08:00:00', 'UTC')
      AND window_start <  toDateTime('2026-09-19 00:00:00', 'UTC')
)
GROUP BY symbol
ORDER BY extended_pct DESC
⌘/Ctrl + Enter

在你的 AI 助手中使用这些数据

打开即可查询,已带上本页数据。免费,无需账号。