Skip to content
forked from ccxt/ccxt

A JavaScript / Python / PHP cryptocurrency trading library with support for more than 90 bitcoin/altcoin exchanges

License

Notifications You must be signed in to change notification settings

financengine/ccxt

Repository files navigation

CCXT – CryptoCurrency eXchange Trading Library

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

The ccxt library is used to connect and trade with cryptocurrency / altcoin exchanges and payment processing services worldwide. It provides quick access to market data for storage, analysis, visualization, indicator development, algorithmic trading, strategy backtesting, bot programming, webshop integration and related software engineering. It is intented to be used by coders, developers and financial analysts to build trading algorithms on top of it.

Current featurelist:

  • support for many exchange markets, even more upcoming soon
  • fully implemented public and private APIs for all exchanges
  • all currencies, altcoins and symbols, prices, order books, trades, tickers, etc...
  • optional normalised data for cross-market or cross-currency analytics and arbitrage
  • an out-of-the box unified all-in-one API extremely easy to integrate

ccxt on GitHub | Install | Usage | Manual | Public Offer

Supported Cryptocurrency Exchange Markets

id name ver doc countries
_1broker _1broker 1Broker 2 API US
_1btcxe _1btcxe 1BTCXE * API Panama
anxpro anxpro ANXPro 2 API Japan, Singapore, Hong Kong, New Zealand
bit2c bit2c Bit2C * API Israel
bitbay bitbay BitBay * API Poland, EU
bitcoincoid bitcoincoid Bitcoin.co.id * API Indonesia
bitfinex bitfinex Bitfinex 1 API US
bitlish bitlish bitlish 1 API UK, EU, Russia
bitmarket bitmarket BitMarket * API Poland, EU
bitmex bitmex BitMEX 1 API Seychelles
bitso bitso Bitso 3 API Mexico
bitstamp bitstamp Bitstamp 2 API UK
bittrex bittrex Bittrex 1.1 API US
btcchina btcchina BTCChina 1 API China
btcx btcx BTCX 1 API Iceland, US, EU
bxinth bxinth BX.in.th * API Thailand
ccex ccex C-CEX * API Germany, EU
cex cex CEX.IO * API UK, EU, Cyprus, Russia
coincheck coincheck coincheck * API Japan, Indonesia
coinsecure coinsecure Coinsecure 1 API India
exmo exmo EXMO 1 API Spain, Russia
fybse fybse FYB-SE * API Sweden
fybsg fybsg FYB-SG * API Singapore
gdax gdax GDAX * API US
hitbtc hitbtc HitBTC 1 API Hong Kong
huobi huobi Huobi 3 API China
jubi jubi jubi.com 1 API China
kraken kraken Kraken 0 API US
luno luno luno 1 API UK, Singapore, South Africa
okcoinusd okcoinusd OKCoin USD 1 API China, US
okcoincny okcoincny OKCoin CNY 1 API China
poloniex poloniex Poloniex * API US
quadrigacx quadrigacx QuadrigaCX 2 API Canada
quoine quoine QUOINE 2 API Japan, Singapore, Vietnam
therock therock TheRockTrading 1 API Malta
vaultoro vaultoro Vaultoro 1 API Switzerland
virwox virwox VirWoX * API Austria
yobit yobit YoBit 3 API Russia
zaif zaif Zaif 1 API Japan

The list above is updated frequently, new crypto markets, altcoin exchanges, bug fixes, API endpoints are introduced and added on regular basis. See the Manual for details. If you don't find a cryptocurrency exchange market in the list above and/or want another market to be added, post or send us a link to it by opening an issue here on GitHub or via email.

The library is under MIT license, that means its absolutely free for any developer to build commercial and opensource software on top of it, but use it as is at your own risk with no warranties.

Developer team is open for collaboration and available for hiring and outsourcing. If you're interested in integrating this software into an existing project or in developing new opensource and commercial projects we welcome you to read our Public Offer.

Install

This library is shipped as a single-file (all-in-one module) implementation with minimalistic dependencies and requirements.

The main file is:

  • ccxt.js in JavaScript (ccxt for Node.js and web browsers)
  • ccxt/__init__.py in Python (works in both Python 2 and 3, ccxt in PyPI)
  • ccxt.php in PHP

The easiest way to install the ccxt library is to use builtin package managers.

You can also clone it directly into your project directory from ccxt GitHub repository:

git clone https://github.com/kroitor/ccxt.git

An alternative way of installing this library into your code is to copy a single ccxt.* file manually into your working directory with language extension appropriate for your environment.

Node.js (npm)

ccxt crypto trading library in npm

npm install ccxt

Node version of the ccxt library requires crypto and node-fetch, both of them are installed automatically by npm.

var ccxt = require ('ccxt')
console.log (Object.keys (ccxt)) // print all available markets

Python

ccxt algotrading library in PyPI

pip install ccxt

Python version of the ccxt library does not require any additional dependencies and uses builtin modules only.

import ccxt
print dir (ccxt) # print a list of all available market classes

PHP

git clone https://github.com/kroitor/ccxt.git

The ccxt library in PHP requires common PHP modules:

  • cURL
  • mbstring (using UTF-8 is highly recommended)
  • PCRE
  • iconv
include "ccxt.php";
$market = new \cxxt\$id (); // $id is a string literal id of your desired exchange market

Web Browsers

The ccxt library can also be used in web browser client-side JavaScript for various purposes.

git clone https://github.com/kroitor/ccxt.git

The client-side JavaScript version also requires CryptoJS. Download and unpack CryptoJS into your working directory or clone CryptoJS from GitHub.

git clone https://github.com/sytelus/CryptoJS

Finally, add links to CryptoJS components and ccxt to your HTML page code:

<script src="crypto-js/rollups/sha256.js"></script>
<script src="crypto-js/rollups/hmac-sha256.js"></script>
<script src="crypto-js/rollups/hmac-sha512.js"></script>
<script src="crypto-js/components/enc-base64-min.js"></script>
<script src="crypto-js/components/enc-utf16-min.js"></script>

<script type="text/javascript" src="ccxt.js"></script>
<script type="text/javascript">
    // print all available markets
    document.addEventListener ('DOMContentLoaded', () => console.log (ccxt))
</script>

Usage

Intro

The ccxt library consists of a public part and a private part. Anyone can use the public part out-of-the-box immediately after installation. Public APIs open access to public information from all exchange markets without registering user accounts and without having API keys.

Public APIs include the following:

  • market data
  • instruments/trading pairs
  • price feeds (exchange rates)
  • order books
  • trade history
  • tickers
  • OHLC(V) for charting
  • other public endpoints

For trading with private API you need to obtain API keys from/to exchange markets. It often means registering with exchange markets and creating API keys with your account. Most exchanges require personal info or identification. Some kind of verification may be necessary as well. If you want to trade you need to register yourself, this library will not create accounts or API keys for you. Some exchange APIs expose interface methods for registering an account from within the code itself, but most of exchanges don't. You have to sign up and create API keys with their websites.

Private APIs allow the following:

  • manage personal account info
  • query account balances
  • trade by making market and limit orders
  • deposit and withdraw fiat and crypto funds
  • query personal orders
  • get ledger history
  • transfer funds between accounts
  • use merchant services

This library implements full public and private REST APIs for all exchanges. WebSocket and FIX implementations in JavaScript, PHP, Python and other languages coming soon.

The ccxt library supports both camelcase notation (preferred in JavaScript) and underscore notation (preferred in Python and PHP), therefore all methods can be called in either notation or coding style in any language.

// both of these notations work in JavaScript/Python/PHP
market.methodName ()  // camelcase pseudocode
market.method_name () // underscore pseudocode

See the Manual for more details.

JavaScript

'use strict';
var ccxt = require ('ccxt')

;(() => async function () {

    let kraken    = new ccxt.kraken ()
    let bitfinex  = new ccxt.bitfinex ({ verbose: true })
    let huobi     = new ccxt.huobi ()
    let okcoinusd = new ccxt.okcoinusd ({
        apiKey: 'YOUR_PUBLIC_API_KEY',
        secret: 'YOUR_SECRET_PRIVATE_KEY',
    })

    let krakenProducts = await kraken.loadProducts ()

    console.log (kraken.id,    krakenProducts)
    console.log (bitfinex.id,  await bitfinex.loadProducts  ())
    console.log (huobi.id,     await huobi.loadProducts ())

    console.log (kraken.id,    await kraken.fetchOrderBook (Object.keys (kraken.products)[0]))
    console.log (bitfinex.id,  await bitfinex.fetchTicker ('BTC/USD'))
    console.log (huobi.id,     await huobi.fetchTrades ('ETH/CNY'))

    console.log (okcoinusd.id, await okcoinusd.fetchBalance ())

    // sell 1 BTC/USD for market price (create market sell order)
    console.log (okcoinusd.id, await okcoinusd.sell ('BTC/USD', 1))

    // buy 1 BTC/USD for $2500 (create limit buy order) 
    console.log (okcoinusd.id, await okcoinusd.buy ('BTC/USD', 1, 2500.00))

}) ()

Python

# coding=utf-8

import ccxt

hitbtc = ccxt.hitbtc ({ 'verbose': True })
bitmex = ccxt.bitmex ()
huobi  = ccxt.huobi ()
exmo   = ccxt.exmo ({
    'apiKey': 'YOUR_PUBLIC_API_KEY',
    'secret': 'YOUR_SECRET_PRIVATE_KEY',
})

hitbtc_products = hitbtc.load_products ()

print (hitbtc.id, hitbtc_products)
print (bitmex.id, bitmex.load_products ())
print (huobi.id,  huobi.load_products ())

print (hitbtc.fetch_order_book (hitbtc_products.keys ()[0]))
print (bitmex.fetch_ticker ('BTC/USD'))
print (huobi.fetch_trades ('LTC/CNY'))

print (exmo.fetch_balance ())

# sell 1 BTC/USD for market price (create market sell order)
print (exmo.id, exmo.sell ('BTC/USD', 1))

# buy 1 BTC/USD for $2500 (create limit buy order) 
print (exmo.id, exmo.buy ('BTC/USD', 1, 2500.00))

PHP

include 'ccxt.php';

$poloniex = new \ccxt\poloniex  ();
$bittrex  = new \ccxt\bittrex   (array ('verbose' => true));
$quoine   = new \ccxt\zaif      ();
$zaif     = new \ccxt\quoine    (array (
    'apiKey' => 'YOUR_PUBLIC_API_KEY',
    'secret' => 'YOUR_SECRET_PRIVATE_KEY',
));

$poloniex_products = $poloniex->load_products ();

var_dump ($poloniex_products);
var_dump ($bittrex->load_products ());
var_dump ($quoine->load_products ());

var_dump ($poloniex->fetch_order_book (array_keys ($poloniex_products)[0]));
var_dump ($bittrex->fetch_trades ('BTC/USD'));
var_dump ($quoine->fetch_ticker ('ETH/EUR'));
var_dump ($zaif->fetch_ticker ('BTC/JPY'));

var_dump ($zaif->fetch_balance ());

// sell 1 BTC/JPY for market price (create market sell order)
var_dump ($zaif->id, $zaif->sell ('BTC/JPY', 1));

// buy 1 BTC/JPY for ¥285000 (create limit buy order) 
var_dump ($zaif->id, $zaif->buy ('BTC/JPY', 1, 285000));

Public Offer

Developer team is open for collaboration and available for hiring and outsourcing.

We can:

  • implement a cryptocurrency trading strategy for you
  • integrate APIs for any exchange markets you want
  • create bots for algorithmic trading, arbitrage, scalping and HFT
  • perform backtesting and data crunching
  • implement any kind of protocol including REST, WebSockets, FIX, proprietary and legacy standards...
  • actually directly integrate btc/altcoin blockchain or transaction graph into your system
  • program a matching engine for you
  • create a trading terminal for desktops, phones and pads (for web and native OSes)
  • do all of the above in any of the following languages/environments: Javascript, Node.js, PHP, C, C++, C#, Python, Java, ObjectiveC, Linux, FreeBSD, MacOS, iOS, Windows

We implement bots, algorithmic trading software and strategies by your design. Costs for implementing a basic trading strategy are low (starting from a few coins) and depend on your requirements.

We are coders, not investors, so we ABSOLUTELY DO NOT do any kind of financial or trading advisory neither we invent profitable strategies to make you a fortune out of thin air. We guarantee the stability of the bot or trading software, but we cannot guarantee the profitability of your strategy nor can we protect you from natural financial risks and economic losses. Exact rules for the trading strategy is up to the trader/investor himself. We charge a fix flat price in cryptocurrency for our programming services and for implementing your requirements in software.

Please, contact us on GitHub or via email if you're interested in integrating this software into an existing project or in developing new opensource and commercial projects.

Contact Us

Igor Kroitor [email protected] https://github.com/kroitor

Vitaly Gordon [email protected] https://github.com/xpl

About

A JavaScript / Python / PHP cryptocurrency trading library with support for more than 90 bitcoin/altcoin exchanges

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 58.8%
  • Python 26.3%
  • PHP 14.9%