forked from ccxt/ccxt
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcoinmarketcap.js
More file actions
283 lines (269 loc) · 9.64 KB
/
Copy pathcoinmarketcap.js
File metadata and controls
283 lines (269 loc) · 9.64 KB
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
'use strict';
// ---------------------------------------------------------------------------
const Exchange = require ('./base/Exchange');
const { ExchangeError } = require ('./base/errors');
// ---------------------------------------------------------------------------
module.exports = class coinmarketcap extends Exchange {
describe () {
return this.deepExtend (super.describe (), {
'id': 'coinmarketcap',
'name': 'CoinMarketCap',
'rateLimit': 10000,
'version': 'v1',
'countries': 'US',
'has': {
'CORS': true,
'privateAPI': false,
'createOrder': false,
'cancelOrder': false,
'fetchBalance': false,
'fetchOrderBook': false,
'fetchTrades': false,
'fetchTickers': true,
'fetchCurrencies': true,
},
'urls': {
'logo': 'https://user-images.githubusercontent.com/1294454/28244244-9be6312a-69ed-11e7-99c1-7c1797275265.jpg',
'api': {
'public': 'https://api.coinmarketcap.com',
'files': 'https://files.coinmarketcap.com',
'charts': 'https://graph.coinmarketcap.com',
},
'www': 'https://coinmarketcap.com',
'doc': 'https://coinmarketcap.com/api',
},
'requiredCredentials': {
'apiKey': false,
'secret': false,
},
'api': {
'files': {
'get': [
'generated/stats/global.json',
],
},
'graphs': {
'get': [
'currencies/{name}/',
],
},
'public': {
'get': [
'ticker/',
'ticker/{id}/',
'global/',
],
},
},
'currencyCodes': [
'AUD',
'BRL',
'CAD',
'CHF',
'CNY',
'EUR',
'GBP',
'HKD',
'IDR',
'INR',
'JPY',
'KRW',
'MXN',
'RUB',
'USD',
],
});
}
async fetchOrderBook (symbol, limit = undefined, params = {}) {
throw new ExchangeError ('Fetching order books is not supported by the API of ' + this.id);
}
currencyCode (base, name) {
const currencies = {
'BatCoin': 'BatCoin',
'Bitgem': 'Bitgem',
'BlockCAT': 'BlockCAT',
'Catcoin': 'Catcoin',
'iCoin': 'iCoin',
'NetCoin': 'NetCoin',
// a special case, most exchanges list it as IOTA, therefore
// we change just the Coinmarketcap instead of changing them all
'MIOTA': 'IOTA',
};
if (name in currencies)
return currencies[name];
return base;
}
async fetchMarkets () {
let markets = await this.publicGetTicker ({
'limit': 0,
});
let result = [];
for (let p = 0; p < markets.length; p++) {
let market = markets[p];
let currencies = this.currencyCodes;
for (let i = 0; i < currencies.length; i++) {
let quote = currencies[i];
let quoteId = quote.toLowerCase ();
let baseId = market['id'];
let base = this.currencyCode (market['symbol'], market['name']);
let symbol = base + '/' + quote;
let id = baseId + '/' + quote;
result.push ({
'id': id,
'symbol': symbol,
'base': base,
'quote': quote,
'baseId': baseId,
'quoteId': quoteId,
'info': market,
});
}
}
return result;
}
async fetchGlobal (currency = 'USD') {
await this.loadMarkets ();
let request = {};
if (currency)
request['convert'] = currency;
return await this.publicGetGlobal (request);
}
parseTicker (ticker, market = undefined) {
let timestamp = this.milliseconds ();
if ('last_updated' in ticker)
if (ticker['last_updated'])
timestamp = parseInt (ticker['last_updated']) * 1000;
let change = undefined;
if ('percent_change_24h' in ticker)
if (ticker['percent_change_24h'])
change = this.safeFloat (ticker, 'percent_change_24h');
let last = undefined;
let symbol = undefined;
let volume = undefined;
if (market) {
let priceKey = 'price_' + market['quoteId'];
if (priceKey in ticker)
if (ticker[priceKey])
last = this.safeFloat (ticker, priceKey);
symbol = market['symbol'];
let volumeKey = '24h_volume_' + market['quoteId'];
if (volumeKey in ticker)
if (ticker[volumeKey])
volume = this.safeFloat (ticker, volumeKey);
}
return {
'symbol': symbol,
'timestamp': timestamp,
'datetime': this.iso8601 (timestamp),
'high': undefined,
'low': undefined,
'bid': undefined,
'ask': undefined,
'vwap': undefined,
'open': undefined,
'close': undefined,
'first': undefined,
'last': last,
'change': change,
'percentage': undefined,
'average': undefined,
'baseVolume': undefined,
'quoteVolume': volume,
'info': ticker,
};
}
async fetchTickers (currency = 'USD', params = {}) {
await this.loadMarkets ();
let request = {
'limit': 10000,
};
if (currency)
request['convert'] = currency;
let response = await this.publicGetTicker (this.extend (request, params));
let tickers = {};
for (let t = 0; t < response.length; t++) {
let ticker = response[t];
let id = ticker['id'] + '/' + currency;
let symbol = id;
let market = undefined;
if (id in this.markets_by_id) {
market = this.markets_by_id[id];
symbol = market['symbol'];
}
tickers[symbol] = this.parseTicker (ticker, market);
}
return tickers;
}
async fetchTicker (symbol, params = {}) {
await this.loadMarkets ();
let market = this.market (symbol);
let request = this.extend ({
'convert': market['quote'],
'id': market['baseId'],
}, params);
let response = await this.publicGetTickerId (request);
let ticker = response[0];
return this.parseTicker (ticker, market);
}
async fetchCurrencies (params = {}) {
let currencies = await this.publicGetTicker (this.extend ({
'limit': 0,
}, params));
let result = {};
for (let i = 0; i < currencies.length; i++) {
let currency = currencies[i];
let id = currency['symbol'];
let name = currency['name'];
// todo: will need to rethink the fees
// to add support for multiple withdrawal/deposit methods and
// differentiated fees for each particular method
let precision = 8; // default precision, todo: fix "magic constants"
let code = this.currencyCode (id, name);
result[code] = {
'id': id,
'code': code,
'info': currency,
'name': name,
'active': true,
'status': 'ok',
'fee': undefined, // todo: redesign
'precision': precision,
'limits': {
'amount': {
'min': Math.pow (10, -precision),
'max': Math.pow (10, precision),
},
'price': {
'min': Math.pow (10, -precision),
'max': Math.pow (10, precision),
},
'cost': {
'min': undefined,
'max': undefined,
},
'withdraw': {
'min': undefined,
'max': undefined,
},
},
};
}
return result;
}
sign (path, api = 'public', method = 'GET', params = {}, headers = undefined, body = undefined) {
let url = this.urls['api'][api] + '/' + this.version + '/' + this.implodeParams (path, params);
let query = this.omit (params, this.extractParams (path));
if (Object.keys (query).length)
url += '?' + this.urlencode (query);
return { 'url': url, 'method': method, 'body': body, 'headers': headers };
}
async request (path, api = 'public', method = 'GET', params = {}, headers = undefined, body = undefined) {
let response = await this.fetch2 (path, api, method, params, headers, body);
if ('error' in response) {
if (response['error']) {
throw new ExchangeError (this.id + ' ' + this.json (response));
}
}
return response;
}
};