STRASMORE/EXPLORE 2,595 QUERIES

One near-the-money SPY put, July 6 to July 17, 2026: daily close and day-over-day move next to SPY's

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-11, from Stop Orders on Options: What Actually Triggers.

as of series 10×5read in context →
One near-the-money SPY put, July 6 to July 17, 2026: daily close and day-over-day move next to SPY's — 10 rows by 5 columns, computed from US exchange, SIP and OPRA data.
session_datecalendar_labelput_closeput_move_pctspy_move_pct
2026-07-06Jul 68.79-41.30.66
2026-07-07Jul 711.2127.5-0.6
2026-07-08Jul 812.037.3-0.11
2026-07-09Jul 98.31-30.90.82
2026-07-10Jul 106.5-21.80.45
2026-07-13Jul 139.2842.8-0.88
2026-07-14Jul 147.49-19.30.66
2026-07-15Jul 155.92-210.21
2026-07-16Jul 167.9434.1-0.74
2026-07-17Jul 1711.544.8-0.88
Rows × columns
10 × 5
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 One near-the-money SPY put, July 6 to July 17, 2026: daily close and day-over-day move next to SPY's, derived from the stored result.
ColumnTypeRangeNotes
session_date date 2026-07-06 to 2026-07-17
calendar_label text 10 distinct values (Jul 10, Jul 13, Jul 14…)
put_close number 5.92 to 12.03 US dollars
put_move_pct number -41.3 to 44.8 percent
spy_move_pct number -0.88 to 0.82 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 pick AS
(
    SELECT ticker
    FROM global_markets.options_greeks
    WHERE underlying_symbol = 'SPY'
      AND lower(toString(option_type)) IN ('put', 'p')
      AND date = toDate('2026-07-06')
      AND days_to_expiry BETWEEN 25 AND 35
      AND volume > 0
    ORDER BY abs(toFloat64(strike_price) / toFloat64(underlying_close) - 1) ASC,
             expiration_date ASC,
             ticker ASC
    LIMIT 1
),
daily AS
(
    SELECT
        date,
        max(toFloat64(option_close))     AS put_close_raw,
        max(toFloat64(underlying_close)) AS spy_close_raw
    FROM global_markets.options_greeks
    WHERE ticker IN (SELECT ticker FROM pick)
      AND date >= toDate('2026-07-02')
      AND date <  toDate('2026-07-18')
      AND volume > 0
    GROUP BY date
),
chained AS
(
    SELECT
        date,
        put_close_raw,
        spy_close_raw,
        lagInFrame(put_close_raw, 1) OVER (ORDER BY date ASC ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW) AS prev_put,
        lagInFrame(spy_close_raw, 1) OVER (ORDER BY date ASC ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW) AS prev_spy
    FROM daily
)
SELECT
    toString(date)                                                        AS session_date,
    concat(formatDateTime(date, '%b'), ' ', toString(toDayOfMonth(date))) AS calendar_label,
    round(put_close_raw, 2)                                               AS put_close,
    round(100 * (put_close_raw / prev_put - 1), 1)                        AS put_move_pct,
    round(100 * (spy_close_raw / prev_spy - 1), 2)                        AS spy_move_pct
FROM chained
WHERE prev_put > 0
  AND prev_spy > 0
  AND date >= toDate('2026-07-06')
ORDER BY date
⌘/Ctrl + Enter

Travaillez ces données dans votre assistant IA

S'ouvre prêt à interroger, avec les données de cette page. Gratuit, sans compte.

More from this analysisStop Orders on Options: What Actually Triggers
AAPL option contracts on July 15, 2026, bucketed by full-day volume ranking 5×3 → Near-the-money SPY puts (20-45 days to expiry), July 2026: size of the day-over-day close move ranking 4×3 → SPY on a calm day vs. a fast day: session range, per-minute movement, and quoted spread series 2×5 → What a 100-share market order pays crossing the spread: July 8, 2026, regular session ranking 5×4 → Displayed shares at the best ask: median size and how often it covered a 1,000-share order, July 8, 2026 ranking 5×4 → Median quoted spread by session window: pre-market vs. regular vs. after-hours, July 8, 2026 ranking 3×4 → See all 2,595 queries →