Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
ex-drivers
Advanced tools
Highly unified APIs for the crypto-currency exchanges.
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() | ✅ | ✅ | |||
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
}
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');
const { utils } = require('ex-drivers');
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
}
FAQs
crypto currency exchange drivers
We found that ex-drivers demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.