python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Multiple websocket streams with asyncio in Python
Can anyone please help with asyncio?
I'm using it to connect to Binance websockets.
The example below is for one API key. I need to receive messages for several API keys.
Question: is it possible to d...
Yurii Kryvoborodov
Votes: 0
Answers: 1
can't resolve getaddrinfo EAI_AGAIN error
I'm having this error after 20 min of running my NodeJS app, and it's keeps appearing after that.. it's hosted at AWS (EC2) I searched for getaddrinfo EAI_AGAIN errors, it's probably caused by DNS iss...
ALAEDDIN
Votes: 0
Answers: 1
Binance python API - ValueError: Length mismatch: Expected axis has 0 elements, new values have 5 elements
I'm trying to get the daily data from all BUSD and USDT pairs from Binance over the past 2 years.
I have created 2 lists of BUSD and USDT pairs like this:
busd_list = ["BTCBUSD","ETHBUS...

Vince Dfr
Votes: 0
Answers: 0
from ccxt how can I get amount of coins I have?
import ccxt
binance = ccxt.binance(config={
'apiKey': '...',
'secret': '...',
'enableRateLimit': True,
'options': {
'defaultType': 'future',
}
})
print(binance.fetch_bala...
심현규
Votes: 0
Answers: 2