Skip to content

v0.6.0-pre-alpha

Compare
Choose a tag to compare
@Zatura Zatura released this 06 May 00:34
· 1 commit to main since this release

New iterators!

you can now iterate trough all the symbols from an exchange

from symbols import bitfinex
for symbol in bitfinex:
    print(symbol.name)
    print(symbol.min_order_size)
    print(symbol.has_margin)