-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathccxt-orderbook.js
54 lines (43 loc) · 1.46 KB
/
ccxt-orderbook.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
"use strict";
import ccxt from 'ccxt';
const aggregateOrderBookSide = function (orderbookSide, precision = undefined) {
const result = []
const amounts = {}
for (let i = 0; i < orderbookSide.length; i++) {
const ask = orderbookSide[i]
let price = ask[0]
if (precision !== undefined) {
price = ccxt.decimalToPrecision(price, ccxt.ROUND, precision, ccxt.TICK_SIZE)
}
amounts[price] = (amounts[price] || 0) + ask[1]
}
Object.keys(amounts).forEach(price => {
result.push([
parseFloat(price),
amounts[price]
])
})
return result
}
const aggregateOrderBook = function (orderbook, precision = undefined) {
let asks = aggregateOrderBookSide(orderbook['asks'], precision)
let bids = aggregateOrderBookSide(orderbook['bids'], precision)
return {
'asks': ccxt.sortBy(asks, 0, true),
'bids': ccxt.sortBy(bids, 0, true),
'timestamp': orderbook['timestamp'],
'datetime': orderbook['datetime'],
'nonce': orderbook['nonce'],
};
}
; (async () => {
const exchange = new ccxt.kraken()
await exchange.loadMarkets()
// exchange.verbose = true // uncomment for verbose debug output
// level 2 (default)
const orderbook = await exchange.fetchOrderBook('XMR/EUR')
// or level 3
// const orderbook = await exchange.fetchOrderBook('BTC/USD', undefined, { 'level': 3 })
const step = 0.01 // 0.01, 0.1, 0.5, 1.0, 2.5, 5.0, 10.0
console.log(aggregateOrderBook(orderbook, step))
})();