Symbology and instrument info
List symbols
symbols = await client.list_symbols()
for symbol in symbols:
assert_type(symbol, str)
print(symbol)Search symbols
from architect_py import TradableProduct
symbols = await client.search_symbols(
search_string="BTC",
execution_venue="BINANCE",
offset=0,
limit=20,
)
for symbol in symbols:
assert_type(symbol, TradableProduct)
print(symbol) # e.g. "BTC Crypto/USDT Crypto"Get product info
Get execution info
Get futures series
Last updated