STRASMORE/EXPLORE 2,173 QUERIES

INTC markout curve, June 10 2026, measured from two reference bases

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-08-15, from Trade Markouts Explained: Execution Quality.

as of ranking 5×4read in context →
INTC markout curve, June 10 2026, measured from two reference bases — 5 rows by 4 columns, computed from US exchange, SIP and OPRA data.
horizonmid_basis_bpsfill_basis_bpsfill_count
1 sec3.068-0.488900593
5 sec2.856-0.692899654
15 sec2.778-0.778899918
1 min3.8060.249899593
5 min2.977-0.579899207
Rows × columns
5 × 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 INTC markout curve, June 10 2026, measured from two reference bases, derived from the stored result.
ColumnTypeRangeNotes
horizon text 5 distinct values (1 min, 1 sec, 15 sec…)
mid_basis_bps number 2.778 to 3.806
fill_basis_bps number -0.778 to 0.249
fill_count number 899,207 to 900,593 count

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.

the exact SQL behind every number
WITH
    mid_by_second AS
    (
        SELECT
            dateDiff('second', toDateTime('2026-06-10 13:30:00', 'UTC'), sip_timestamp) AS sec,
            argMax((toFloat64(bid_price) + toFloat64(ask_price)) / 2, sip_timestamp)    AS mid
        FROM global_markets.cache_stocks_quotes
        WHERE ticker = 'INTC'
          AND sip_timestamp >= toDateTime('2026-06-10 13:30:00', 'UTC')
          AND sip_timestamp <  toDateTime('2026-06-10 20:00:00', 'UTC')
          AND bid_price > 0
          AND ask_price > bid_price
        GROUP BY sec
    ),
    signed_fills AS
    (
        SELECT
            t.sec        AS sec,
            t.fill_price AS fill_price,
            q.mid        AS ref_mid,
            if(t.fill_price > q.mid, 1, -1) AS side
        FROM
        (
            SELECT
                dateDiff('second', toDateTime('2026-06-10 13:30:00', 'UTC'), sip_timestamp) AS sec,
                sec - 1          AS ref_sec,
                toFloat64(price) AS fill_price
            FROM global_markets.stocks_trades
            WHERE ticker = 'INTC'
              AND sip_timestamp >= toDateTime('2026-06-10 13:30:01', 'UTC')
              AND sip_timestamp <  toDateTime('2026-06-10 19:55:00', 'UTC')
              AND price > 0
              AND size > 0
        ) AS t
        INNER JOIN mid_by_second AS q ON q.sec = t.ref_sec
        WHERE t.fill_price != q.mid
    )
SELECT
    multiIf(f.horizon_s < 60,
            concat(toString(f.horizon_s), ' sec'),
            concat(toString(intDiv(f.horizon_s, 60)), ' min'))              AS horizon,
    round(avg(f.side * (fut.mid - f.ref_mid) / f.ref_mid) * 10000, 3)       AS mid_basis_bps,
    round(avg(f.side * (fut.mid - f.fill_price) / f.fill_price) * 10000, 3) AS fill_basis_bps,
    count()                                                                 AS fill_count
FROM
(
    SELECT
        sec,
        fill_price,
        ref_mid,
        side,
        horizon_s,
        sec + horizon_s AS future_sec
    FROM signed_fills
    ARRAY JOIN [1, 5, 15, 60, 300] AS horizon_s
) AS f
INNER JOIN mid_by_second AS fut ON fut.sec = f.future_sec
GROUP BY f.horizon_s
ORDER BY f.horizon_s

Run your own version of this

The same 22 years of US equities and 12 years of options data are queryable in SQL or plain English. A free account runs 100 queries a day and takes no card.

More from this analysisTrade Markouts Explained: Execution Quality
The same curve, split by print size: small fills against blocks ranking 5×4 Effective spread split into realized spread and adverse selection, by half hour series 13×5 How much of the spread survives: AAPL markout curve, 1 second to 5 minutes ranking 6×3 How far the price travels while a position waits: SPY and NVDA, May 2026 ranking 6×3 AAPL prints by distance from the midpoint: share of volume and 60 second markout ranking 4×3 AAPL fills by print size: credit at the fill and value 60 seconds later ranking 4×4 See all 2,173 queries →