binance-futures-connector-python
binance-futures-connector-python copied to clipboard
How to use a proxy with authorization? HTTPS/SOCKS?
greeting, according to latest Binance Future Api Docs, premiumIndex endpoint: GET /fapi/v1/premiumIndex does not required symbol as mandatory argument, but in the current version its mandatory. thanks
repair requirement parameters and better way to send
Does the library have a websocket function "Listing Subscriptions"?
Hi there, I've been trying to access the binance data for the long-short ratio using your python connector but despite having followed the different steps I still encounter a few...
i logging to some log in my script ``` console_out = logging.StreamHandler() log_format = logging.Formatter(fmt='%(asctime)s.%(msecs)03d : [%(levelname)s] : %(message)s',datefmt='%Y.%m.%d %H:%M:%S') console_out.setFormatter(log_format) ``` `client_wa = UMFutures()` `papers = [ ["FUTURES", 'ETHUSDT',1]...
Though reported in #15 and closed as fixed, it is in fact still not encoding the query strings properly. I'm using 3.1.1 and the final query strings is still invalid:...
Hi, I'm quite new here. I used to use "import binance.future" I saw in the doc that it changed to 'binance.um_futures'. I uninstalled package with 'pip uninstall binance-futures-connector' Then i...
while I was running the websocket example, there is all I got: ```text INFO:root:Connection with URL: wss://fstream.binance.com/ws INFO:root:Start to connect.... DEBUG:root:closing ws connection ``` It seems I didn't connect the...
I get error message even when dualSidePosition = True ``` from binance.um_futures import UMFutures key = 'abcd' secret = 'efgh' base_url = "https://testnet.binancefuture.com" um_futures_client = UMFutures(key=key, secret=secret, base_url=base_url) dualSidePosition =...