Skip to content

stock_list_symbols

List all available stock ticker symbols.

FreeValueStandardPro

Code Example

rust
let symbols: Vec<String> = tdx.stock_list_symbols().await?;
println!("{} symbols available", symbols.len());
python
symbols = tdx.stock_list_symbols()
print(f"{len(symbols)} symbols available")
go
symbols, err := client.StockListSymbols()
if err != nil {
    log.Fatal(err)
}
fmt.Printf("%d symbols available\n", len(symbols))
cpp
auto symbols = client.stock_list_symbols();
std::cout << symbols.size() << " symbols available" << std::endl;

Parameters

None.

Response

List of ticker symbol strings (e.g. "AAPL", "MSFT", "GOOGL").

Notes

  • Returns all symbols for which ThetaData has any historical stock data.
  • The list may include delisted symbols with historical data still available.

Released under the GPL-3.0-or-later License.