@jmparsons/ccxt
Version:
A JavaScript / Python / PHP cryptocurrency trading library with support for 100+ exchanges
32 lines (20 loc) • 786 B
JavaScript
// ----------------------------------------------------------------------------
const log = require ('ololog')
, ansi = require ('ansicolor').nice
, chai = require ('chai')
, expect = chai.expect
, assert = chai.assert
, testOrderBook = require ('./test.orderbook.js')
/* ------------------------------------------------------------------------ */
module.exports = async (exchange, symbol) => {
// log (symbol.green, 'fetching order book...')
const method = 'fetchOrderBook'
if (exchange.has[method]) {
let orderbook = await exchange[method] (symbol)
testOrderBook (exchange, orderbook, method, symbol)
return orderbook
} else {
log (method + '() not supported')
}
}