npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

ex-drivers

v0.0.198

Published

crypto currency exchange drivers

Downloads

29

Readme

ex-drivers

Highly unified APIs for the crypto-currency exchanges.

Supports

| | zb.com | okex.com spot | okex.com future | bitflyer.jp fx | huobipro.com | | -------------------------- | ------ | ------------- | --------------- | -------------- | ------------ | | GetTicker() | ✅ | ✅ | ✅ | ✅ | ✅ | | GetDepth() | ✅ | ✅ | ✅ | ✅ | ✅ | | GetAccount() | ✅ | ✅ | ✅ | ✅ | ✅ | | GetAccounts() | ✅ | ✅ | | | ✅ | | GetAccountsMap() | ✅ | ✅ | | | ✅ | | GetPosition() | | | ✅ | ✅ | | | Trade() | ✅ | ✅ | ✅ | ✅ | ✅ | | Buy() / Sell() | ✅ | ✅ | | | ✅ | | Long() / Short() | | | ✅ | ✅ | | | CloseLong() / CloseShort() | | | ✅ | | | | ws available | ✅ | ✅ | ✅ | ✅ | ✅ | | ws depth stream | ✅ | ✅ | ✅ | ✅ | ✅ | | ws ticker stream | ✅ | ✅ | ✅ | ✅ | ✅ | | GetOrder() | ✅ | ✅ | ✅ | ✅ | ✅ | | CancelOrder() | ✅ | ✅ | ✅ | ✅ | ✅ | | CancelPendingOrders() | ✅ | ✅ | ✅ | ✅ | ✅ | | GetOrders() | ✅ | ✅ | ✅ | ✅ | ✅ | | GetMarkets() | ✅ | ✅ | | | | | GetMarketsMap() | ✅ | ✅ | | | | | GetMarket() | ✅ | ✅ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |

APIs:

GetAccount() get account information

{
	Balance: float,
	Stocks: float,
	FrozenBalance: float,
	FrozenStocks: float,
	Info: {...original object from exchange api}
}

GetAccounts() get account information of all coins

[
	{
		Currency: 'BTC',
		Free: float,
		Frozen: float,
		Info: {...original object from exchange api}
	}
]

GetTicker([Currency[, BaseCurrency]]) get ticker data

{
	Open: float,
	High: float,
	Low: float,
	Close: float,
	Volume: float,
	Time: timestamp
}

GetDepth([Currency[, BaseCurrency]]) get depth data

{
	Asks: [ {
			Price: float,
			Amount: float
		},
		...
	],
	Bids: [
		...
	]
}

GetTrades(page = 1) get finished trade history

[
	{
		Id: string,
		Price: float,
		Amount: float,
		DealAmount: float,
		AvgPrice: float,
		Status: Cancelled || Closed,
		Info: {...original object from exchange api}
	},
	...
]

GetMarkets() get markets information of the exchange

[
	{
		Currency: String,
		BaseCurrency: String,
		Decimals: integer,
		StockDecimals: integer,
		MinTradeAmount: float
	},
	...
]

GetMarket(Currency, BaseCurrency) get market information by currency and base currency

{
	Currency: String,
	BaseCurrency: String,
	Decimals: integer,
	StockDecimals: integer,
	MinTradeAmount: float
}

ZB now support multiple subscriptions

let zb = new ex({
	Currency: 'BTC',
	BaseCurrency: 'QC',
	Key: config.zb.key,
	Secret: config.zb.secret,
	isWS: true,
	onDepth(data) {
		console.log('onDepth', data);
	},
	onTicker(data) {
		console.log('onTicker', data);
	},
	onPublicTrades(data) {
		console.log('onPublicTrades', data);
	}
});

//subscribe more data
zb.Subscribe('EOS', 'QC', 'Depth');
zb.Subscribe('EOS', 'QC', 'Ticker');
zb.Subscribe('EOS', 'QC', 'PublicTrades');

Utils

Usage

const { utils } = require('ex-drivers');

Methods

getPriceFromDepthByAmount(entries, amount) get worst price if you send a market order (fixed amount) to the exchange.

entries is Asks or Bids data from the GetDepth() result. like following data for example:

const Bids = [
	{Price: 100, Amount: 0.1},
	{Price: 99, Amount: 0.1},
	{Price: 98, Amount: 0.1},
	{Price: 97, Amount: 0.1},
	{Price: 96, Amount: 0.1}
];
console.log(utils.getPriceFromDepthByAmount(Bids, 0.3));
//will output 98
console.log(utils.getPriceFromDepthByAmount(Bids, 0.01));
//will output 100

getPriceFromDepthByMoney(entries, money) get worst price if you send market order (fixed money) to the exchange.

getTakerInfoFromDepthByPrice(entries, price) get detail info if you send market order to the exchange for a fixed price.

getTakerInfoFromDepthByAmount(entries, amount) get detail info if you send market order to the exchange for a fixed amount.

the two methods above will output results like the following:

{
    Amount: 2,  //total amount used by the market order
    Money: 1000, //total money used by the market order
    AvgPrice: 500 //average price of this market order
}