STRASMORE/EXPLORE 2,173 QUERIES 22Y EQUITIES · 12Y OPTIONS

2,173 answered market questions

every one with its exact SQL, its result and the date it was computed · free, no signup

Japanese IPO Lockups: The 1.5x Release Rule
One US listing traced against a flat line at 1.5x its offer priceseries · 2026-08-07 · 82×3Preview: a 16-point series, roughly flat. Share of US listings trading at 1.5x their offer price, by day since listingranking · 2026-08-07 · 19×2Preview: 16 ranked values, smallest first. US listings clearing 1.5x the offer price on the first close, by listing yearranking · 2026-08-07 · 8×4Preview: 8 ranked values, smallest first.
One US listing traced against a flat line at 1.5x its offer price

One US listing traced against a flat line at 1.5x its offer price

most recentas of series 82×3read in context →
One US listing traced against a flat line at 1.5x its offer price — 82 rows by 3 columns, computed from US exchange, SIP and OPRA data.
dateclose_usdtrigger_1_5x
2024-03-2150.4451
2024-03-224651
2024-03-2559.851
2024-03-2665.1151
2024-03-2757.7551
2024-03-2849.3251
2024-04-0145.9751
2024-04-0250.4551
2024-04-0346.9951
2024-04-0445.7851
2024-04-0547.5651
2024-04-0846.1551
2024-04-094551
2024-04-1042.0951
2024-04-1144.5351
2024-04-1242.2751
2024-04-154051
2024-04-1641.1451
2024-04-1739.1751
2024-04-1841.7251
2024-04-1940.8851
2024-04-2242.0451
2024-04-2342.8251
2024-04-2443.1551
2024-04-2542.4551
2024-04-2645.4351
2024-04-2946.2851
2024-04-3044.4451
2024-05-0145.8851
2024-05-0247.751
2024-05-0346.6451
2024-05-0648.2751
2024-05-0749.451
2024-05-0851.451
2024-05-0950.1151
2024-05-1053.5351
2024-05-1358.1951
2024-05-1462.3451
2024-05-1559.6351
2024-05-1656.3851
2024-05-1762.0451
2024-05-2061.2251
2024-05-2159.3151
2024-05-2256.6951
2024-05-2354.1651
2024-05-2454.7251
2024-05-2858.4951
2024-05-2957.6451
2024-05-3056.351
2024-05-3154.2451
2024-06-0355.851
2024-06-0454.551
2024-06-0560.0751
2024-06-0663.4651
2024-06-0759.851
2024-06-1059.6351
2024-06-1161.5551
2024-06-1265.9351
2024-06-1363.9651
2024-06-1460.9451
2024-06-1760.3551
2024-06-1860.2151
2024-06-2057.4251
2024-06-2157.351
2024-06-2456.4851
2024-06-2561.3851
2024-06-2663.6151
2024-06-2763.5851
2024-06-2863.8951
2024-07-0166.5951
2024-07-0273.5151
2024-07-0373.6251
2024-07-0572.9751
2024-07-0872.8151
2024-07-0970.5951
2024-07-1069.451
2024-07-1170.2951
2024-07-1273.8551
2024-07-1572.9851
2024-07-1670.4451
2024-07-1765.2151
2024-07-1865.9251
the exact SQL behind every number
WITH offer AS
(
    SELECT
        min(listing_date)                 AS listed_on,
        toFloat64(max(final_issue_price)) AS offer_price
    FROM global_markets.stocks_ipos
    WHERE ticker = 'RDDT'
      AND final_issue_price > 0
)
SELECT
    toString(d.date)              AS date,
    round(toFloat64(d.close), 2)  AS close_usd,
    round(o.offer_price * 1.5, 2) AS trigger_1_5x
FROM
(
    SELECT date, close
    FROM global_markets.stocks_daily_aggs
    WHERE ticker = 'RDDT'
      AND date >= '2024-01-01'
      AND date <  '2025-01-01'
) AS d
CROSS JOIN offer AS o
WHERE d.date >= o.listed_on
  AND d.date <  o.listed_on + 120
ORDER BY d.date
$