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

Kucoin REST and Websocket API python implementation

Results 59 python-kucoin issues
Sort by recently updated
recently updated
newest added
trafficstars

According to the official docs ([link](https://docs.kucoin.com/#get-withdrawal-quotas)), withdrawal quotas method requires optional chain arg (especially for USDT which use TRC20 chain a lot). Added optional argument in wrapper function

https://github.com/sammchardy/python-kucoin/blob/6245e0a2a1bec59d02a5ca26917380bd9d852ce0/kucoin/client.py#L819 Need to specify the withdrawing chains

Every 5 seconds I retrieve the ticker of HNT-USDT. It seems the times returned from the request are off and also jump back and forth. Here is the code: ```python...

Hi there! First of all, thanks a lot for all your work. Without your libraries I doubt I would have been able to immerse myself in dealing with Binance or...

Hi, first of all thank you for your code, it is a precious help. It seems to me that : - "BTC Symbol snapshots" should be "BTC Market snapshot" -...

If I call client.get_orders(trade_type='MARGIN_TRADE'), or even client.get_orders(trade_type='MARGIN_TRADE', order_type='limit_stop'), the stop limit orders (active or complete) are not returned.

witch parameter we use to set stop_market order : create_limit_order(symbol, side, price, size, client_oid=None, remark=None, time_in_force=None, stop=None, stop_price=None, stp=None, cancel_after=None, post_only=None, hidden=None, iceberg=None, visible_size=None) there's no parameter named type thank...

I am trying to figure out ORDER_MARKET_STOP (or ORDER_LIMIT_STOP), but I'm not sure if I'm supposed to use in the the create_market_order or in the create_limit_order with a stop option....

Every time the ws connection closes and the socket tries to reconnect, I don't get a message because the subscriptions need to be updated as well by adding these lines...