Hey guys,
I’m trying to create a simple bot, i wonder if ill reach the binance limits with below stuff or not
I am creating this Websockets:
- 128 (futures symbols) Klines Web Socket Connections with 1sec sleep between each connection
each Websocket is only listening to one coin (i am not using streams)
Sample code: (its not exact code, its just a simple example)
for i in binance_symbols: # 128 times(USDT coins)
time.sleep(1) # 1 sec delay
create_ws_connection()
- 10 User Data Stream Again with 1sec sleep between each connection.
Overall websockets i want = 138 (± 5)
so my question is: if i do this, will binance disconnect my websockets and ban my ip address or not.
these are technologies/libraries im using:
Python
Websocket
Threating
ccxt (will replace with CryptoFeed)
thanks a lot