All Projects → dutu → cryptox

dutu / cryptox

Licence: MIT license
Common API wrapper for multiple crypto currency exchanges

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to cryptox

Nescience-Indexing-CLI
Nescience Software & Capital Rebalancing Tool
Stars: ✭ 26 (-48%)
Mutual labels:  bitfinex, gdax, poloniex
Crypto vba
An Excel/VBA project to communicate with various cryptocurrency exchanges APIs
Stars: ✭ 103 (+106%)
Mutual labels:  bitfinex, gdax, poloniex
go-bithue
correlate your Philips Hue lights to the bitcoin price on Bitfinex
Stars: ✭ 16 (-68%)
Mutual labels:  bitstamp, bitfinex, gdax
Crypto Exchange
Pulls together list of crypto exchanges to interact with their API's in a uniform fashion.
Stars: ✭ 241 (+382%)
Mutual labels:  bitfinex, gdax, poloniex
Exchangesharp
ExchangeSharp is a powerful, fast and easy to use .NET/C# API for interfacing with many crypto currency exchanges. REST and web sockets are supported.
Stars: ✭ 489 (+878%)
Mutual labels:  bitfinex, gdax, poloniex
Coinbase Pro Trading Toolkit
DEPRECATED — The Coinbase Pro trading toolkit
Stars: ✭ 817 (+1534%)
Mutual labels:  bitfinex, gdax, poloniex
libcryptomarket
Powerful cryptocurrency market analysis toolkit
Stars: ✭ 43 (-14%)
Mutual labels:  bitfinex, gdax, poloniex
Goex
Exchange Rest And WebSocket API For Golang Wrapper support okcoin,okex,huobi,hbdm,bitmex,coinex,poloniex,bitfinex,bitstamp,binance,kraken,bithumb,zb,hitbtc,fcoin, coinbene
Stars: ✭ 1,188 (+2276%)
Mutual labels:  bitfinex, poloniex
Cryptotrader
A responsive dynamic webapp to trade cryptopairs on the most prominent exchanges
Stars: ✭ 118 (+136%)
Mutual labels:  bitfinex, poloniex
My Token
📈Track token prices of your favorite exchanges in terminal!
Stars: ✭ 141 (+182%)
Mutual labels:  bitfinex, poloniex
btc-ticker-esp8266
realtime bitcoin price on 7 segment display with arduino on esp8266
Stars: ✭ 18 (-64%)
Mutual labels:  bitstamp, bitfinex
Crypto Whale Watcher
An app to keep a watch on big volume trades of cryptocurrecies on different exchanges by sending alerts via a Telegram Bot.
Stars: ✭ 60 (+20%)
Mutual labels:  bitfinex, gdax
Bitcoinexchangefh
Cryptocurrency exchange market data feed handler
Stars: ✭ 871 (+1642%)
Mutual labels:  bitfinex, gdax
Gbot Trader
Trading robot for trade on crypto exchanges
Stars: ✭ 222 (+344%)
Mutual labels:  bitfinex, poloniex
cryptogalaxy
Get any cryptocurrencies ticker and trade data in real time from multiple exchanges and then save it in multiple storage systems.
Stars: ✭ 96 (+92%)
Mutual labels:  bitstamp, bitfinex
Cryptocurrency Portfolio
Google Sheets automatic creation with Google Apps Script (GAS) for managing a cryptocurrency tracking spreadsheet with multi exchanges
Stars: ✭ 134 (+168%)
Mutual labels:  bitfinex, poloniex
Mikalendingbot
Automated lending on Cryptocurrency exchanges Poloniex and Bitfinex
Stars: ✭ 1,067 (+2034%)
Mutual labels:  bitfinex, poloniex
gdax
GDAX PHP API Client Library
Stars: ✭ 15 (-70%)
Mutual labels:  gdax, gdax-api
poloniex-api
PHP wrapper for the Poloniex API
Stars: ✭ 20 (-60%)
Mutual labels:  api-wrapper, poloniex
Python Poloniex
Poloniex API wrapper for Python 2.7 & 3
Stars: ✭ 557 (+1014%)
Mutual labels:  api-wrapper, poloniex

cryptox

Build Status Dependencies Status

cryptox is a node.js wrapper for REST API for multiple crypto currency exchanges.

cryptox manages API communication with different exchanges and provides common methods for all exchanges. Differences between the different API's are abstracted away.

Contents

Install

npm install cryptox

Use

var Cryptox = require("cryptox");
var account = new Cryptox("btce", {key: "your_key", secret: "your_secret"});
	
account.getOpenOrders({pair: "LTC_USD"}, function (err, openOrders) {
    if (!err)
	    console.log(openOrders);
});

Example result:

{
    "timestamp": "2015-02-03T00:03:27+00:00",
    "error": "",
    "data": [
        {
            "order_id": "563489985",
            "pair": "LTC_USD",
            "type": "buy",
            "amount": "1",
            "rate": "0.1",
            "status": "0",
            "created_at": "2015-02-01T19:23:15+00:00"
        },
        {
            "order_id": "563612426",
            "pair": "LTC_USD",
            "type": "buy",
            "amount": "2",
            "rate": "0.5",
            "status": "0",
            "created_at": "2015-02-01T20:59:53+00:00"
        }        
    ]
}

Supported Exchanges and Implemented methods

if you are interested in extending cryptox for different exchange or a method not yet implemented, check out the document Exchanges

Bitfinex Bitstamp BitX BTC-e CEX.io Gdax Poloniex OXR [1]
getRate FI FI FI FI FI FI FI
getTicker FI FI FI FI FI FI
getOrderBook FI FI FI FI FI FI
getTrades FI
getFee FI FI FI
getTransactions FI FI FI
getBalance FI FI FI FI FI
getMarginPositions FI
getOpenOrders FI FI
postSellOrder
postBuyOrder
cancelOrder
getLendBook FI
native API calls FI FI FI FI FI FI FI

FI = Fully Implemented
FR = Fully Implemented, but restrictions apply; refer to notes below (if any)
PI = Partially Implemented; refer to notes below (if any)
= Not Supported

[1] OXR (Open Exchange Rates) is not a crypto exchange, however it provides exchange rates for world fiat currencies

ChangeLog

cryptox module adheres to [Semantic Versioning] (http://semver.org/) for versioning: MAJOR.MINOR.PATCH.

  1. MAJOR version increments when non-backwards compatible API changes are introduced
  2. MINOR version increments when functionality in a backwards-compatible manner are introduced
  3. PATCH version increments when backwards-compatible bug fixes are made

See detailed ChangeLog

Documentation

See API documentation

FAQ

See FAQ

License

MIT

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].