forked from rentorm/3commas-api-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
230 lines (176 loc) · 7.16 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
'use strict'
const querystring = require('querystring');
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 || ''
}
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, querystring.stringify(params))
try {
let response = await fetch(
`${this._url}${path}${querystring.stringify(params)}`,
{
method: method,
timeout: 30000,
agent: '',
headers: {
'APIKEY': this._apiKey,
'Signature': sig
}
}
)
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 })
}
/**
* 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 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 })
}
}
module.exports = threeCommasAPI