ccxt-js
Version:
The node.js portion of original ccxt cryptocurrency trading library with support for 100+ exchanges. It reduces the size of the library from 40MB to 8MB
31 lines (20 loc) • 787 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 = 'fetchL2OrderBook'
if (exchange.has[method]) {
let orderbook = await exchange[method] (symbol)
testOrderBook (exchange, orderbook, method, symbol)
return orderbook
} else {
log (method + '() not supported')
}
}