-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathindex.js
419 lines (362 loc) · 8.94 KB
/
index.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
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
"use strict";
const stringify = require("qs-stringify");
const crypto = require("crypto");
const fetch = require("node-fetch");
const API_URL = "https://api.3commas.io";
class threeCommasAPI {
constructor(opts = {}) {
this._url = opts.url || API_URL;
this._apiKey = opts.apiKey || "";
this._apiSecret = opts.apiSecret || "";
this._forcedMode = opts.forcedMode || "real";
}
generateSignature(requestUri, reqData) {
const request = requestUri + reqData;
return crypto
.createHmac("sha256", this._apiSecret)
.update(request)
.digest("hex");
}
async makeRequest(method, path, params) {
if (!this._apiKey || !this._apiSecret) {
return new Error("missing api key or secret");
}
const sig = this.generateSignature(path, stringify(params));
try {
let response = await fetch(`${this._url}${path}${stringify(params)}`, {
method: method,
timeout: 30000,
agent: "",
headers: {
APIKEY: this._apiKey,
Signature: sig,
"Forced-Mode": this._forcedMode,
},
});
return await response.json();
} catch (e) {
console.log(e);
return false;
}
}
/**
* Deals methods
*/
async getDeals(params) {
return await this.makeRequest("GET", "/public/api/ver1/deals?", params);
}
async dealUpdateMaxSafetyOrders(deal_id, max_safety_orders) {
return await this.makeRequest(
"POST",
`/public/api/ver1/deals/${deal_id}/update_max_safety_orders?`,
{ deal_id, max_safety_orders }
);
}
async dealPanicSell(deal_id) {
return await this.makeRequest(
"POST",
`/public/api/ver1/deals/${deal_id}/panic_sell?`,
{ deal_id }
);
}
async dealCancel(deal_id) {
return await this.makeRequest(
"POST",
`/public/api/ver1/deals/${deal_id}/cancel?`,
{ deal_id }
);
}
async dealUpdateTp(deal_id, new_take_profit_percentage) {
return await this.makeRequest(
"POST",
`/public/api/ver1/deals/${deal_id}/update_tp?`,
{ deal_id, new_take_profit_percentage }
);
}
async getDeal(deal_id) {
return await this.makeRequest(
"GET",
`/public/api/ver1/deals/${deal_id}/show?`,
{ deal_id }
);
}
async getDealSafetyOrders(deal_id) {
return await this.makeRequest(
"GET",
`/public/api/ver1/deals/${deal_id}/market_orders?`,
{ deal_id }
);
}
async dealAddFunds(params) {
return await this.makeRequest(
"POST",
`/public/api/ver1/deals/${params.deal_id}/add_funds?`,
params
);
}
/**
* Bots methods
*/
async getBotsBlackList() {
return await this.makeRequest(
"GET",
`/public/api/ver1/bots/pairs_black_list?`,
null
);
}
async botsUpdateBlackList(params) {
return await this.makeRequest(
"POST",
"/public/api/ver1/bots/update_pairs_black_list?",
params
);
}
async botCreate(params) {
return await this.makeRequest(
"POST",
"/public/api/ver1/bots/create_bot?",
params
);
}
async getBots(params) {
return await this.makeRequest("GET", `/public/api/ver1/bots?`, params);
}
async getBotsStats(params) {
return await this.makeRequest(
"GET",
`/public/api/ver1/bots/stats?`,
params
);
}
async botUpdate(params) {
return await this.makeRequest(
"PATCH",
`/public/api/ver1/bots/${params.bot_id}/update?`,
params
);
}
async botDisable(bot_id) {
return await this.makeRequest(
"POST",
`/public/api/ver1/bots/${bot_id}/disable?`,
{ bot_id }
);
}
async botEnable(bot_id) {
return await this.makeRequest(
"POST",
`/public/api/ver1/bots/${bot_id}/enable?`,
{ bot_id }
);
}
async botStartNewDeal(params) {
return await this.makeRequest(
"POST",
`/public/api/ver1/bots/${params.bot_id}/start_new_deal?`,
params
);
}
async botDelete(bot_id) {
return await this.makeRequest(
"POST",
`/public/api/ver1/bots/${bot_id}/delete?`,
{ bot_id }
);
}
async botPaniceSellAllDeals(bot_id) {
return await this.makeRequest(
"POST",
`/public/api/ver1/bots/${bot_id}/panic_sell_all_deals?`,
{ bot_id }
);
}
async botCancelAllDeals(bot_id) {
return await this.makeRequest(
"POST",
`/public/api/ver1/bots/${bot_id}/cancel_all_deals?`,
{ bot_id }
);
}
async botShow(bot_id) {
return await this.makeRequest(
"GET",
`/public/api/ver1/bots/${bot_id}/show?`,
{ bot_id }
);
}
/**
* Smart Trades methods
*/
async smartTradesCreateSimpleSell(params) {
return await this.makeRequest(
"POST",
`/public/api/ver1/smart_trades/create_simple_sell?`,
params
);
}
async smartTradesCreateSimpleBuy(params) {
return await this.makeRequest(
"POST",
`/public/api/ver1/smart_trades/create_simple_buy?`,
params
);
}
async smartTradesCreateSmartSell(params) {
return await this.makeRequest(
"POST",
`/public/api/ver1/smart_trades/create_smart_sell?`,
params
);
}
async smartTradesCreateSmartCover(params) {
return await this.makeRequest(
"POST",
`/public/api/ver1/smart_trades/create_smart_cover?`,
params
);
}
async smartTradesCreateSmartTrade(params) {
return await this.makeRequest(
"POST",
`/public/api/ver1/smart_trades/create_smart_trade?`,
params
);
}
async smartTrades(params) {
return await this.makeRequest(
"GET",
`/public/api/ver1/smart_trades?`,
params
);
}
async smartTradesV2(params) {
return await this.makeRequest(
"GET",
`/public/api/v2/smart_trades?`,
params
);
}
async smartTradesStepPanicSell(params) {
return await this.makeRequest(
"POST",
`/public/api/ver1/smart_trades/${params.smart_trade_id}/step_panic_sell?`,
params
);
}
async smartTradesUpdate(params) {
return await this.makeRequest(
"PATCH",
`/public/api/ver1/smart_trades/${params.smart_trade_id}/update?`,
params
);
}
async smartTradesCancel(smart_trade_id) {
return await this.makeRequest(
"POST",
`/public/api/ver1/smart_trades/${smart_trade_id}/cancel?`,
{ smart_trade_id }
);
}
async smartTradesPanicSell(smart_trade_id) {
return await this.makeRequest(
"POST",
`/public/api/ver1/smart_trades/${smart_trade_id}/panic_sell?`,
{ smart_trade_id }
);
}
async smartTradesForceProcess(smart_trade_id) {
return await this.makeRequest(
"POST",
`/public/api/ver1/smart_trades/${smart_trade_id}/force_process?`,
{ smart_trade_id }
);
}
/**
* Accounts methods
*/
async accountsNew(params) {
return await this.makeRequest(
"POST",
`/public/api/ver1/accounts/new?`,
params
);
}
async accounts() {
return await this.makeRequest("GET", `/public/api/ver1/accounts?`, null);
}
async accountsMarketList() {
return await this.makeRequest(
"GET",
`/public/api/ver1/accounts/market_list?`,
null
);
}
async accountsCurrencyRates() {
return await this.makeRequest(
"GET",
`/public/api/ver1/accounts/currency_rates?`,
null
);
}
async accountSellAllToUsd(account_id) {
return await this.makeRequest(
"POST",
`/public/api/ver1/accounts/${account_id}/sell_all_to_usd?`,
{ account_id }
);
}
async accountSellAllToBtc(account_id) {
return await this.makeRequest(
"POST",
`/public/api/ver1/accounts/${account_id}/sell_all_to_btc?`,
{ account_id }
);
}
async accountLoadBalances(account_id) {
return await this.makeRequest(
"POST",
`/public/api/ver1/accounts/${account_id}/load_balances?`,
{ account_id }
);
}
async accountRename(params) {
return await this.makeRequest(
"POST",
`/public/api/ver1/accounts/${params.account_id}/rename?`,
params
);
}
async accountPieChartData(account_id) {
return await this.makeRequest(
"POST",
`/public/api/ver1/accounts/${account_id}/pie_chart_data?`,
{ account_id }
);
}
async accountTableData(account_id) {
return await this.makeRequest(
"POST",
`/public/api/ver1/accounts/${account_id}/account_table_data?`,
{ account_id }
);
}
async accountRemove(account_id) {
return await this.makeRequest(
"POST",
`/public/api/ver1/accounts/${account_id}/remove?`,
{ account_id }
);
}
/**
* creating smarttrade version 2
* https://github.com/3commas-io/3commas-official-api-docs/blob/master/smart_trades_v2_api.md#create-smart-trade-v2-permission-smart_trade_write-security-signed
*/
async createSmartTradesV2(params) {
return await this.makeRequest(
"POST",
`/public/api/v2/smart_trades?`,
params
);
}
}
module.exports = threeCommasAPI;