kucoin-python-sdk icon indicating copy to clipboard operation
kucoin-python-sdk copied to clipboard

Results 76 kucoin-python-sdk issues
Sort by recently updated
recently updated
newest added

Hi all, I am implementing a class with the possibility to start various websockets in different threads to retrieve market data/orders/balances and update class attributes with websocket inputs. **The below...

hello all, I have a problem to retrieve the average price of a market order. I retrieve the details of the order with get_order_details(orderId) but I figure out that sometimes...

Hello everyone, recently I have noticed that my websocket is not working anymore. It was working fine for 2 weeks and out of a sudden, is not working anymore. I...

When placing a margin order using the `POST /api/v1/margin/order`, the `remark` argument does not have any effect. I have found this to be true in a library I am developing,...

Can i set take profit and stop loss to my orders? is there any way?

What is this Error? ``` def close(symbol, size): order_id = trade.create_market_order( symbol=symbol, side='sell', size=size ) return order_id ``` **Error** `` AttributeError: 'function' object has no attribute 'create_limit_order' ``

While requesting large amounts of data (1 month or more at 1min candles) using the get_kline() and passing parameters pageSize and currentPage, the server returns the error 429-{"code":"429000","msg":"Too Many Requests"}...

enhancement

I am trying to create a bot in python and I am using the python-kucoin-futures library. Every time I try to use the Trade module it throws me the exception:...

hi, im using the following bit of code async def deal_msg(msg): print (msg) ws_client = await KucoinWsClient.create(None, client, deal_msg, private=True) await ws_client.subscribe('/account/balance') while True: await asyncio.sleep(5) The code just goes...

enhancement

I am using the example given here to place a market order. I need to know what parameter ( 'fund' )value I need to put to buy with all available...