Skip to content

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.

rust
pub fn stock_list_symbols(&self) -> StockListSymbolsBuilder<'_>

Execute with .awaitResult<Vec<String>, Error>.

Example

rust
let rows = tdx.stock_list_symbols().await?;
for value in &rows {
    println!("{value}");
}

Parameters

NameTypeRequiredDefaultDescription
timeout_msintnoPer-request deadline in milliseconds. 0 means no deadline.

Response

A list of strings — one symbol value per row.

Released under the Apache-2.0 License.