STRASMORE/EXPLORE 2,648 QUERIES

paires_quotidiennes

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-the-skew-stickiness-ratio.

as of series 61×3read in context →
paires_quotidiennes — 61 rows by 3 columns, computed from US exchange, SIP and OPRA data.
datespy_rendement_pctiv_atm_variation_pct
2026-04-020.09-0.38
2026-04-060.470
2026-04-070.04-1.05
2026-04-082.55-1.71
2026-04-090.58-1.18
2026-04-10-0.07-0.66
2026-04-130.98-0.29
2026-04-141.22-0.32
2026-04-150.79-0.1
2026-04-160.25-0.11
2026-04-171.21-0.13
2026-04-20-0.20.8
2026-04-21-0.650.73
2026-04-221.01-0.63
2026-04-23-0.390.31
2026-04-240.77-0.24
2026-04-270.17-0.23
2026-04-28-0.49-0.06
2026-04-29-0.02-0.03
2026-04-300.99-0.91
2026-05-010.280.12
2026-05-04-0.370.94
2026-05-050.8-1.02
2026-05-061.390.51
2026-05-07-0.31-0.38
2026-05-080.83-0.08
2026-05-110.231.05
2026-05-12-0.15-0.14
2026-05-130.56-0.25
2026-05-140.79-0.21
2026-05-15-1.20.49
2026-05-18-0.07-0.35
2026-05-19-0.670.27
2026-05-201.02-0.23
2026-05-210.2-1.27
2026-05-220.390.46
2026-05-260.66-0.23
2026-05-27-0.02-0.31
2026-05-280.55-0.59
2026-05-290.25-0.3
2026-06-010.270.49
2026-06-020.14-0.37
2026-06-03-0.70.87
2026-06-040.38-0.72
2026-06-05-2.583.73
2026-06-080.23-1.26
2026-06-09-0.290.87
2026-06-10-1.582.41
2026-06-111.7-2.18
2026-06-120.54-1.76
2026-06-151.76-1.6
2026-06-16-0.60.19
2026-06-17-1.251.27
2026-06-180.78-0.92
2026-06-22-0.311.07
2026-06-23-1.451.51
2026-06-24-0.05-0.4
2026-06-250.140.37
2026-06-26-0.72-0.5
2026-06-291.65-1.06
2026-06-300.78-1.07
Rows × columns
61 × 3
Period covered
to
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 paires_quotidiennes, derived from the stored result.
ColumnTypeRangeNotes
date date 2026-04-02 to 2026-06-30
spy_rendement_pct number -2.58 to 2.55 percent
iv_atm_variation_pct number -2.18 to 3.73 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.

WITH iv_atm AS (
    SELECT
        date,
        avg(toFloat64(implied_volatility)) * 100 AS iv_pct
    FROM global_markets.options_greeks
    WHERE underlying_symbol = 'SPY'
      AND date BETWEEN '2026-04-01' AND '2026-06-30'
      AND iv_converged = 1
      AND volume > 0
      AND days_to_expiry BETWEEN 20 AND 45
      AND abs(toFloat64(strike_price) / toFloat64(underlying_close) - 1) < 0.02
    GROUP BY date
),
spot AS (
    SELECT
        date,
        toFloat64(close) AS px
    FROM global_markets.stocks_daily_aggs
    WHERE ticker = 'SPY'
      AND date BETWEEN '2026-04-01' AND '2026-06-30'
),
apparie AS (
    SELECT
        i.date   AS d,
        i.iv_pct AS iv,
        s.px     AS px,
        any(i.iv_pct) OVER (ORDER BY i.date ROWS BETWEEN 1 PRECEDING AND 1 PRECEDING) AS iv_prec,
        any(s.px)     OVER (ORDER BY i.date ROWS BETWEEN 1 PRECEDING AND 1 PRECEDING) AS px_prec
    FROM iv_atm AS i
    INNER JOIN spot AS s ON s.date = i.date
)
SELECT
    toString(d)                        AS date,
    round((px / px_prec - 1) * 100, 2) AS spy_rendement_pct,
    round(iv - iv_prec, 2)             AS iv_atm_variation_pct
FROM apparie
WHERE px_prec > 0
ORDER BY d
⌘/Ctrl + Enter

Work with this data in your AI assistant

Opens ready to query, with this page's data. Free, no account.