STRASMORE/EXPLORE 2,595 QUERIES

unlock_price_path

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-25, from figma-lockup-expiration.

as of ranking 11×4read in context →
unlock_price_path — 11 rows by 4 columns, computed from US exchange, SIP and OPRA data.
session_offsetsep_2025_pctnov_2025_pctaug_2026_pct
-530.618.391.46
-428.814.763.96
-320.18-0.3713.14
-224.87-4.2817.44
-1000
00.55-3.76-2.84
1-3.83-3.395.92
2-2.27-3.263.75
3-6.41-4.31-0.92
42.57-11.799.93
5-2.73-16.26.05
Rows × columns
11 × 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 unlock_price_path, derived from the stored result.
ColumnTypeRangeNotes
session_offset number -5 to 5
sep_2025_pct number -6.41 to 30.61 percent
nov_2025_pct number -16.2 to 8.39 percent
aug_2026_pct number -2.84 to 17.44 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 bars AS
(
    SELECT
        date,
        close,
        row_number() OVER (ORDER BY date) AS seq
    FROM
    (
        SELECT
            date,
            argMax(toFloat64(close), _ingest_time) AS close
        FROM global_markets.stocks_daily_aggs
        WHERE ticker = 'FIG'
          AND date >= '2025-07-31'
        GROUP BY date
    )
),
anchors AS
(
    SELECT
        anyIf(seq, date = '2025-09-05')   AS employee_release,
        anyIf(seq, date = '2025-11-07')   AS ipo_lockup_end,
        anyIf(seq, date = '2026-08-07')   AS final_tranche,
        anyIf(close, date = '2025-09-04') AS employee_base,
        anyIf(close, date = '2025-11-06') AS ipo_base,
        anyIf(close, date = '2026-08-06') AS final_base
    FROM bars
),
offsets AS
(
    SELECT arrayJoin(range(11)) - 5 AS session_offset
)
SELECT
    o.session_offset AS session_offset,
    round(100 * (anyIf(b.close, toInt32(b.seq) = toInt32(a.employee_release) + o.session_offset) / any(a.employee_base) - 1), 2) AS sep_2025_pct,
    round(100 * (anyIf(b.close, toInt32(b.seq) = toInt32(a.ipo_lockup_end)   + o.session_offset) / any(a.ipo_base)      - 1), 2) AS nov_2025_pct,
    round(100 * (anyIf(b.close, toInt32(b.seq) = toInt32(a.final_tranche)    + o.session_offset) / any(a.final_base)    - 1), 2) AS aug_2026_pct
FROM offsets AS o
CROSS JOIN bars AS b
CROSS JOIN anchors AS a
GROUP BY session_offset
ORDER BY session_offset
⌘/Ctrl + Enter

Work with this data in your AI assistant

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

More from this analysisfigma-lockup-expiration
fig_symbol_history ranking 16×4 → unlock_ladder_volume ranking 11×4 → release_ladder ranking 5×4 → ipo_float_math ranking 3×2 → iv_into_the_final_unlock series 45×4 → Top 25 weekly-options underlyings by distinct contracts traded, with expiration weekdays ranking 25×4 → See all 2,595 queries →