-
Notifications
You must be signed in to change notification settings - Fork 0
/
bitso.js
395 lines (377 loc) · 15.5 KB
/
bitso.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
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
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
'use strict';
// ---------------------------------------------------------------------------
const Exchange = require ('./base/Exchange');
const { ExchangeError } = require ('./base/errors');
// ---------------------------------------------------------------------------
module.exports = class bitso extends Exchange {
describe () {
return this.deepExtend (super.describe (), {
'id': 'bitso',
'name': 'Bitso',
'countries': 'MX', // Mexico
'rateLimit': 2000, // 30 requests per minute
'version': 'v3',
'has': {
'CORS': true,
},
'urls': {
'logo': 'https://user-images.githubusercontent.com/1294454/27766335-715ce7aa-5ed5-11e7-88a8-173a27bb30fe.jpg',
'api': 'https://api.bitso.com',
'www': 'https://bitso.com',
'doc': 'https://bitso.com/api_info',
'fees': 'https://bitso.com/fees?l=es',
},
'api': {
'public': {
'get': [
'available_books',
'ticker',
'order_book',
'trades',
],
},
'private': {
'get': [
'account_status',
'balance',
'fees',
'fundings',
'fundings/{fid}',
'funding_destination',
'kyc_documents',
'ledger',
'ledger/trades',
'ledger/fees',
'ledger/fundings',
'ledger/withdrawals',
'mx_bank_codes',
'open_orders',
'order_trades/{oid}',
'orders/{oid}',
'user_trades',
'user_trades/{tid}',
'withdrawals/',
'withdrawals/{wid}',
],
'post': [
'bitcoin_withdrawal',
'debit_card_withdrawal',
'ether_withdrawal',
'orders',
'phone_number',
'phone_verification',
'phone_withdrawal',
'spei_withdrawal',
],
'delete': [
'orders/{oid}',
'orders/all',
],
},
},
});
}
async fetchMarkets () {
let markets = await this.publicGetAvailableBooks ();
let result = [];
for (let i = 0; i < markets['payload'].length; i++) {
let market = markets['payload'][i];
let id = market['book'];
let symbol = id.toUpperCase ().replace ('_', '/');
let [ base, quote ] = symbol.split ('/');
let limits = {
'amount': {
'min': parseFloat (market['minimum_amount']),
'max': parseFloat (market['maximum_amount']),
},
'price': {
'min': parseFloat (market['minimum_price']),
'max': parseFloat (market['maximum_price']),
},
'cost': {
'min': parseFloat (market['minimum_value']),
'max': parseFloat (market['maximum_value']),
},
};
let precision = {
'amount': this.precisionFromString (market['minimum_amount']),
'price': this.precisionFromString (market['minimum_price']),
};
let lot = limits['amount']['min'];
result.push ({
'id': id,
'symbol': symbol,
'base': base,
'quote': quote,
'info': market,
'lot': lot,
'limits': limits,
'precision': precision,
});
}
return result;
}
async fetchBalance (params = {}) {
await this.loadMarkets ();
let response = await this.privateGetBalance ();
let balances = response['payload']['balances'];
let result = { 'info': response };
for (let b = 0; b < balances.length; b++) {
let balance = balances[b];
let currency = balance['currency'].toUpperCase ();
let account = {
'free': parseFloat (balance['available']),
'used': parseFloat (balance['locked']),
'total': parseFloat (balance['total']),
};
result[currency] = account;
}
return this.parseBalance (result);
}
async fetchOrderBook (symbol, limit = undefined, params = {}) {
await this.loadMarkets ();
let response = await this.publicGetOrderBook (this.extend ({
'book': this.marketId (symbol),
}, params));
let orderbook = response['payload'];
let timestamp = this.parse8601 (orderbook['updated_at']);
return this.parseOrderBook (orderbook, timestamp, 'bids', 'asks', 'price', 'amount');
}
async fetchTicker (symbol, params = {}) {
await this.loadMarkets ();
let response = await this.publicGetTicker (this.extend ({
'book': this.marketId (symbol),
}, params));
let ticker = response['payload'];
let timestamp = this.parse8601 (ticker['created_at']);
let vwap = parseFloat (ticker['vwap']);
let baseVolume = parseFloat (ticker['volume']);
let quoteVolume = baseVolume * vwap;
return {
'symbol': symbol,
'timestamp': timestamp,
'datetime': this.iso8601 (timestamp),
'high': parseFloat (ticker['high']),
'low': parseFloat (ticker['low']),
'bid': parseFloat (ticker['bid']),
'ask': parseFloat (ticker['ask']),
'vwap': vwap,
'open': undefined,
'close': undefined,
'first': undefined,
'last': parseFloat (ticker['last']),
'change': undefined,
'percentage': undefined,
'average': undefined,
'baseVolume': baseVolume,
'quoteVolume': quoteVolume,
'info': ticker,
};
}
parseTrade (trade, market = undefined) {
let timestamp = this.parse8601 (trade['created_at']);
let symbol = undefined;
if (typeof market === 'undefined') {
let marketId = this.safeString (trade, 'book');
if (marketId in this.markets_by_id)
market = this.markets_by_id[marketId];
}
if (typeof market !== 'undefined')
symbol = market['symbol'];
let side = this.safeString (trade, 'side');
if (typeof side === 'undefined')
side = this.safeString (trade, 'maker_side');
let amount = this.safeFloat (trade, 'amount');
if (typeof amount === 'undefined')
amount = this.safeFloat (trade, 'major');
if (typeof amount !== 'undefined')
amount = Math.abs (amount);
let fee = undefined;
let feeCost = this.safeFloat (trade, 'fees_amount');
if (typeof feeCost !== 'undefined') {
let feeCurrency = this.safeString (trade, 'fees_currency');
if (typeof feeCurrency !== 'undefined') {
if (feeCurrency in this.currencies_by_id)
feeCurrency = this.currencies_by_id[feeCurrency]['code'];
}
fee = {
'cost': feeCost,
'currency': feeCurrency,
};
}
let cost = this.safeFloat (trade, 'minor');
if (typeof cost !== 'undefined')
cost = Math.abs (cost);
let price = this.safeFloat (trade, 'price');
let orderId = this.safeString (trade, 'oid');
return {
'id': trade['tid'].toString (),
'info': trade,
'timestamp': timestamp,
'datetime': this.iso8601 (timestamp),
'symbol': symbol,
'order': orderId,
'type': undefined,
'side': side,
'price': price,
'amount': amount,
'cost': cost,
'fee': fee,
};
}
async fetchTrades (symbol, since = undefined, limit = undefined, params = {}) {
await this.loadMarkets ();
let market = this.market (symbol);
let response = await this.publicGetTrades (this.extend ({
'book': market['id'],
}, params));
return this.parseTrades (response['payload'], market, since, limit);
}
async fetchMyTrades (symbol = undefined, since = undefined, limit = 25, params = {}) {
await this.loadMarkets ();
let market = this.market (symbol);
// the don't support fetching trades starting from a date yet
// use the `marker` extra param for that
// this is not a typo, the variable name is 'marker' (don't confuse with 'market')
let markerInParams = ('marker' in params);
// warn the user with an exception if the user wants to filter
// starting from since timestamp, but does not set the trade id with an extra 'marker' param
if ((typeof since !== 'undefined') && !markerInParams)
throw ExchangeError (this.id + ' fetchMyTrades does not support fetching trades starting from a timestamp with the `since` argument, use the `marker` extra param to filter starting from an integer trade id');
// convert it to an integer unconditionally
if (markerInParams)
params = this.extend (params, {
'marker': parseInt (params['marker']),
});
let request = {
'book': market['id'],
'limit': limit, // default = 25, max = 100
// 'sort': 'desc', // default = desc
// 'marker': id, // integer id to start from
};
let response = await this.privateGetUserTrades (this.extend (request, params));
return this.parseTrades (response['payload'], market, since, limit);
}
async createOrder (symbol, type, side, amount, price = undefined, params = {}) {
await this.loadMarkets ();
let order = {
'book': this.marketId (symbol),
'side': side,
'type': type,
'major': this.amountToPrecision (symbol, amount),
};
if (type === 'limit')
order['price'] = this.priceToPrecision (symbol, price);
let response = await this.privatePostOrders (this.extend (order, params));
return {
'info': response,
'id': response['payload']['oid'],
};
}
async cancelOrder (id, symbol = undefined, params = {}) {
await this.loadMarkets ();
return await this.privateDeleteOrdersOid ({ 'oid': id });
}
parseOrderStatus (status) {
let statuses = {
'partial-fill': 'open', // this is a common substitution in ccxt
};
if (status in statuses)
return statuses['status'];
return status;
}
parseOrder (order, market = undefined) {
let side = order['side'];
let status = this.parseOrderStatus (order['status']);
let symbol = undefined;
if (typeof market === 'undefined') {
let marketId = order['book'];
if (marketId in this.markets_by_id)
market = this.markets_by_id[marketId];
}
if (market)
symbol = market['symbol'];
let orderType = order['type'];
let timestamp = this.parse8601 (order['created_at']);
let amount = parseFloat (order['original_amount']);
let remaining = parseFloat (order['unfilled_amount']);
let filled = amount - remaining;
let result = {
'info': order,
'id': order['oid'],
'timestamp': timestamp,
'datetime': this.iso8601 (timestamp),
'symbol': symbol,
'type': orderType,
'side': side,
'price': this.safeFloat (order, 'price'),
'amount': amount,
'cost': undefined,
'remaining': remaining,
'filled': filled,
'status': status,
'fee': undefined,
};
return result;
}
async fetchOpenOrders (symbol = undefined, since = undefined, limit = 25, params = {}) {
await this.loadMarkets ();
let market = this.market (symbol);
// the don't support fetching trades starting from a date yet
// use the `marker` extra param for that
// this is not a typo, the variable name is 'marker' (don't confuse with 'market')
let markerInParams = ('marker' in params);
// warn the user with an exception if the user wants to filter
// starting from since timestamp, but does not set the trade id with an extra 'marker' param
if ((typeof since !== 'undefined') && !markerInParams)
throw ExchangeError (this.id + ' fetchOpenOrders does not support fetching orders starting from a timestamp with the `since` argument, use the `marker` extra param to filter starting from an integer trade id');
// convert it to an integer unconditionally
if (markerInParams)
params = this.extend (params, {
'marker': parseInt (params['marker']),
});
let request = {
'book': market['id'],
'limit': limit, // default = 25, max = 100
// 'sort': 'desc', // default = desc
// 'marker': id, // integer id to start from
};
let response = await this.privateGetOpenOrders (this.extend (request, params));
let orders = this.parseOrders (response['payload'], market, since, limit);
return orders;
}
sign (path, api = 'public', method = 'GET', params = {}, headers = undefined, body = undefined) {
let endpoint = '/' + this.version + '/' + this.implodeParams (path, params);
let query = this.omit (params, this.extractParams (path));
if (method === 'GET') {
if (Object.keys (query).length)
endpoint += '?' + this.urlencode (query);
}
let url = this.urls['api'] + endpoint;
if (api === 'private') {
this.checkRequiredCredentials ();
let nonce = this.nonce ().toString ();
let request = [ nonce, method, endpoint ].join ('');
if (method !== 'GET') {
if (Object.keys (query).length) {
body = this.json (query);
request += body;
}
}
let signature = this.hmac (this.encode (request), this.encode (this.secret));
let auth = this.apiKey + ':' + nonce + ':' + signature;
headers = {
'Authorization': 'Bitso ' + auth,
'Content-Type': 'application/json',
};
}
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 ('success' in response)
if (response['success'])
return response;
throw new ExchangeError (this.id + ' ' + this.json (response));
}
};