-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexchange-capabilities.js
63 lines (48 loc) · 1.67 KB
/
exchange-capabilities.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
55
56
57
58
59
60
61
62
63
"use strict";
/* ------------------------------------------------------------------------ */
const ccxt = require ('../../ccxt.js')
, asTable = require ('as-table') // .configure ({ print: require ('string.ify').noPretty })
, log = require ('ololog').noLocate
, ansi = require ('ansicolor').nice
;(async function test () {
let total = 0
let missing = 0
let implemented = 0
log (asTable (ccxt.exchanges.map (id => new ccxt[id]()).map (exchange => {
let result = {};
[
'hasPublicAPI',
'hasPrivateAPI',
'hasCORS',
'hasFetchTicker',
'hasFetchTickers',
'hasFetchOrderBook',
'hasFetchTrades',
'hasFetchOHLCV',
'hasFetchBalance',
'hasCreateOrder',
'hasCancelOrder',
'hasFetchOrder',
'hasFetchOrders',
'hasFetchOpenOrders',
'hasFetchClosedOrders',
'hasFetchMyTrades',
'hasFetchCurrencies',
'hasDeposit',
'hasWithdraw',
].forEach (key => {
total += 1
let capability = exchange[key].toString ()
if (!exchange[key]) {
capability = exchange.id.red.dim
missing += 1
} else {
capability = exchange.id.green
implemented += 1
}
result[key.slice (3)] = capability
})
return result
})))
log (implemented.toString ().green, 'implemented and', missing.toString ().red, 'missing methods of', total.toString ().yellow, 'methods it total')
}) ()