okcoin-api

0.2.2 • Public • Published

OKCoin-API

OKCoin-API is a NodeJS wrapper over the API of OKCoin, the Chinese Bitcoin exchange

*** Warning : This project is under developement. You may encounter troubles when using this module as OKCoin API is constantly evolving and the english documentation is not always up to date

Installation

npm install okcoin-api --save

How to use it

var OKCoin = require('okcoin-api');
var okcoin = new OKCoin(process.env.OKCOIN_PARTNER, process.env.OKCOIN_API_SECRET);

Examples

// Get ticker information
okcoin.ticker(function (err, data) {
    if (err) {
      return console.log(err);
        } else {
      console.log(JSON.stringify(data));
      }
    });

// Get market depth
okcoin.depth(function (err, data) {
    if (err) {
      return console.log(err);
        } else {
      console.log(JSON.stringify(data));
      }
    });
    
// Get trades
okcoin.trades(function (err, data) {
    if (err) {
      return console.log(err);
        } else {
      console.log(JSON.stringify(data));
      }
    });

// Get your balance
okcoin.userinfo(function (err, data) {
    if (err) {
      return console.log(err);
        } else {
      console.log(JSON.stringify(data));
      }
    });
    
// Sell BTC at market price
okcoin.trade('btc_cny','sell_market',null,0.01, function (err, data) {
    if (err) {
      return console.log(err);
        } else {
      console.log(JSON.stringify(data));
      }
    });

TODO :

Add the methods : batch_trade, cancel_order, orders_info, orders_history Add future trading Add OKCoin.com compatibility

How to test :

  • Specify your environnement variables : OKCOIN_API_SECRET, OKCOIN_API_PARTNER (windows : set OKCOIN_API_SECRET=$yoursecret).

  • Launch the tests using : npm test

Package Sidebar

Install

npm i okcoin-api

Weekly Downloads

0

Version

0.2.2

License

MIT

Last publish

Collaborators

  • etienne.tatur