Giter Site home page Giter Site logo

zhangzh56 / ccxt Goto Github PK

View Code? Open in Web Editor NEW

This project forked from wujinxing/ccxt

1.0 2.0 0.0 525 KB

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

License: MIT License

Shell 0.01% JavaScript 67.33% PHP 17.04% Python 15.62%

ccxt's Introduction

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, 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

Install | Usage | Manual | Public Offer

Supported Cryptocurrency Exchange Markets

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

The list above is updated frequently, new crypto markets, altcoin exchanges, bug fixes, API endpoints are introduced and added on regular basis. 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.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)

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

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

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 ())

PHP

include 'ccxt.php';

$poloniex = new \ccxt\poloniex  ();
$bittrex  = new \ccxt\bittrex   (array ('verbose' => true));
$zaif     = new \ccxt\zaif      ();
$quoine   = 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 ($zaif->fetch_ticker ('BTC/JPY'));

var_dump ($quoine->fetch_balance ());

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

ccxt's People

Contributors

kroitor avatar xpl avatar

Stargazers

Joshua Rindfuss avatar

Watchers

James Cloos avatar 张朝晖 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.