-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1020 from coinranking/feat/add-tokpie-and-xeggex
Feat/add tokpie and xeggex
- Loading branch information
Showing
5 changed files
with
27,089 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
const Driver = require('../models/driver'); | ||
const request = require('../lib/request'); | ||
const Ticker = require('../models/ticker'); | ||
const { parseToFloat } = require('../lib/utils'); | ||
|
||
/** | ||
* @memberof Driver | ||
* @augments Driver | ||
*/ | ||
class Tokpie extends Driver { | ||
/** | ||
* @augments Driver.fetchTickers | ||
* @returns {Promise.Array<Ticker>} Returns a promise of an array with tickers. | ||
*/ | ||
async fetchTickers() { | ||
const markets = await request('https://tokpie.com/api_ticker/'); | ||
|
||
return Object.keys(markets).flatMap((market) => { | ||
const ticker = markets[market]; | ||
if (ticker.isFrozen) return []; | ||
|
||
const [base, quote] = ticker.pair.split('@'); | ||
|
||
const close = parseToFloat(ticker.last); | ||
const baseVolume = parseToFloat(ticker.baseVolume); | ||
const quoteVolume = parseToFloat(ticker.quoteVolume); | ||
|
||
if (!close) return []; | ||
if (!baseVolume && !quoteVolume) return []; | ||
|
||
return new Ticker({ | ||
base, | ||
quote, | ||
open: parseToFloat(ticker.at_first24), | ||
high: parseToFloat(ticker.high24hr), | ||
low: parseToFloat(ticker.low24hr), | ||
close, | ||
bid: parseToFloat(ticker.highestBid), | ||
ask: parseToFloat(ticker.lowestAsk), | ||
baseVolume, | ||
quoteVolume, | ||
}); | ||
}); | ||
} | ||
} | ||
|
||
module.exports = Tokpie; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
const Driver = require('../models/driver'); | ||
const request = require('../lib/request'); | ||
const Ticker = require('../models/ticker'); | ||
const { parseToFloat } = require('../lib/utils'); | ||
|
||
/** | ||
* @memberof Driver | ||
* @augments Driver | ||
*/ | ||
class Xeggex extends Driver { | ||
/** | ||
* @augments Driver.fetchTickers | ||
* @returns {Promise.Array<Ticker>} Returns a promise of an array with tickers. | ||
*/ | ||
async fetchTickers() { | ||
const markets = await request('https://api.xeggex.com/api/v2/tickers'); | ||
|
||
return Object.keys(markets).flatMap((market) => { | ||
const ticker = markets[market]; | ||
|
||
return new Ticker({ | ||
base: ticker.base_currency, | ||
quote: ticker.target_currency, | ||
high: parseToFloat(ticker.high), | ||
low: parseToFloat(ticker.low), | ||
const: parseToFloat(ticker.last_price), | ||
bid: parseToFloat(ticker.bid), | ||
ask: parseToFloat(ticker.ask), | ||
baseVolume: parseToFloat(ticker.base_volume), | ||
quoteVolume: parseToFloat(ticker.target_volume), | ||
}); | ||
}); | ||
} | ||
} | ||
|
||
module.exports = Xeggex; |
Oops, something went wrong.