Subscribing to all ByBit trade streams in Python

from pybit.unified_trading import WebSocket
from pybit.unified_trading import HTTP
from time import sleep

session = HTTP(testnet=False)

info = session.get_instruments_info(category="spot")

symbol_infos = info["result"]["list"]

websockets = []

def handle_message(message):
    print(message)

def subscribe(websockets, symbols):
    print(f'Subscribing to {symbols}')
    ws = WebSocket(
        testnet=False,
        channel_type="spot",
    )
    ws.trade_stream(symbol=symbols, callback=handle_message)
    websockets += [ws]
chunk_limit = 10
chunk = []

for info in symbol_infos:

    symbol = info["symbol"]

    if len(chunk) < chunk_limit:
        chunk += [symbol]
    else:
        subscribe(websockets, chunk)
        chunk = []

if len(chunk) != 0:
    subscribe(websockets, chunk)
    chunk = []

while True:
    sleep(1)

9 Responses to Subscribing to all ByBit trade streams in Python

  1. dmitriano says:

    https://doc.qt.io/qtforpython-6/tutorials/portingguide/index.html
    self.button.clicked.connect(self.magic)

    @Slot()
    def magic(self):
    self.text.setText(random.choice(self.hello))

  2. dmitriano says:

    https://docs.python.org/3/library/decimal.html
    from decimal import *
    getcontext().prec = 6
    Decimal(1) / Decimal(7)
    Decimal(‘0.142857’)
    getcontext().prec = 28
    Decimal(1) / Decimal(7)
    Decimal(‘0.1428571428571428571428571429’)

  3. dmitriano says:

    https://doc.qt.io/qtforpython-6/shiboken6/shiboken-genpyi.html
    To generate stub files for a module, run the following command:
    shiboken6-genpyi [OPTIONS]

  4. dmitriano says:

    Pandas TA – A Technical Analysis Library in Python 3
    https://github.com/twopirllc/pandas-ta
    https://pypi.org/project/ta-py/#sma

  5. dmitriano says:

    Thank you for your patience, it look like it is an issue with removed endpoint.

    “Binance Margin will remove the following SAPI interfaces at 4:00 on March 31, 2024 (UTC). Please switch to the corresponding alternative interfaces in time:”
    POST /sapi/v1/margin/isolated/transfer will be removed, please replace with POST /sapi/v1/asset/transfer universal transfer
    https://developers.binance.com/docs/margin_trading/change-log#2024-01-09

    02:01
    Could you try new API endpoint

    02:01
    GET /sapi/v1/margin/isolated/transfer will be removed, please replace it with GET /sapi/v1/margin/transfer to get total margin transfer history

    02:02
    It seems these old endpoints still active but unstable

    02:03
    This must the case, if you try new endpoints, there should be no issue. Let me now after you try

    02:05
    02:09
    Could you please send me a link to the docs on this endpoints?

    Sure let me check

    02:09
    02:10
    https://developers.binance.com/docs/wallet/asset/user-universal-transfer

    02:10
    is this a correct docs?

    Yes, for POST /sapi/v1/margin/isolated/transfer request this is the new one

    02:10
    02:11
    thanks

    You are welcome, please try and let me know if there is any issue

  6. dmitriano says:

    How to transfer USDT from spot to isolated margin BTCUSDT with POST /sapi/v1/asset/transfer

    02:31
    ?

    02:32
    what is ‘type’ value?

    Sure let me check

    02:32
    It is odd, there is no direct enum type from spot to isolated margin.
    After you transfer USDT to cross margin with type = MARGIN_MAIN
    you can transfer from cross margin to isolated margin with type= MARGIN_ISOLATEDMARGIN

    02:35
    02:37
    the second transfer will enable isolated margin pair, right?

    Yes, in the second transfer you can set asset=USDT and toSymbol=BTCUSDT

Leave a Reply

Your email address will not be published. Required fields are marked *