STRASMORE/EXPLORE 2,469 QUERIES

fresh_listings

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-22, from how-to-check-if-a-us-stock-is-sharia-compliant.

as of ranking 10×4read in context →
fresh_listings — 10 rows by 4 columns, computed from US exchange, SIP and OPRA data.
tickerlisted_ondays_since_listingtrading_sessions
ASBHSep 16, 202665
TLACUSep 1, 20262113
IPHXUAug 28, 20262515
RNAQUAug 27, 20262618
ADBTAug 25, 20262820
JTTTAug 25, 20262818
FBDTAug 20, 20263323
LYNXAug 19, 20263424
NSAIUAug 18, 20263523
XTERUAug 18, 20263517
Rows × columns
10 × 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 fresh_listings, derived from the stored result.
ColumnTypeRangeNotes
ticker text 10 distinct values (ADBT, ASBH, FBDT…)
listed_on text 8 distinct values (Aug 18, 2026, Aug 19, 2026, Aug 20, 2026…)
days_since_listing number 6 to 35
trading_sessions number 5 to 24

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.

SELECT
    i.ticker                                                 AS ticker,
    formatDateTime(i.first_listing_date, '%b %e, %Y')        AS listed_on,
    toUInt32(dateDiff('day', i.first_listing_date, today())) AS days_since_listing,
    toUInt32(t.sessions)                                     AS trading_sessions
FROM
(
    SELECT
        ticker,
        min(listing_date) AS first_listing_date
    FROM global_markets.stocks_ipos
    WHERE listing_date >= today() - 240
      AND listing_date <= today()
      AND ticker NOT IN ('SPCX')
      AND ticker != ''
    GROUP BY ticker
) AS i
INNER JOIN
(
    SELECT
        ticker,
        countDistinct(date) AS sessions
    FROM global_markets.stocks_daily_aggs
    WHERE date >= today() - 240
      AND ticker IN (
          SELECT ticker
          FROM global_markets.stocks_ipos
          WHERE listing_date >= today() - 240
            AND listing_date <= today()
      )
    GROUP BY ticker
) AS t ON t.ticker = i.ticker
WHERE t.sessions >= 5
ORDER BY i.first_listing_date DESC, i.ticker
LIMIT 10
⌘/Ctrl + Enter