Skip to content

list_live_instruments


function backtide.live.list_live_instruments(provider, limit=10000)

List the spot instruments available from a live WebSocket provider.

Parameters

provider : str | Provider

Live provider whose complete spot catalog should be returned. Yahoo Finance is rejected because it has no supported live WebSocket.

limit : int, default=10000
Maximum number of instruments to return.

Returns

list[Instrument]

Canonical symbols and metadata reported by the selected provider.


Example

>>> from backtide.live import list_live_instruments

>>> instruments = list_live_instruments("kraken", limit=100)
>>> print(instruments[0].symbol)

SN75-USD