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-09-20, from SpaceX Lockup Expiration Date: How to Find It.
| convention | calendar_days | lands_on | weekday | days_from_today |
|---|---|---|---|---|
| 90-day | 90 | Sep 10, 2026 | Thu | -10 |
| 120-day | 120 | Oct 10, 2026 | Sat | 20 |
| 180-day | 180 | Dec 9, 2026 | Wed | 80 |
| 270-day | 270 | Mar 9, 2027 | Tue | 170 |
- Rows × columns
- 4 × 5
- Computed
- Completeness
- No missing values
- Source
- US exchange, SIP and OPRA market data
- Licence
- Strasmore terms · free, no signup
What each column holds
| Column | Type | Range | Notes |
|---|---|---|---|
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 |
text | 4 distinct values (Sat, Thu, Tue…) | |
days_from_today |
number | -10 to 170 |
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 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