Stephan Akkerman
Stephan Akkerman
Try setting simplified=False, this fixed it for me.
Still relevant, using Sphinx for a Discord bot seems quite hard now as almost every function uses a decorator.
I just tested it and the error is also shown by only running the conf.py file using `extensions = "sphinx.ext.autodoc"`. I assume sphinx_autodoc_typehints depends on that, right? As when using...
Hi thanks for your kind words, I will look into your suggestion and try to implement it once I have the time for it!
@xLinuxUserx How would you like to see this? I was thinking about doing it for OCO and Limit orders and having a set variable of the % of how big...
@JerryXu09 It can be found in this repo under dependencies: https://github.com/FlorianREGAZ/Python-Tls-Client/tree/master/tls_client/dependencies. You need to manually download it and paste it into the directory that it names in the error.
Check if the file is missing from the directory. If it is, download `tls-client-arm64.so` from https://github.com/FlorianREGAZ/Python-Tls-Client/tree/master/tls_client/dependencies and it should work.
https://binance-docs.github.io/apidocs/futures/en/#liquidation-order-streams
 Websocket only it seems
Example code: ```py #!/usr/bin/env python3 import websocket def on_message(ws, msg): print(msg) def on_close(): print("closed") socket = "wss://fstream.binance.com/ws/!forceOrder@arr" ws = websocket.WebSocketApp(socket, on_message=on_message, on_close=on_close) ws.run_forever() ```