Skip to content

Commit 619eaaf

Browse files
author
Travis CI
committedDec 14, 2017
1.10.384
[ci skip]
1 parent 0ae7932 commit 619eaaf

19 files changed

+563
-94
lines changed
 

‎README.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# CCXT – CryptoCurrency eXchange Trading Library
22

3-
[![Build Status](https://travis-ci.org/ccxt/ccxt.svg?branch=master)](https://travis-ci.org/ccxt/ccxt) [![npm](https://img.shields.io/npm/v/ccxt.svg)](https://npmjs.com/package/ccxt) [![PyPI](https://img.shields.io/pypi/v/ccxt.svg)](https://pypi.python.org/pypi/ccxt) [![NPM Downloads](https://img.shields.io/npm/dm/ccxt.svg)](https://www.npmjs.com/package/ccxt) [![Try ccxt on RunKit](https://badge.runkitcdn.com/ccxt.svg)](https://npm.runkit.com/ccxt) [![Gitter](https://badges.gitter.im/ccxt-dev/ccxt.svg)](https://gitter.im/ccxt-dev/ccxt?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge) [![Supported Exchanges](https://img.shields.io/badge/exchanges-93-blue.svg)](https://github.com/ccxt/ccxt/wiki/Exchange-Markets)
3+
[![Build Status](https://travis-ci.org/ccxt/ccxt.svg?branch=master)](https://travis-ci.org/ccxt/ccxt) [![npm](https://img.shields.io/npm/v/ccxt.svg)](https://npmjs.com/package/ccxt) [![PyPI](https://img.shields.io/pypi/v/ccxt.svg)](https://pypi.python.org/pypi/ccxt) [![NPM Downloads](https://img.shields.io/npm/dm/ccxt.svg)](https://www.npmjs.com/package/ccxt) [![Try ccxt on RunKit](https://badge.runkitcdn.com/ccxt.svg)](https://npm.runkit.com/ccxt) [![Gitter](https://badges.gitter.im/ccxt-dev/ccxt.svg)](https://gitter.im/ccxt-dev/ccxt?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge) [![Supported Exchanges](https://img.shields.io/badge/exchanges-94-blue.svg)](https://github.com/ccxt/ccxt/wiki/Exchange-Markets)
44

55
A JavaScript / Python / PHP library for cryptocurrency trading and e-commerce with support for many bitcoin/ether/altcoin exchange markets and merchant APIs.
66

@@ -21,7 +21,7 @@ Current feature list:
2121

2222
## Supported Cryptocurrency Exchange Markets
2323

24-
The ccxt library currently supports the following 93 cryptocurrency exchange markets and trading APIs:
24+
The ccxt library currently supports the following 94 cryptocurrency exchange markets and trading APIs:
2525

2626
| | id | name | ver | doc | countries |
2727
|---------------------------------------------------------------------------------------------------------------------------|--------------------|-----------------------------------------------------------|:---:|:-------------------------------------------------------------------------------------------:|-----------------------------------------|
@@ -88,6 +88,7 @@ The ccxt library currently supports the following 93 cryptocurrency exchange mar
8888
|![itbit](https://user-images.githubusercontent.com/1294454/27822159-66153620-60ad-11e7-89e7-005f6d7f3de0.jpg) | itbit | [itBit](https://www.itbit.com) | 1 | [API](https://api.itbit.com/docs) | US |
8989
|![jubi](https://user-images.githubusercontent.com/1294454/27766581-9d397d9a-5edd-11e7-8fb9-5d8236c0e692.jpg) | jubi | [jubi.com](https://www.jubi.com) | 1 | [API](https://www.jubi.com/help/api.html) | China |
9090
|![kraken](https://user-images.githubusercontent.com/1294454/27766599-22709304-5ede-11e7-9de1-9f33732e1509.jpg) | kraken | [Kraken](https://www.kraken.com) | 0 | [API](https://www.kraken.com/en-us/help/api) | US |
91+
|![kucoin](https://user-images.githubusercontent.com/1294454/33795655-b3c46e48-dcf6-11e7-8abe-dc4588ba7901.jpg) | kucoin | [Kucoin](https://kucoin.com) | 1 | [API](https://kucoinapidocs.docs.apiary.io) | Hong Kong |
9192
|![kuna](https://user-images.githubusercontent.com/1294454/31697638-912824fa-b3c1-11e7-8c36-cf9606eb94ac.jpg) | kuna | [Kuna](https://kuna.io) | 2 | [API](https://kuna.io/documents/api) | Ukraine |
9293
|![lakebtc](https://user-images.githubusercontent.com/1294454/28074120-72b7c38a-6660-11e7-92d9-d9027502281d.jpg) | lakebtc | [LakeBTC](https://www.lakebtc.com) | 2 | [API](https://www.lakebtc.com/s/api_v2) | US |
9394
|![liqui](https://user-images.githubusercontent.com/1294454/27982022-75aea828-63a0-11e7-9511-ca584a8edd74.jpg) | liqui | [Liqui](https://liqui.io) | 3 | [API](https://liqui.io/api) | Ukraine |

‎build/ccxt.browser.js

+521-78
Large diffs are not rendered by default.

‎ccxt.d.ts

+1
Original file line numberDiff line numberDiff line change
@@ -187,6 +187,7 @@ declare module 'ccxt' {
187187
export class itbit extends Exchange {}
188188
export class jubi extends btcbox {}
189189
export class kraken extends Exchange {}
190+
export class kucoin extends Exchange {}
190191
export class kuna extends acx {}
191192
export class lakebtc extends Exchange {}
192193
export class liqui extends Exchange {}

‎ccxt.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ const errors = require ('./js/base/errors')
3737
//-----------------------------------------------------------------------------
3838
// this is updated by vss.js when building
3939

40-
const version = '1.10.383'
40+
const version = '1.10.384'
4141

4242
Exchange.ccxtVersion = version
4343

@@ -107,6 +107,7 @@ const exchanges = {
107107
'itbit': require ('./js/itbit.js'),
108108
'jubi': require ('./js/jubi.js'),
109109
'kraken': require ('./js/kraken.js'),
110+
'kucoin': require ('./js/kucoin.js'),
110111
'kuna': require ('./js/kuna.js'),
111112
'lakebtc': require ('./js/lakebtc.js'),
112113
'liqui': require ('./js/liqui.js'),

‎ccxt.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030

3131
namespace ccxt;
3232

33-
$version = '1.10.383';
33+
$version = '1.10.384';
3434

3535
const CLASSES_DIR = __DIR__ . DIRECTORY_SEPARATOR . 'php' . DIRECTORY_SEPARATOR;
3636

‎doc/README.rst

+4-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Current feature list:
2323
Supported Cryptocurrency Exchange Markets
2424
-----------------------------------------
2525

26-
The ccxt library currently supports the following 93 cryptocurrency exchange markets and trading APIs:
26+
The ccxt library currently supports the following 94 cryptocurrency exchange markets and trading APIs:
2727

2828
+------------------------+----------------------+----------------------------------------------------------------+-------+--------------------------------------------------------------------------------------------------+--------------------------------------------+
2929
| | id | name | ver | doc | countries |
@@ -154,6 +154,8 @@ The ccxt library currently supports the following 93 cryptocurrency exchange mar
154154
+------------------------+----------------------+----------------------------------------------------------------+-------+--------------------------------------------------------------------------------------------------+--------------------------------------------+
155155
| |kraken| | kraken | `Kraken <https://www.kraken.com>`__ | 0 | `API <https://www.kraken.com/en-us/help/api>`__ | US |
156156
+------------------------+----------------------+----------------------------------------------------------------+-------+--------------------------------------------------------------------------------------------------+--------------------------------------------+
157+
| |kucoin| | kucoin | `Kucoin <https://kucoin.com>`__ | 1 | `API <https://kucoinapidocs.docs.apiary.io>`__ | Hong Kong |
158+
+------------------------+----------------------+----------------------------------------------------------------+-------+--------------------------------------------------------------------------------------------------+--------------------------------------------+
157159
| |kuna| | kuna | `Kuna <https://kuna.io>`__ | 2 | `API <https://kuna.io/documents/api>`__ | Ukraine |
158160
+------------------------+----------------------+----------------------------------------------------------------+-------+--------------------------------------------------------------------------------------------------+--------------------------------------------+
159161
| |lakebtc| | lakebtc | `LakeBTC <https://www.lakebtc.com>`__ | 2 | `API <https://www.lakebtc.com/s/api_v2>`__ | US |
@@ -558,6 +560,7 @@ Please read the `CONTRIBUTING <https://github.com/ccxt/ccxt/blob/master/CONTRIBU
558560
.. |itbit| image:: https://user-images.githubusercontent.com/1294454/27822159-66153620-60ad-11e7-89e7-005f6d7f3de0.jpg
559561
.. |jubi| image:: https://user-images.githubusercontent.com/1294454/27766581-9d397d9a-5edd-11e7-8fb9-5d8236c0e692.jpg
560562
.. |kraken| image:: https://user-images.githubusercontent.com/1294454/27766599-22709304-5ede-11e7-9de1-9f33732e1509.jpg
563+
.. |kucoin| image:: https://user-images.githubusercontent.com/1294454/33795655-b3c46e48-dcf6-11e7-8abe-dc4588ba7901.jpg
561564
.. |kuna| image:: https://user-images.githubusercontent.com/1294454/31697638-912824fa-b3c1-11e7-8c36-cf9606eb94ac.jpg
562565
.. |lakebtc| image:: https://user-images.githubusercontent.com/1294454/28074120-72b7c38a-6660-11e7-92d9-d9027502281d.jpg
563566
.. |liqui| image:: https://user-images.githubusercontent.com/1294454/27982022-75aea828-63a0-11e7-9511-ca584a8edd74.jpg

‎doc/exchanges-by-country.rst

+3
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,8 @@ The ccxt library currently supports the following cryptocurrency exchange market
102102
+----------------------------+------------------------+----------------------+----------------------------------------------------------------+-------+--------------------------------------------------------------------------------------------------+
103103
| Hong Kong | |hitbtc2| | hitbtc2 | `HitBTC v2 <https://hitbtc.com>`__ | 2 | `API <https://api.hitbtc.com>`__ |
104104
+----------------------------+------------------------+----------------------+----------------------------------------------------------------+-------+--------------------------------------------------------------------------------------------------+
105+
| Hong Kong | |kucoin| | kucoin | `Kucoin <https://kucoin.com>`__ | 1 | `API <https://kucoinapidocs.docs.apiary.io>`__ |
106+
+----------------------------+------------------------+----------------------+----------------------------------------------------------------+-------+--------------------------------------------------------------------------------------------------+
105107
| Hong Kong | |mixcoins| | mixcoins | `MixCoins <https://mixcoins.com>`__ | 1 | `API <https://mixcoins.com/help/api/>`__ |
106108
+----------------------------+------------------------+----------------------+----------------------------------------------------------------+-------+--------------------------------------------------------------------------------------------------+
107109
| Iceland | |btcx| | btcx | `BTCX <https://btc-x.is>`__ | 1 | `API <https://btc-x.is/custom/api-document.html>`__ |
@@ -305,6 +307,7 @@ The ccxt library currently supports the following cryptocurrency exchange market
305307
.. |gatecoin| image:: https://user-images.githubusercontent.com/1294454/28646817-508457f2-726c-11e7-9eeb-3528d2413a58.jpg
306308
.. |hitbtc| image:: https://user-images.githubusercontent.com/1294454/27766555-8eaec20e-5edc-11e7-9c5b-6dc69fc42f5e.jpg
307309
.. |hitbtc2| image:: https://user-images.githubusercontent.com/1294454/27766555-8eaec20e-5edc-11e7-9c5b-6dc69fc42f5e.jpg
310+
.. |kucoin| image:: https://user-images.githubusercontent.com/1294454/33795655-b3c46e48-dcf6-11e7-8abe-dc4588ba7901.jpg
308311
.. |mixcoins| image:: https://user-images.githubusercontent.com/1294454/30237212-ed29303c-9535-11e7-8af8-fcd381cfa20c.jpg
309312
.. |coinsecure| image:: https://user-images.githubusercontent.com/1294454/27766472-9cbd200a-5ed9-11e7-9551-2267ad7bac08.jpg
310313
.. |bitcoincoid| image:: https://user-images.githubusercontent.com/1294454/27766138-043c7786-5ecf-11e7-882b-809c14f38b53.jpg

‎doc/exchanges.rst

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Supported Exchanges
22
===================
33

4-
The ccxt library currently supports the following 93 cryptocurrency exchange markets and trading APIs:
4+
The ccxt library currently supports the following 94 cryptocurrency exchange markets and trading APIs:
55

66
+------------------------+----------------------+----------------------------------------------------------------+-------+--------------------------------------------------------------------------------------------------+--------------------------------------------+
77
| | id | name | ver | doc | countries |
@@ -132,6 +132,8 @@ The ccxt library currently supports the following 93 cryptocurrency exchange mar
132132
+------------------------+----------------------+----------------------------------------------------------------+-------+--------------------------------------------------------------------------------------------------+--------------------------------------------+
133133
| |kraken| | kraken | `Kraken <https://www.kraken.com>`__ | 0 | `API <https://www.kraken.com/en-us/help/api>`__ | US |
134134
+------------------------+----------------------+----------------------------------------------------------------+-------+--------------------------------------------------------------------------------------------------+--------------------------------------------+
135+
| |kucoin| | kucoin | `Kucoin <https://kucoin.com>`__ | 1 | `API <https://kucoinapidocs.docs.apiary.io>`__ | Hong Kong |
136+
+------------------------+----------------------+----------------------------------------------------------------+-------+--------------------------------------------------------------------------------------------------+--------------------------------------------+
135137
| |kuna| | kuna | `Kuna <https://kuna.io>`__ | 2 | `API <https://kuna.io/documents/api>`__ | Ukraine |
136138
+------------------------+----------------------+----------------------------------------------------------------+-------+--------------------------------------------------------------------------------------------------+--------------------------------------------+
137139
| |lakebtc| | lakebtc | `LakeBTC <https://www.lakebtc.com>`__ | 2 | `API <https://www.lakebtc.com/s/api_v2>`__ | US |
@@ -256,6 +258,7 @@ The ccxt library currently supports the following 93 cryptocurrency exchange mar
256258
.. |itbit| image:: https://user-images.githubusercontent.com/1294454/27822159-66153620-60ad-11e7-89e7-005f6d7f3de0.jpg
257259
.. |jubi| image:: https://user-images.githubusercontent.com/1294454/27766581-9d397d9a-5edd-11e7-8fb9-5d8236c0e692.jpg
258260
.. |kraken| image:: https://user-images.githubusercontent.com/1294454/27766599-22709304-5ede-11e7-9de1-9f33732e1509.jpg
261+
.. |kucoin| image:: https://user-images.githubusercontent.com/1294454/33795655-b3c46e48-dcf6-11e7-8abe-dc4588ba7901.jpg
259262
.. |kuna| image:: https://user-images.githubusercontent.com/1294454/31697638-912824fa-b3c1-11e7-8c36-cf9606eb94ac.jpg
260263
.. |lakebtc| image:: https://user-images.githubusercontent.com/1294454/28074120-72b7c38a-6660-11e7-92d9-d9027502281d.jpg
261264
.. |liqui| image:: https://user-images.githubusercontent.com/1294454/27982022-75aea828-63a0-11e7-9511-ca584a8edd74.jpg

‎doc/manual.rst

+4-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ Full public and private HTTP REST APIs for all exchanges are implemented. WebSoc
5555
Exchanges
5656
=========
5757

58-
The ccxt library currently supports the following 93 cryptocurrency exchange markets and trading APIs:
58+
The ccxt library currently supports the following 94 cryptocurrency exchange markets and trading APIs:
5959

6060
+------------------------+----------------------+----------------------------------------------------------------+-------+--------------------------------------------------------------------------------------------------+--------------------------------------------+
6161
| | id | name | ver | doc | countries |
@@ -186,6 +186,8 @@ The ccxt library currently supports the following 93 cryptocurrency exchange mar
186186
+------------------------+----------------------+----------------------------------------------------------------+-------+--------------------------------------------------------------------------------------------------+--------------------------------------------+
187187
| |kraken| | kraken | `Kraken <https://www.kraken.com>`__ | 0 | `API <https://www.kraken.com/en-us/help/api>`__ | US |
188188
+------------------------+----------------------+----------------------------------------------------------------+-------+--------------------------------------------------------------------------------------------------+--------------------------------------------+
189+
| |kucoin| | kucoin | `Kucoin <https://kucoin.com>`__ | 1 | `API <https://kucoinapidocs.docs.apiary.io>`__ | Hong Kong |
190+
+------------------------+----------------------+----------------------------------------------------------------+-------+--------------------------------------------------------------------------------------------------+--------------------------------------------+
189191
| |kuna| | kuna | `Kuna <https://kuna.io>`__ | 2 | `API <https://kuna.io/documents/api>`__ | Ukraine |
190192
+------------------------+----------------------+----------------------------------------------------------------+-------+--------------------------------------------------------------------------------------------------+--------------------------------------------+
191193
| |lakebtc| | lakebtc | `LakeBTC <https://www.lakebtc.com>`__ | 2 | `API <https://www.lakebtc.com/s/api_v2>`__ | US |
@@ -1934,6 +1936,7 @@ Notes
19341936
.. |itbit| image:: https://user-images.githubusercontent.com/1294454/27822159-66153620-60ad-11e7-89e7-005f6d7f3de0.jpg
19351937
.. |jubi| image:: https://user-images.githubusercontent.com/1294454/27766581-9d397d9a-5edd-11e7-8fb9-5d8236c0e692.jpg
19361938
.. |kraken| image:: https://user-images.githubusercontent.com/1294454/27766599-22709304-5ede-11e7-9de1-9f33732e1509.jpg
1939+
.. |kucoin| image:: https://user-images.githubusercontent.com/1294454/33795655-b3c46e48-dcf6-11e7-8abe-dc4588ba7901.jpg
19371940
.. |kuna| image:: https://user-images.githubusercontent.com/1294454/31697638-912824fa-b3c1-11e7-8c36-cf9606eb94ac.jpg
19381941
.. |lakebtc| image:: https://user-images.githubusercontent.com/1294454/28074120-72b7c38a-6660-11e7-92d9-d9027502281d.jpg
19391942
.. |liqui| image:: https://user-images.githubusercontent.com/1294454/27982022-75aea828-63a0-11e7-9511-ca584a8edd74.jpg

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ccxt",
3-
"version": "1.10.383",
3+
"version": "1.10.384",
44
"description": "A JavaScript / Python / PHP cryptocurrency trading library with support for 90+ exchanges",
55
"main": "./ccxt.js",
66
"unpkg": "build/ccxt.browser.js",

‎php/base/Exchange.php

+1
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,7 @@ abstract class Exchange {
100100
'itbit',
101101
'jubi',
102102
'kraken',
103+
'kucoin',
103104
'kuna',
104105
'lakebtc',
105106
'liqui',

‎python/README.rst

+5-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Current feature list:
2323
Supported Cryptocurrency Exchange Markets
2424
-----------------------------------------
2525

26-
The ccxt library currently supports the following 93 cryptocurrency exchange markets and trading APIs:
26+
The ccxt library currently supports the following 94 cryptocurrency exchange markets and trading APIs:
2727

2828
+----------------------+----------------------------------------------------------------+-------+--------------------------------------------------------------------------------------------------+--------------------------------------------+
2929
| id | name | ver | doc | countries |
@@ -154,6 +154,8 @@ The ccxt library currently supports the following 93 cryptocurrency exchange mar
154154
+----------------------+----------------------------------------------------------------+-------+--------------------------------------------------------------------------------------------------+--------------------------------------------+
155155
| kraken | `Kraken <https://www.kraken.com>`__ | 0 | `API <https://www.kraken.com/en-us/help/api>`__ | US |
156156
+----------------------+----------------------------------------------------------------+-------+--------------------------------------------------------------------------------------------------+--------------------------------------------+
157+
| kucoin | `Kucoin <https://kucoin.com>`__ | 1 | `API <https://kucoinapidocs.docs.apiary.io>`__ | Hong Kong |
158+
+----------------------+----------------------------------------------------------------+-------+--------------------------------------------------------------------------------------------------+--------------------------------------------+
157159
| kuna | `Kuna <https://kuna.io>`__ | 2 | `API <https://kuna.io/documents/api>`__ | Ukraine |
158160
+----------------------+----------------------------------------------------------------+-------+--------------------------------------------------------------------------------------------------+--------------------------------------------+
159161
| lakebtc | `LakeBTC <https://www.lakebtc.com>`__ | 2 | `API <https://www.lakebtc.com/s/api_v2>`__ | US |
@@ -493,7 +495,7 @@ Please read the `CONTRIBUTING <https://github.com/ccxt/ccxt/blob/master/CONTRIBU
493495
:target: https://npm.runkit.com/ccxt
494496
.. |Gitter| image:: https://badges.gitter.im/ccxt-dev/ccxt.svg
495497
:target: https://gitter.im/ccxt-dev/ccxt?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge
496-
.. |Supported Exchanges| image:: https://img.shields.io/badge/exchanges-93-blue.svg
498+
.. |Supported Exchanges| image:: https://img.shields.io/badge/exchanges-94-blue.svg
497499
:target: https://github.com/ccxt/ccxt/wiki/Exchange-Markets
498500
.. | _1broker| image:: https://user-images.githubusercontent.com/1294454/27766021-420bd9fc-5ecb-11e7-8ed6-56d0081efed2.jpg
499501
.. | _1btcxe| image:: https://user-images.githubusercontent.com/1294454/27766049-2b294408-5ecc-11e7-85cc-adaff013dc1a.jpg
@@ -558,6 +560,7 @@ Please read the `CONTRIBUTING <https://github.com/ccxt/ccxt/blob/master/CONTRIBU
558560
.. |itbit| image:: https://user-images.githubusercontent.com/1294454/27822159-66153620-60ad-11e7-89e7-005f6d7f3de0.jpg
559561
.. |jubi| image:: https://user-images.githubusercontent.com/1294454/27766581-9d397d9a-5edd-11e7-8fb9-5d8236c0e692.jpg
560562
.. |kraken| image:: https://user-images.githubusercontent.com/1294454/27766599-22709304-5ede-11e7-9de1-9f33732e1509.jpg
563+
.. |kucoin| image:: https://user-images.githubusercontent.com/1294454/33795655-b3c46e48-dcf6-11e7-8abe-dc4588ba7901.jpg
561564
.. |kuna| image:: https://user-images.githubusercontent.com/1294454/31697638-912824fa-b3c1-11e7-8c36-cf9606eb94ac.jpg
562565
.. |lakebtc| image:: https://user-images.githubusercontent.com/1294454/28074120-72b7c38a-6660-11e7-92d9-d9027502281d.jpg
563566
.. |liqui| image:: https://user-images.githubusercontent.com/1294454/27982022-75aea828-63a0-11e7-9511-ca584a8edd74.jpg

‎python/ccxt/__init__.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828

2929
# ----------------------------------------------------------------------------
3030

31-
__version__ = '1.10.383'
31+
__version__ = '1.10.384'
3232

3333
# ----------------------------------------------------------------------------
3434

@@ -113,6 +113,7 @@
113113
from ccxt.itbit import itbit # noqa: F401
114114
from ccxt.jubi import jubi # noqa: F401
115115
from ccxt.kraken import kraken # noqa: F401
116+
from ccxt.kucoin import kucoin # noqa: F401
116117
from ccxt.kuna import kuna # noqa: F401
117118
from ccxt.lakebtc import lakebtc # noqa: F401
118119
from ccxt.liqui import liqui # noqa: F401
@@ -208,6 +209,7 @@
208209
'itbit',
209210
'jubi',
210211
'kraken',
212+
'kucoin',
211213
'kuna',
212214
'lakebtc',
213215
'liqui',

‎python/ccxt/async/__init__.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
# -----------------------------------------------------------------------------
66

7-
__version__ = '1.10.383'
7+
__version__ = '1.10.384'
88

99
# -----------------------------------------------------------------------------
1010

@@ -89,6 +89,7 @@
8989
from ccxt.async.itbit import itbit # noqa: F401
9090
from ccxt.async.jubi import jubi # noqa: F401
9191
from ccxt.async.kraken import kraken # noqa: F401
92+
from ccxt.async.kucoin import kucoin # noqa: F401
9293
from ccxt.async.kuna import kuna # noqa: F401
9394
from ccxt.async.lakebtc import lakebtc # noqa: F401
9495
from ccxt.async.liqui import liqui # noqa: F401
@@ -184,6 +185,7 @@
184185
'itbit',
185186
'jubi',
186187
'kraken',
188+
'kucoin',
187189
'kuna',
188190
'lakebtc',
189191
'liqui',

‎python/ccxt/async/base/exchange.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# -----------------------------------------------------------------------------
44

5-
__version__ = '1.10.383'
5+
__version__ = '1.10.384'
66

77
# -----------------------------------------------------------------------------
88

‎python/ccxt/base/exchange.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
# -----------------------------------------------------------------------------
66

7-
__version__ = '1.10.383'
7+
__version__ = '1.10.384'
88

99
# -----------------------------------------------------------------------------
1010

‎wiki/Exchange-Markets-By-Country.md

+1
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ The ccxt library currently supports the following cryptocurrency exchange market
5252
|Hong Kong | ![gatecoin](https://user-images.githubusercontent.com/1294454/28646817-508457f2-726c-11e7-9eeb-3528d2413a58.jpg) | gatecoin | [Gatecoin](https://gatecoin.com) | * | [API](https://gatecoin.com/api) |
5353
|Hong Kong | ![hitbtc](https://user-images.githubusercontent.com/1294454/27766555-8eaec20e-5edc-11e7-9c5b-6dc69fc42f5e.jpg) | hitbtc | [HitBTC](https://hitbtc.com) | 1 | [API](https://github.com/hitbtc-com/hitbtc-api/blob/master/APIv1.md) |
5454
|Hong Kong | ![hitbtc2](https://user-images.githubusercontent.com/1294454/27766555-8eaec20e-5edc-11e7-9c5b-6dc69fc42f5e.jpg) | hitbtc2 | [HitBTC v2](https://hitbtc.com) | 2 | [API](https://api.hitbtc.com) |
55+
|Hong Kong | ![kucoin](https://user-images.githubusercontent.com/1294454/33795655-b3c46e48-dcf6-11e7-8abe-dc4588ba7901.jpg) | kucoin | [Kucoin](https://kucoin.com) | 1 | [API](https://kucoinapidocs.docs.apiary.io) |
5556
|Hong Kong | ![mixcoins](https://user-images.githubusercontent.com/1294454/30237212-ed29303c-9535-11e7-8af8-fcd381cfa20c.jpg) | mixcoins | [MixCoins](https://mixcoins.com) | 1 | [API](https://mixcoins.com/help/api/) |
5657
|Iceland | ![btcx](https://user-images.githubusercontent.com/1294454/27766385-9fdcc98c-5ed6-11e7-8f14-66d5e5cd47e6.jpg) | btcx | [BTCX](https://btc-x.is) | 1 | [API](https://btc-x.is/custom/api-document.html) |
5758
|India | ![coinsecure](https://user-images.githubusercontent.com/1294454/27766472-9cbd200a-5ed9-11e7-9551-2267ad7bac08.jpg) | coinsecure | [Coinsecure](https://coinsecure.in) | 1 | [API](https://api.coinsecure.in) |

‎wiki/Exchange-Markets.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Supported Exchanges
22

3-
The ccxt library currently supports the following 93 cryptocurrency exchange markets and trading APIs:
3+
The ccxt library currently supports the following 94 cryptocurrency exchange markets and trading APIs:
44

55
| | id | name | ver | doc | countries |
66
|---------------------------------------------------------------------------------------------------------------------------|--------------------|-----------------------------------------------------------|:---:|:-------------------------------------------------------------------------------------------:|-----------------------------------------|
@@ -67,6 +67,7 @@ The ccxt library currently supports the following 93 cryptocurrency exchange mar
6767
|![itbit](https://user-images.githubusercontent.com/1294454/27822159-66153620-60ad-11e7-89e7-005f6d7f3de0.jpg) | itbit | [itBit](https://www.itbit.com) | 1 | [API](https://api.itbit.com/docs) | US |
6868
|![jubi](https://user-images.githubusercontent.com/1294454/27766581-9d397d9a-5edd-11e7-8fb9-5d8236c0e692.jpg) | jubi | [jubi.com](https://www.jubi.com) | 1 | [API](https://www.jubi.com/help/api.html) | China |
6969
|![kraken](https://user-images.githubusercontent.com/1294454/27766599-22709304-5ede-11e7-9de1-9f33732e1509.jpg) | kraken | [Kraken](https://www.kraken.com) | 0 | [API](https://www.kraken.com/en-us/help/api) | US |
70+
|![kucoin](https://user-images.githubusercontent.com/1294454/33795655-b3c46e48-dcf6-11e7-8abe-dc4588ba7901.jpg) | kucoin | [Kucoin](https://kucoin.com) | 1 | [API](https://kucoinapidocs.docs.apiary.io) | Hong Kong |
7071
|![kuna](https://user-images.githubusercontent.com/1294454/31697638-912824fa-b3c1-11e7-8c36-cf9606eb94ac.jpg) | kuna | [Kuna](https://kuna.io) | 2 | [API](https://kuna.io/documents/api) | Ukraine |
7172
|![lakebtc](https://user-images.githubusercontent.com/1294454/28074120-72b7c38a-6660-11e7-92d9-d9027502281d.jpg) | lakebtc | [LakeBTC](https://www.lakebtc.com) | 2 | [API](https://www.lakebtc.com/s/api_v2) | US |
7273
|![liqui](https://user-images.githubusercontent.com/1294454/27982022-75aea828-63a0-11e7-9511-ca584a8edd74.jpg) | liqui | [Liqui](https://liqui.io) | 3 | [API](https://liqui.io/api) | Ukraine |

‎wiki/Manual.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ Full public and private HTTP REST APIs for all exchanges are implemented. WebSoc
5353

5454
# Exchanges
5555

56-
The ccxt library currently supports the following 93 cryptocurrency exchange markets and trading APIs:
56+
The ccxt library currently supports the following 94 cryptocurrency exchange markets and trading APIs:
5757

5858
| | id | name | ver | doc | countries |
5959
|---------------------------------------------------------------------------------------------------------------------------|--------------------|-----------------------------------------------------------|:---:|:-------------------------------------------------------------------------------------------:|-----------------------------------------|
@@ -120,6 +120,7 @@ The ccxt library currently supports the following 93 cryptocurrency exchange mar
120120
|![itbit](https://user-images.githubusercontent.com/1294454/27822159-66153620-60ad-11e7-89e7-005f6d7f3de0.jpg) | itbit | [itBit](https://www.itbit.com) | 1 | [API](https://api.itbit.com/docs) | US |
121121
|![jubi](https://user-images.githubusercontent.com/1294454/27766581-9d397d9a-5edd-11e7-8fb9-5d8236c0e692.jpg) | jubi | [jubi.com](https://www.jubi.com) | 1 | [API](https://www.jubi.com/help/api.html) | China |
122122
|![kraken](https://user-images.githubusercontent.com/1294454/27766599-22709304-5ede-11e7-9de1-9f33732e1509.jpg) | kraken | [Kraken](https://www.kraken.com) | 0 | [API](https://www.kraken.com/en-us/help/api) | US |
123+
|![kucoin](https://user-images.githubusercontent.com/1294454/33795655-b3c46e48-dcf6-11e7-8abe-dc4588ba7901.jpg) | kucoin | [Kucoin](https://kucoin.com) | 1 | [API](https://kucoinapidocs.docs.apiary.io) | Hong Kong |
123124
|![kuna](https://user-images.githubusercontent.com/1294454/31697638-912824fa-b3c1-11e7-8c36-cf9606eb94ac.jpg) | kuna | [Kuna](https://kuna.io) | 2 | [API](https://kuna.io/documents/api) | Ukraine |
124125
|![lakebtc](https://user-images.githubusercontent.com/1294454/28074120-72b7c38a-6660-11e7-92d9-d9027502281d.jpg) | lakebtc | [LakeBTC](https://www.lakebtc.com) | 2 | [API](https://www.lakebtc.com/s/api_v2) | US |
125126
|![liqui](https://user-images.githubusercontent.com/1294454/27982022-75aea828-63a0-11e7-9511-ca584a8edd74.jpg) | liqui | [Liqui](https://liqui.io) | 3 | [API](https://liqui.io/api) | Ukraine |

0 commit comments

Comments
 (0)
Please sign in to comment.