NodeJS wrapper over the API of OKCoin, Chinese Bitcoin exchange
npm install okcoin-restOKCoin-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, order_info, orders_info, orders_history
Add OKCoin.com compatibility