Symbols
FreeValueStandardPro
List all available stock ticker symbols.
A symbol can be defined as a unique identifier for a stock / underlying asset. Common terms also include: root, ticker, and underlying. This endpoint returns all traded symbols for stocks. This endpoint is updated overnight.
from thetadatadx import Client
client = Client.from_env()
rows = client.market_data.stock_list_symbols()
for t in rows:
print(t)Parameters
| Name | Type | Required | Default | Description |
|---|---|---|---|---|
timeout_ms | int | no | — | Per-request deadline in milliseconds. 0 means no deadline. |
Response
A list of strings — one symbol value per row.