Stock Ticker
Stock ticker symbol — the short exchange identifier for a listed security (AAPL, MSFT, BRK-B). 1-7 uppercase letters, optionally with a class-share suffix (BRK-B, BF.B). No check digit, and the shape confirms every short uppercase token (a US state code, a currency, an arbitrary code all clear it), so the published listed-symbol set is the substance (Precision Principle). US-listed for now (SEC company_tickers.json); other venues compose additively behind this same type.
Stock Ticker
finance.securities.tickerStock ticker symbol — the short exchange identifier for a listed security (AAPL, MSFT, BRK-B). 1-7 uppercase letters, optionally with a class-share suffix (BRK-B, BF.B). No check digit, and the shape confirms every short uppercase token (a US state code, a currency, an arbitrary code all clear it), so the published listed-symbol set is the substance (Precision Principle). US-listed for now (SEC company_tickers.json); other venues compose additively behind this same type.
Try it
$ finetype infer -i "AAPL" --mode column
→ finance.securities.tickerDuckDB
SELECT ft_infer('AAPL');
-- → 'finance.securities.ticker'CAST({col} AS VARCHAR)-- Normalise and cast in one step
SELECT TRY_CAST(ft_cast(my_column) AS VARCHAR) AS clean_value
FROM my_table
WHERE ft_infer(my_column) = 'finance.securities.ticker';JSON Schema
{
"$id": "https://meridian.online/schemas/finance.securities.ticker",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "Stock ticker symbol — the short exchange identifier for a listed security (AAPL, MSFT, BRK-B). 1-7 uppercase letters, optionally with a class-share suffix (BRK-B, BF.B). No check digit, and the shape confirms every short uppercase token (a US state code, a currency, an arbitrary code all clear it), so the published listed-symbol set is the substance (Precision Principle). US-listed for now (SEC company_tickers.json); other venues compose additively behind this same type.",
"examples": [
"AAPL",
"MSFT",
"NVDA",
"BRK-B",
"TSLA"
],
"pattern": "^[A-Z]{1,7}([./-][A-Z]{1,4})?$",
"title": "Stock Ticker",
"type": "string",
"x-finetype-label": "finance.securities.ticker",
"x-finetype-pii": false
}Examples
AAPLMSFTNVDABRK-BTSLA