ccxt-look 1.81.50
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.cache/eslintcache +1 -0
- package/.dockerignore +6 -0
- package/.eslintignore +1 -0
- package/.gitattributes +5 -0
- package/.readthedocs.yaml +16 -0
- package/CONTRIBUTING.md +1049 -0
- package/LICENSE.txt +21 -0
- package/README.md +537 -0
- package/SECURITY.md +5 -0
- package/build/cleanup-old-tags.js +94 -0
- package/build/countries.js +256 -0
- package/build/export-exchanges.js +520 -0
- package/build/fs.js +51 -0
- package/build/transpile.js +1772 -0
- package/build/vss.js +78 -0
- package/ccxt.browser.js +7 -0
- package/ccxt.d.ts +692 -0
- package/ccxt.js +171 -0
- package/cleanup.sh +2 -0
- package/composer-install.sh +20 -0
- package/dist/ccxt.browser.js +208383 -0
- package/gource.sh +3 -0
- package/index.html +7 -0
- package/js/.eslintrc +87 -0
- package/js/aax.js +2686 -0
- package/js/ascendex.js +2584 -0
- package/js/base/.eslintrc.js +43 -0
- package/js/base/Exchange.js +2371 -0
- package/js/base/Precise.js +283 -0
- package/js/base/errorHierarchy.js +47 -0
- package/js/base/errors.js +55 -0
- package/js/base/functions/crypto.js +158 -0
- package/js/base/functions/encode.js +118 -0
- package/js/base/functions/generic.js +270 -0
- package/js/base/functions/misc.js +138 -0
- package/js/base/functions/number.js +329 -0
- package/js/base/functions/platform.js +38 -0
- package/js/base/functions/string.js +21 -0
- package/js/base/functions/throttle.js +79 -0
- package/js/base/functions/time.js +210 -0
- package/js/base/functions/type.js +66 -0
- package/js/base/functions.js +28 -0
- package/js/bequant.js +32 -0
- package/js/bibox.js +1407 -0
- package/js/bigone.js +1366 -0
- package/js/binance.js +5652 -0
- package/js/binancecoinm.js +46 -0
- package/js/binanceus.js +46 -0
- package/js/binanceusdm.js +49 -0
- package/js/bit2c.js +535 -0
- package/js/bitbank.js +842 -0
- package/js/bitbay.js +16 -0
- package/js/bitbns.js +1073 -0
- package/js/bitcoincom.js +15 -0
- package/js/bitfinex.js +1433 -0
- package/js/bitfinex2.js +2025 -0
- package/js/bitflyer.js +840 -0
- package/js/bitforex.js +614 -0
- package/js/bitget.js +2397 -0
- package/js/bithumb.js +980 -0
- package/js/bitmart.js +2516 -0
- package/js/bitmex.js +1809 -0
- package/js/bitopro.js +1443 -0
- package/js/bitpanda.js +1782 -0
- package/js/bitrue.js +1747 -0
- package/js/bitso.js +1062 -0
- package/js/bitstamp.js +1757 -0
- package/js/bitstamp1.js +343 -0
- package/js/bittrex.js +1876 -0
- package/js/bitvavo.js +1579 -0
- package/js/bkex.js +1233 -0
- package/js/bl3p.js +346 -0
- package/js/blockchaincom.js +969 -0
- package/js/btcalpha.js +680 -0
- package/js/btcbox.js +477 -0
- package/js/btcmarkets.js +1022 -0
- package/js/btctradeua.js +466 -0
- package/js/btcturk.js +734 -0
- package/js/buda.js +946 -0
- package/js/bw.js +1265 -0
- package/js/bybit.js +3372 -0
- package/js/bytetrade.js +1336 -0
- package/js/cdax.js +1646 -0
- package/js/cex.js +1410 -0
- package/js/coinbase.js +1342 -0
- package/js/coinbaseprime.js +31 -0
- package/js/coinbasepro.js +1466 -0
- package/js/coincheck.js +755 -0
- package/js/coinex.js +3400 -0
- package/js/coinfalcon.js +880 -0
- package/js/coinmate.js +794 -0
- package/js/coinone.js +816 -0
- package/js/coinspot.js +345 -0
- package/js/crex24.js +1636 -0
- package/js/cryptocom.js +1832 -0
- package/js/currencycom.js +1748 -0
- package/js/delta.js +1547 -0
- package/js/deribit.js +2148 -0
- package/js/digifinex.js +1585 -0
- package/js/eqonex.js +1660 -0
- package/js/exmo.js +1670 -0
- package/js/fairdesk.js +1231 -0
- package/js/flowbtc.js +35 -0
- package/js/fmfwio.js +34 -0
- package/js/ftx.js +2751 -0
- package/js/ftxus.js +38 -0
- package/js/gateio.js +4174 -0
- package/js/gemini.js +1397 -0
- package/js/hitbtc.js +1343 -0
- package/js/hitbtc3.js +2329 -0
- package/js/hollaex.js +1486 -0
- package/js/huobi.js +5706 -0
- package/js/huobijp.js +1710 -0
- package/js/huobipro.js +18 -0
- package/js/idex.js +1439 -0
- package/js/independentreserve.js +649 -0
- package/js/indodax.js +742 -0
- package/js/itbit.js +722 -0
- package/js/kraken.js +2179 -0
- package/js/kucoin.js +2571 -0
- package/js/kucoinfutures.js +1771 -0
- package/js/kuna.js +809 -0
- package/js/latoken.js +1445 -0
- package/js/lbank.js +760 -0
- package/js/liquid.js +1432 -0
- package/js/luno.js +873 -0
- package/js/lykke.js +1147 -0
- package/js/mercado.js +771 -0
- package/js/mexc.js +3151 -0
- package/js/ndax.js +2233 -0
- package/js/novadax.js +1318 -0
- package/js/oceanex.js +816 -0
- package/js/okcoin.js +3841 -0
- package/js/okex.js +16 -0
- package/js/okex5.js +16 -0
- package/js/okx.js +4795 -0
- package/js/paymium.js +498 -0
- package/js/phemex.js +2957 -0
- package/js/poloniex.js +1674 -0
- package/js/probit.js +1346 -0
- package/js/qtrade.js +1588 -0
- package/js/ripio.js +1061 -0
- package/js/static_dependencies/BN/bn.js +3526 -0
- package/js/static_dependencies/README.md +1 -0
- package/js/static_dependencies/crypto-js/crypto-js.js +5988 -0
- package/js/static_dependencies/elliptic/lib/elliptic/curve/base.js +375 -0
- package/js/static_dependencies/elliptic/lib/elliptic/curve/edwards.js +433 -0
- package/js/static_dependencies/elliptic/lib/elliptic/curve/index.js +8 -0
- package/js/static_dependencies/elliptic/lib/elliptic/curve/mont.js +180 -0
- package/js/static_dependencies/elliptic/lib/elliptic/curve/short.js +938 -0
- package/js/static_dependencies/elliptic/lib/elliptic/curves.js +204 -0
- package/js/static_dependencies/elliptic/lib/elliptic/ec/index.js +240 -0
- package/js/static_dependencies/elliptic/lib/elliptic/ec/key.js +119 -0
- package/js/static_dependencies/elliptic/lib/elliptic/ec/signature.js +24 -0
- package/js/static_dependencies/elliptic/lib/elliptic/eddsa/index.js +145 -0
- package/js/static_dependencies/elliptic/lib/elliptic/eddsa/key.js +100 -0
- package/js/static_dependencies/elliptic/lib/elliptic/eddsa/signature.js +65 -0
- package/js/static_dependencies/elliptic/lib/elliptic/precomputed/secp256k1.js +780 -0
- package/js/static_dependencies/elliptic/lib/elliptic/utils.js +214 -0
- package/js/static_dependencies/elliptic/lib/elliptic.js +22 -0
- package/js/static_dependencies/elliptic/lib/hmac-drbg/hmac-drbg.js +114 -0
- package/js/static_dependencies/fetch-ponyfill/fetch-node.js +39 -0
- package/js/static_dependencies/node-fetch/index.js +1564 -0
- package/js/static_dependencies/node-rsa/NodeRSA.js +223 -0
- package/js/static_dependencies/node-rsa/asn1/ber/errors.js +13 -0
- package/js/static_dependencies/node-rsa/asn1/ber/index.js +21 -0
- package/js/static_dependencies/node-rsa/asn1/ber/reader.js +262 -0
- package/js/static_dependencies/node-rsa/asn1/ber/types.js +36 -0
- package/js/static_dependencies/node-rsa/asn1/index.js +17 -0
- package/js/static_dependencies/node-rsa/encryptEngines/js.js +34 -0
- package/js/static_dependencies/node-rsa/formats/components.js +71 -0
- package/js/static_dependencies/node-rsa/formats/formats.js +31 -0
- package/js/static_dependencies/node-rsa/formats/pkcs1.js +148 -0
- package/js/static_dependencies/node-rsa/formats/pkcs8.js +187 -0
- package/js/static_dependencies/node-rsa/libs/jsbn.js +1252 -0
- package/js/static_dependencies/node-rsa/libs/rsa.js +147 -0
- package/js/static_dependencies/node-rsa/schemes/pkcs1.js +176 -0
- package/js/static_dependencies/node-rsa/schemes/schemes.js +21 -0
- package/js/static_dependencies/node-rsa/utils.js +98 -0
- package/js/static_dependencies/qs/formats.js +18 -0
- package/js/static_dependencies/qs/index.js +11 -0
- package/js/static_dependencies/qs/parse.js +242 -0
- package/js/static_dependencies/qs/stringify.js +269 -0
- package/js/static_dependencies/qs/utils.js +230 -0
- package/js/stex.js +1925 -0
- package/js/test/.eslintrc.js +42 -0
- package/js/test/Exchange/test.balance.js +61 -0
- package/js/test/Exchange/test.borrowRate.js +32 -0
- package/js/test/Exchange/test.currency.js +52 -0
- package/js/test/Exchange/test.fetchBalance.js +23 -0
- package/js/test/Exchange/test.fetchBorrowInterest.js +59 -0
- package/js/test/Exchange/test.fetchBorrowRate.js +32 -0
- package/js/test/Exchange/test.fetchBorrowRates.js +28 -0
- package/js/test/Exchange/test.fetchClosedOrders.js +32 -0
- package/js/test/Exchange/test.fetchCurrencies.js +35 -0
- package/js/test/Exchange/test.fetchDeposits.js +31 -0
- package/js/test/Exchange/test.fetchFundingFees.js +19 -0
- package/js/test/Exchange/test.fetchFundingRateHistory.js +40 -0
- package/js/test/Exchange/test.fetchL2OrderBook.js +23 -0
- package/js/test/Exchange/test.fetchLedger.js +42 -0
- package/js/test/Exchange/test.fetchLeverageTiers.js +33 -0
- package/js/test/Exchange/test.fetchMarketLeverageTiers.js +22 -0
- package/js/test/Exchange/test.fetchMarkets.js +33 -0
- package/js/test/Exchange/test.fetchMyTrades.js +42 -0
- package/js/test/Exchange/test.fetchOHLCV.js +46 -0
- package/js/test/Exchange/test.fetchOpenOrders.js +36 -0
- package/js/test/Exchange/test.fetchOrderBook.js +25 -0
- package/js/test/Exchange/test.fetchOrderBooks.js +35 -0
- package/js/test/Exchange/test.fetchOrders.js +41 -0
- package/js/test/Exchange/test.fetchPositions.js +47 -0
- package/js/test/Exchange/test.fetchStatus.js +35 -0
- package/js/test/Exchange/test.fetchTicker.js +38 -0
- package/js/test/Exchange/test.fetchTickers.js +49 -0
- package/js/test/Exchange/test.fetchTrades.js +39 -0
- package/js/test/Exchange/test.fetchTradingFee.js +18 -0
- package/js/test/Exchange/test.fetchTradingFees.js +22 -0
- package/js/test/Exchange/test.fetchTransactions.js +31 -0
- package/js/test/Exchange/test.fetchWithdrawals.js +31 -0
- package/js/test/Exchange/test.ledgerItem.js +46 -0
- package/js/test/Exchange/test.leverageTier.js +33 -0
- package/js/test/Exchange/test.loadMarkets.js +35 -0
- package/js/test/Exchange/test.market.js +129 -0
- package/js/test/Exchange/test.ohlcv.js +33 -0
- package/js/test/Exchange/test.order.js +62 -0
- package/js/test/Exchange/test.orderbook.js +61 -0
- package/js/test/Exchange/test.position.js +21 -0
- package/js/test/Exchange/test.throttle.js +94 -0
- package/js/test/Exchange/test.ticker.js +95 -0
- package/js/test/Exchange/test.trade.js +68 -0
- package/js/test/Exchange/test.tradingFee.js +34 -0
- package/js/test/Exchange/test.transaction.js +35 -0
- package/js/test/base/.eslintrc +38 -0
- package/js/test/base/functions/test.crypto.js +110 -0
- package/js/test/base/functions/test.datetime.js +62 -0
- package/js/test/base/functions/test.generic.js +152 -0
- package/js/test/base/functions/test.number.js +362 -0
- package/js/test/base/functions/test.time.js +56 -0
- package/js/test/base/functions/test.type.js +53 -0
- package/js/test/base/test.base.js +193 -0
- package/js/test/errors/test.InsufficientFunds.js +86 -0
- package/js/test/errors/test.InvalidNonce.js +64 -0
- package/js/test/errors/test.InvalidOrder.js +35 -0
- package/js/test/errors/test.OrderNotFound.js +39 -0
- package/js/test/test.js +426 -0
- package/js/test/test.timeout_hang.js +12 -0
- package/js/therock.js +1431 -0
- package/js/tidebit.js +632 -0
- package/js/tidex.js +939 -0
- package/js/timex.js +1283 -0
- package/js/upbit.js +1622 -0
- package/js/vcc.js +1353 -0
- package/js/wavesexchange.js +2185 -0
- package/js/wazirx.js +732 -0
- package/js/whitebit.js +1352 -0
- package/js/woo.js +1577 -0
- package/js/xena.js +1948 -0
- package/js/yobit.js +1129 -0
- package/js/zaif.js +647 -0
- package/js/zb.js +4088 -0
- package/js/zipmex.js +40 -0
- package/js/zonda.js +1497 -0
- package/multilang.sh +159 -0
- package/package.json +591 -0
- package/postinstall.js +103 -0
@@ -0,0 +1,270 @@
|
|
1
|
+
"use strict";
|
2
|
+
|
3
|
+
// ----------------------------------------------------------------------------
|
4
|
+
|
5
|
+
const { isObject, isNumber, isDictionary, isArray } = require ('./type')
|
6
|
+
|
7
|
+
// ----------------------------------------------------------------------------
|
8
|
+
|
9
|
+
const keys = Object.keys
|
10
|
+
, values = (x) => ((!isArray (x)) ? Object.values (x) : x) // don't copy arrays if they're already arrays
|
11
|
+
, index = (x) => new Set (values (x))
|
12
|
+
, extend = (...args) => Object.assign ({}, ...args) // NB: side-effect free
|
13
|
+
, clone = (x) => (isArray (x) ? Array.from (x) : extend (x)) // clone arrays or objects
|
14
|
+
|
15
|
+
// ----------------------------------------------------------------------------
|
16
|
+
|
17
|
+
module.exports = {
|
18
|
+
keys
|
19
|
+
, values
|
20
|
+
, extend
|
21
|
+
, clone
|
22
|
+
, index
|
23
|
+
, ordered: (x) => x // a stub to keep assoc keys in order (in JS it does nothing, it's mostly for Python)
|
24
|
+
, unique: (x) => Array.from (index (x))
|
25
|
+
, arrayConcat: (a, b) => a.concat (b)
|
26
|
+
|
27
|
+
// ------------------------------------------------------------------------
|
28
|
+
|
29
|
+
, inArray (needle, haystack) {
|
30
|
+
|
31
|
+
return haystack.includes (needle)
|
32
|
+
}
|
33
|
+
|
34
|
+
, toArray (object) {
|
35
|
+
|
36
|
+
return Object.values (object)
|
37
|
+
}
|
38
|
+
|
39
|
+
, isEmpty (object) {
|
40
|
+
if (!object) {
|
41
|
+
return true
|
42
|
+
}
|
43
|
+
return (Array.isArray (object) ? object : Object.keys (object)).length < 1;
|
44
|
+
}
|
45
|
+
|
46
|
+
// ------------------------------------------------------------------------
|
47
|
+
|
48
|
+
, keysort (x, out = {}) {
|
49
|
+
|
50
|
+
for (const k of keys (x).sort ()) {
|
51
|
+
out[k] = x[k]
|
52
|
+
}
|
53
|
+
|
54
|
+
return out
|
55
|
+
}
|
56
|
+
|
57
|
+
// ------------------------------------------------------------------------
|
58
|
+
|
59
|
+
/*
|
60
|
+
Accepts a map/array of objects and a key name to be used as an index:
|
61
|
+
array = [
|
62
|
+
{ someKey: 'value1', anotherKey: 'anotherValue1' },
|
63
|
+
{ someKey: 'value2', anotherKey: 'anotherValue2' },
|
64
|
+
{ someKey: 'value3', anotherKey: 'anotherValue3' },
|
65
|
+
]
|
66
|
+
key = 'someKey'
|
67
|
+
|
68
|
+
Returns a map:
|
69
|
+
{
|
70
|
+
value1: { someKey: 'value1', anotherKey: 'anotherValue1' },
|
71
|
+
value2: { someKey: 'value2', anotherKey: 'anotherValue2' },
|
72
|
+
value3: { someKey: 'value3', anotherKey: 'anotherValue3' },
|
73
|
+
}
|
74
|
+
*/
|
75
|
+
|
76
|
+
, indexBy (x, k, out = {}) {
|
77
|
+
|
78
|
+
for (const v of values (x)) {
|
79
|
+
if (k in v) {
|
80
|
+
out[v[k]] = v
|
81
|
+
}
|
82
|
+
}
|
83
|
+
|
84
|
+
return out
|
85
|
+
}
|
86
|
+
|
87
|
+
// ------------------------------------------------------------------------
|
88
|
+
|
89
|
+
/*
|
90
|
+
Accepts a map/array of objects and a key name to be used as a grouping parameter:
|
91
|
+
array = [
|
92
|
+
{ someKey: 'value1', anotherKey: 'anotherValue1' },
|
93
|
+
{ someKey: 'value1', anotherKey: 'anotherValue2' },
|
94
|
+
{ someKey: 'value3', anotherKey: 'anotherValue3' },
|
95
|
+
]
|
96
|
+
key = 'someKey'
|
97
|
+
|
98
|
+
Returns a map:
|
99
|
+
{
|
100
|
+
value1: [
|
101
|
+
{ someKey: 'value1', anotherKey: 'anotherValue1' },
|
102
|
+
{ someKey: 'value1', anotherKey: 'anotherValue2' },
|
103
|
+
]
|
104
|
+
value3: [
|
105
|
+
{ someKey: 'value3', anotherKey: 'anotherValue3' }
|
106
|
+
],
|
107
|
+
}
|
108
|
+
*/
|
109
|
+
|
110
|
+
, groupBy (x, k, out = {}) {
|
111
|
+
|
112
|
+
for (const v of values (x)) {
|
113
|
+
if (k in v) {
|
114
|
+
const p = v[k]
|
115
|
+
out[p] = out[p] || []
|
116
|
+
out[p].push (v)
|
117
|
+
}
|
118
|
+
}
|
119
|
+
return out
|
120
|
+
}
|
121
|
+
|
122
|
+
// ------------------------------------------------------------------------
|
123
|
+
|
124
|
+
/*
|
125
|
+
Accepts a map/array of objects, a key name and a key value to be used as a filter:
|
126
|
+
array = [
|
127
|
+
{ someKey: 'value1', anotherKey: 'anotherValue1' },
|
128
|
+
{ someKey: 'value2', anotherKey: 'anotherValue2' },
|
129
|
+
{ someKey: 'value3', anotherKey: 'anotherValue3' },
|
130
|
+
]
|
131
|
+
key = 'someKey'
|
132
|
+
value = 'value1'
|
133
|
+
|
134
|
+
Returns an array:
|
135
|
+
[
|
136
|
+
value1: { someKey: 'value1', anotherKey: 'anotherValue1' },
|
137
|
+
]
|
138
|
+
*/
|
139
|
+
|
140
|
+
, filterBy (x, k, value = undefined, out = []) {
|
141
|
+
|
142
|
+
for (const v of values (x)) {
|
143
|
+
if (v[k] === value) {
|
144
|
+
out.push (v)
|
145
|
+
}
|
146
|
+
}
|
147
|
+
|
148
|
+
return out
|
149
|
+
}
|
150
|
+
|
151
|
+
// ------------------------------------------------------------------------
|
152
|
+
// NB: MUTATES ARRAY!
|
153
|
+
|
154
|
+
, sortBy: (array, key, descending = false, direction = descending ? -1 : 1) => array.sort ((a, b) => {
|
155
|
+
if (a[key] < b[key]) {
|
156
|
+
return -direction
|
157
|
+
} else if (a[key] > b[key]) {
|
158
|
+
return direction
|
159
|
+
} else {
|
160
|
+
return 0
|
161
|
+
}
|
162
|
+
})
|
163
|
+
|
164
|
+
, sortBy2: (array, key1, key2, descending = false, direction = descending ? -1 : 1) => array.sort ((a, b) => {
|
165
|
+
if (a[key1] < b[key1]) {
|
166
|
+
return -direction
|
167
|
+
} else if (a[key1] > b[key1]) {
|
168
|
+
return direction
|
169
|
+
} else {
|
170
|
+
if (a[key2] < b[key2]) {
|
171
|
+
return -direction;
|
172
|
+
} else if (a[key2] > b[key2]) {
|
173
|
+
return direction;
|
174
|
+
} else {
|
175
|
+
return 0
|
176
|
+
}
|
177
|
+
}
|
178
|
+
})
|
179
|
+
|
180
|
+
// ------------------------------------------------------------------------
|
181
|
+
|
182
|
+
, flatten: function flatten (x, out = []) {
|
183
|
+
|
184
|
+
for (const v of x) {
|
185
|
+
if (isArray (v)) {
|
186
|
+
flatten (v, out)
|
187
|
+
} else {
|
188
|
+
out.push (v)
|
189
|
+
}
|
190
|
+
}
|
191
|
+
|
192
|
+
return out
|
193
|
+
}
|
194
|
+
|
195
|
+
// ------------------------------------------------------------------------
|
196
|
+
|
197
|
+
, pluck: (x, k) => values (x).filter ((v) => k in v).map ((v) => v[k])
|
198
|
+
|
199
|
+
// ------------------------------------------------------------------------
|
200
|
+
|
201
|
+
, omit (x, ...args) {
|
202
|
+
|
203
|
+
if (!Array.isArray (x)) {
|
204
|
+
|
205
|
+
const out = clone (x)
|
206
|
+
|
207
|
+
for (const k of args) {
|
208
|
+
if (isArray (k)) { // omit (x, ['a', 'b'])
|
209
|
+
for (const kk of k) {
|
210
|
+
delete out[kk]
|
211
|
+
}
|
212
|
+
} else {
|
213
|
+
delete out[k] // omit (x, 'a', 'b')
|
214
|
+
}
|
215
|
+
}
|
216
|
+
|
217
|
+
return out
|
218
|
+
}
|
219
|
+
|
220
|
+
return x
|
221
|
+
}
|
222
|
+
|
223
|
+
// ------------------------------------------------------------------------
|
224
|
+
|
225
|
+
, sum (...xs) {
|
226
|
+
|
227
|
+
const ns = xs.filter (isNumber) // leave only numbers
|
228
|
+
|
229
|
+
return (ns.length > 0) ? ns.reduce ((a, b) => a + b, 0) : undefined
|
230
|
+
}
|
231
|
+
|
232
|
+
// ------------------------------------------------------------------------
|
233
|
+
|
234
|
+
, deepExtend: function deepExtend (...xs) {
|
235
|
+
let out = undefined
|
236
|
+
for (const x of xs) {
|
237
|
+
if (isDictionary (x)) {
|
238
|
+
if (!isDictionary (out)) {
|
239
|
+
out = {}
|
240
|
+
}
|
241
|
+
for (const k in x) {
|
242
|
+
out[k] = deepExtend (out[k], x[k])
|
243
|
+
}
|
244
|
+
} else {
|
245
|
+
out = x
|
246
|
+
}
|
247
|
+
}
|
248
|
+
return out
|
249
|
+
}
|
250
|
+
|
251
|
+
// ------------------------------------------------------------------------
|
252
|
+
|
253
|
+
, merge (target, ...args) {
|
254
|
+
// doesn't overwrite defined keys with undefined
|
255
|
+
const overwrite = {}
|
256
|
+
const merged = Object.assign ({}, ...args)
|
257
|
+
const keys = Object.keys (merged)
|
258
|
+
for (let i = 0; i < keys.length; i++) {
|
259
|
+
const key = keys[i]
|
260
|
+
if (target[key] === undefined) {
|
261
|
+
overwrite[key] = merged[key]
|
262
|
+
}
|
263
|
+
}
|
264
|
+
// eslint-disable-next-line
|
265
|
+
return Object.assign ({}, target, overwrite)
|
266
|
+
}
|
267
|
+
|
268
|
+
// ----------------------------------------------------------------------------
|
269
|
+
|
270
|
+
}
|
@@ -0,0 +1,138 @@
|
|
1
|
+
'use strict';
|
2
|
+
|
3
|
+
const { ROUND_UP, ROUND_DOWN } = require ('./number')
|
4
|
+
const { NotSupported } = require ('../errors')
|
5
|
+
|
6
|
+
//-------------------------------------------------------------------------
|
7
|
+
// converts timeframe to seconds
|
8
|
+
const parseTimeframe = (timeframe) => {
|
9
|
+
|
10
|
+
const amount = timeframe.slice (0, -1)
|
11
|
+
const unit = timeframe.slice (-1)
|
12
|
+
let scale = undefined;
|
13
|
+
|
14
|
+
if (unit === 'y') {
|
15
|
+
scale = 60 * 60 * 24 * 365
|
16
|
+
} else if (unit === 'M') {
|
17
|
+
scale = 60 * 60 * 24 * 30
|
18
|
+
} else if (unit === 'w') {
|
19
|
+
scale = 60 * 60 * 24 * 7
|
20
|
+
} else if (unit === 'd') {
|
21
|
+
scale = 60 * 60 * 24
|
22
|
+
} else if (unit === 'h') {
|
23
|
+
scale = 60 * 60
|
24
|
+
} else if (unit === 'm') {
|
25
|
+
scale = 60
|
26
|
+
} else if (unit === 's') {
|
27
|
+
scale = 1
|
28
|
+
} else {
|
29
|
+
throw new NotSupported ('timeframe unit ' + unit + ' is not supported')
|
30
|
+
}
|
31
|
+
|
32
|
+
return amount * scale
|
33
|
+
}
|
34
|
+
|
35
|
+
const roundTimeframe = (timeframe, timestamp, direction = ROUND_DOWN) => {
|
36
|
+
const ms = parseTimeframe (timeframe) * 1000
|
37
|
+
// Get offset based on timeframe in milliseconds
|
38
|
+
const offset = timestamp % ms
|
39
|
+
return timestamp - offset + ((direction === ROUND_UP) ? ms : 0);
|
40
|
+
}
|
41
|
+
|
42
|
+
// given a sorted arrays of trades (recent last) and a timeframe builds an array of OHLCV candles
|
43
|
+
const buildOHLCVC = (trades, timeframe = '1m', since = -Infinity, limit = Infinity) => {
|
44
|
+
const ms = parseTimeframe (timeframe) * 1000;
|
45
|
+
const ohlcvs = [];
|
46
|
+
const [ timestamp, /* open */, high, low, close, volume, count ] = [ 0, 1, 2, 3, 4, 5, 6 ];
|
47
|
+
const oldest = Math.min (trades.length - 1, limit);
|
48
|
+
|
49
|
+
for (let i = 0; i <= oldest; i++) {
|
50
|
+
const trade = trades[i];
|
51
|
+
if (trade.timestamp < since) {
|
52
|
+
continue;
|
53
|
+
}
|
54
|
+
const openingTime = Math.floor (trade.timestamp / ms) * ms; // shift to the edge of m/h/d (but not M)
|
55
|
+
const candle = ohlcvs.length - 1;
|
56
|
+
|
57
|
+
if (candle === -1 || openingTime >= ohlcvs[candle][timestamp] + ms) {
|
58
|
+
// moved to a new timeframe -> create a new candle from opening trade
|
59
|
+
ohlcvs.push ([
|
60
|
+
openingTime, // timestamp
|
61
|
+
trade.price, // O
|
62
|
+
trade.price, // H
|
63
|
+
trade.price, // L
|
64
|
+
trade.price, // C
|
65
|
+
trade.amount, // V
|
66
|
+
1, // count
|
67
|
+
]);
|
68
|
+
} else {
|
69
|
+
// still processing the same timeframe -> update opening trade
|
70
|
+
ohlcvs[candle][high] = Math.max (ohlcvs[candle][high], trade.price);
|
71
|
+
ohlcvs[candle][low] = Math.min (ohlcvs[candle][low], trade.price);
|
72
|
+
ohlcvs[candle][close] = trade.price;
|
73
|
+
ohlcvs[candle][volume] += trade.amount;
|
74
|
+
ohlcvs[candle][count]++;
|
75
|
+
} // if
|
76
|
+
} // for
|
77
|
+
return ohlcvs;
|
78
|
+
}
|
79
|
+
|
80
|
+
const extractParams = (string) => {
|
81
|
+
const re = /{([\w-]+)}/g
|
82
|
+
const matches = []
|
83
|
+
let match = re.exec (string)
|
84
|
+
while (match) {
|
85
|
+
matches.push (match[1])
|
86
|
+
match = re.exec (string)
|
87
|
+
}
|
88
|
+
return matches
|
89
|
+
}
|
90
|
+
|
91
|
+
const implodeParams = (string, params) => {
|
92
|
+
if (!Array.isArray (params)) {
|
93
|
+
const keys = Object.keys (params)
|
94
|
+
for (let i = 0; i < keys.length; i++) {
|
95
|
+
const key = keys[i]
|
96
|
+
if (!Array.isArray (params[key])) {
|
97
|
+
string = string.replace ('{' + key + '}', params[key])
|
98
|
+
}
|
99
|
+
}
|
100
|
+
}
|
101
|
+
return string
|
102
|
+
}
|
103
|
+
|
104
|
+
function vwap (baseVolume, quoteVolume) {
|
105
|
+
return ((baseVolume !== undefined) && (quoteVolume !== undefined) && (baseVolume > 0)) ? (quoteVolume / baseVolume) : undefined
|
106
|
+
}
|
107
|
+
|
108
|
+
/* ------------------------------------------------------------------------ */
|
109
|
+
|
110
|
+
module.exports = {
|
111
|
+
|
112
|
+
aggregate (bidasks) {
|
113
|
+
|
114
|
+
const result = {}
|
115
|
+
|
116
|
+
for (let i = 0; i < bidasks.length; i++) {
|
117
|
+
const [ price, volume ] = bidasks[i];
|
118
|
+
if (volume > 0) {
|
119
|
+
result[price] = (result[price] || 0) + volume
|
120
|
+
}
|
121
|
+
}
|
122
|
+
|
123
|
+
return Object.keys (result).map ((price) => [parseFloat (price), parseFloat (result[price])])
|
124
|
+
},
|
125
|
+
|
126
|
+
parseTimeframe,
|
127
|
+
roundTimeframe,
|
128
|
+
buildOHLCVC,
|
129
|
+
ROUND_UP,
|
130
|
+
ROUND_DOWN,
|
131
|
+
|
132
|
+
implodeParams,
|
133
|
+
extractParams,
|
134
|
+
|
135
|
+
vwap,
|
136
|
+
}
|
137
|
+
|
138
|
+
/* ------------------------------------------------------------------------ */
|