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

Hi, I don't usually use Python so please bear with me. I'm trying to use python-kucoin and it fails with the most basic of examples - i.e., the one listed...

Hello. Trying to figure out % change for 24hr. get_24hr_stats() is missing Open price? How do I find this?

hi, I am trying to create a code in python to get the balance of my account, I use the Example for get balance of accounts in python on the...

The example code for websockets stops sending messages after 10-15 minutes, but the loop keeps running. How can I catch the reason for this and react?

Hi, First of all, great library. I've been using it for quite some time now. The new Kucoin API offers level 3 MatchEngine which I could use very much. So...

I run python 3.5.2 When I try to use the websocket features it raises an error at: MAX_RECONNECTS: int = 5 Is there something I need for python to allow...

I was testing code from readthedocs.io doc. I subscribed just account balance, and was transfering between main and traiding account and even made few testing trades on one pair. In...

WebSocket connection is closed: code = 1000 (OK), no reason

The function get_ticker has the optional variable symbol but doesnt work when symbol is not set. ``` def get_ticker(self, symbol): data = { 'symbol': symbol } return self._get('market/orderbook/level1', False, data=data)...

Minor issue but the comments for the create_limit_order() function state the function returns "orderOid": .. code:: python order = client.create_limit_order('KCS-BTC', Client.SIDE_BUY, '0.01', '1000') :returns: ApiResponse .. code:: python { "orderOid":...