STRASMORE/EXPLORE 2,170 QUERIES

Where standard lockup conventions land, counted from the first SPCX session

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-22, from SpaceX Lockup Expiration Date: How to Find It.

as of series 4×5read in context →
Where standard lockup conventions land, counted from the first SPCX session — 4 rows by 5 columns, computed from US exchange, SIP and OPRA data.
conventioncalendar_dayslands_onweekdaydays_from_today
90-day90Sep 10, 2026Thu19
120-day120Oct 10, 2026Sat49
180-day180Dec 9, 2026Wed109
270-day270Mar 9, 2027Tue199
Rows × columns
4 × 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 Where standard lockup conventions land, counted from the first SPCX session, derived from the stored result.
ColumnTypeRangeNotes
convention text 4 distinct values (120-day, 180-day, 270-day…)
calendar_days number 90 to 270
lands_on text 4 distinct values (Dec 9, 2026, Mar 9, 2027, Oct 10, 2026…)
weekday date Sat to Wed
days_from_today number 19 to 199

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 debut AS
(
    SELECT min(toDate(toTimeZone(window_start, 'America/New_York'))) AS d0
    FROM global_markets.delayed_stocks_minute_aggs
    WHERE ticker = 'SPCX'
      AND window_start >= '2026-06-01'
      AND (toHour(toTimeZone(window_start, 'America/New_York')) * 60
           + toMinute(toTimeZone(window_start, 'America/New_York'))) >= 570
      AND (toHour(toTimeZone(window_start, 'America/New_York')) * 60
           + toMinute(toTimeZone(window_start, 'America/New_York'))) < 960
)
SELECT
    concat(toString(n), '-day')                              AS convention,
    n                                                        AS calendar_days,
    formatDateTime((SELECT d0 FROM debut) + n, '%b %e, %Y')  AS lands_on,
    formatDateTime((SELECT d0 FROM debut) + n, '%a')         AS weekday,
    dateDiff('day', today(), (SELECT d0 FROM debut) + n)     AS days_from_today
FROM
(
    SELECT arrayJoin([90, 120, 180, 270]) AS n
)
ORDER BY n

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 analysisSpaceX Lockup Expiration Date: How to Find It
SPCX regular sessions since June 2026: closing price and share volume series 49×4 SPY volume on monthly expiration Fridays against the month's other sessions series 11×3 Calendar days against regular trading sessions since the SPCX debut series 11×3 Every year the SPCX symbol printed a regular session series 7×4 RDDT daily close and volume around its 180 day mark, Aug to Oct 2024 series 53×3 Regular-hours session scoreboard: open, close, low, high, volume for every SPCX session since listing series 47×7 See all 2,170 queries →