-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
determine-action.js
483 lines (434 loc) · 12 KB
/
determine-action.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
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
const _ = require('lodash');
const moment = require('moment');
const { slack } = require('../../../helpers');
const {
isActionDisabled,
getNumberOfBuyOpenOrders,
isExceedingMaxOpenTrades,
getAPILimit
} = require('../../trailingTradeHelper/common');
const { getGridTradeOrder } = require('../../trailingTradeHelper/order');
const {
shouldForceSellByTradingView
} = require('../../trailingTradeHelper/tradingview');
/**
* Check whether current price is lower or equal than stop loss trigger price
*
* @param {*} data
* @returns
*/
const isLowerThanStopLossTriggerPrice = data => {
const {
symbolConfiguration: {
sell: {
stopLoss: { enabled: sellStopLossEnabled }
}
},
sell: {
currentPrice: sellCurrentPrice,
stopLossTriggerPrice: sellStopLossTriggerPrice
}
} = data;
return (
sellStopLossEnabled === true && sellCurrentPrice <= sellStopLossTriggerPrice
);
};
/**
* Check whether can buy or not
*
* - current price must be less than trigger price.
* - current grid trade must be defined.
*
* @param {*} data
* @returns
*/
const canBuy = data => {
const {
symbolConfiguration: {
buy: { currentGridTrade }
},
buy: { currentPrice: buyCurrentPrice, triggerPrice: buyTriggerPrice }
} = data;
return (
buyCurrentPrice <= buyTriggerPrice &&
currentGridTrade !== null &&
!isLowerThanStopLossTriggerPrice(data)
);
};
/**
* Check whether has enough balance to sell
*
* - If current gird trade index is 0, and has enough balance to sell,
* then it should not execute
*
* @param {*} data
* @returns
*/
const hasBalanceToSell = data => {
const {
symbolInfo: {
filterMinNotional: { minNotional }
},
baseAssetBalance: { total: baseAssetTotalBalance },
buy: { currentPrice: buyCurrentPrice },
symbolConfiguration: {
buy: { currentGridTradeIndex: currentBuyGridTradeIndex }
}
} = data;
return (
currentBuyGridTradeIndex === 0 &&
baseAssetTotalBalance * buyCurrentPrice >= parseFloat(minNotional)
);
};
/**
* Check whether trigger price within the buying restriction price or not
*
* - current grid trade must be first grid trade.
* - ATH restriction must be enabled.
* - buy trigger price must be higher than ATH restriction price.
*
* @param {*} data
* @returns
*/
const isGreaterThanTheATHRestrictionPrice = data => {
const {
symbolConfiguration: {
buy: {
currentGridTradeIndex,
athRestriction: { enabled: buyATHRestrictionEnabled }
}
},
buy: {
triggerPrice: buyTriggerPrice,
athRestrictionPrice: buyATHRestrictionPrice
}
} = data;
return (
currentGridTradeIndex === 0 &&
buyATHRestrictionEnabled === true &&
buyTriggerPrice >= buyATHRestrictionPrice
);
};
/**
* Check whether current open orders has reached maximum open orders
*
* - current buy open order must be less than maximum buy open orders.
*
* @param {*} logger
* @param {*} data
* @returns
*/
const isExceedingMaxBuyOpenOrders = async (logger, data) => {
const {
symbolConfiguration: {
botOptions: {
orderLimit: {
enabled: orderLimitEnabled,
maxBuyOpenOrders: orderLimitMaxBuyOpenOrders
}
}
}
} = data;
if (orderLimitEnabled === false) {
return false;
}
const currentBuyOpenOrders = await getNumberOfBuyOpenOrders(logger);
if (currentBuyOpenOrders >= orderLimitMaxBuyOpenOrders) {
return true;
}
return false;
};
/**
* Set buy action and message
*
* @param {*} logger
* @param {*} rawData
* @param {*} action
* @param {*} processMessage
* @returns
*/
const setBuyActionAndMessage = (logger, rawData, action, processMessage) => {
const data = rawData;
data.action = action;
data.buy.processMessage = processMessage;
data.buy.updatedAt = moment().utc().toDate();
logger.info({ data, saveLog: true }, processMessage);
return data;
};
/**
* Check whether can sell or not
*
* - last buy price must be more than 0.
* - current balance must be more than the minimum notional value
* - current grid trade must not be null.
*
* @param {*} data
* @returns
*/
const canSell = data => {
const {
symbolInfo: {
filterMinNotional: { minNotional }
},
symbolConfiguration: {
sell: { currentGridTrade }
},
baseAssetBalance: { total: baseAssetTotalBalance },
sell: { currentPrice: sellCurrentPrice, lastBuyPrice }
} = data;
return (
lastBuyPrice > 0 &&
baseAssetTotalBalance * sellCurrentPrice > parseFloat(minNotional) &&
currentGridTrade !== null
);
};
/**
* Check whether current price is higher than sell trigger price
*
* @param {*} data
* @returns
*/
const isHigherThanSellTriggerPrice = data => {
const {
sell: { currentPrice: sellCurrentPrice, triggerPrice: sellTriggerPrice }
} = data;
return sellCurrentPrice >= sellTriggerPrice;
};
/**
* Set sell action and message
*
* @param {*} logger
* @param {*} rawData
* @param {*} action
* @param {*} processMessage
* @returns
*/
const setSellActionAndMessage = (logger, rawData, action, processMessage) => {
const data = rawData;
data.action = action;
data.sell.processMessage = processMessage;
data.sell.updatedAt = moment().utc().toDate();
logger.info({ data, saveLog: true }, processMessage);
return data;
};
/**
* Retrieve last grid order from cache
*
* @param {*} logger
* @param {*} symbol
* @param {*} side
* @returns
*/
const getGridTradeLastOrder = async (logger, symbol, side) => {
const lastOrder =
(await getGridTradeOrder(
logger,
`${symbol}-grid-trade-last-${side}-order`
)) || {};
logger.info(
{ lastOrder },
`Retrieved grid trade last ${side} order from cache`
);
return lastOrder;
};
/**
* Determine action for trade
*
* @param {*} logger
* @param {*} rawData
*/
const execute = async (logger, rawData) => {
const data = rawData;
const {
action,
symbol,
symbolInfo: { baseAsset },
symbolConfiguration: {
buy: { currentGridTradeIndex: currentBuyGridTradeIndex },
sell: { currentGridTradeIndex: currentSellGridTradeIndex }
}
} = data;
const humanisedBuyGridTradeIndex = currentBuyGridTradeIndex + 1;
const humanisedSellGridTradeIndex = currentSellGridTradeIndex + 1;
if (action !== 'not-determined') {
logger.info(
{ action },
'Action is already defined, do not try to determine action.'
);
return data;
}
// Check buy signal -
// if last buy price is less than 0
// and current price is less or equal than lowest price
// and current balance has not enough value to sell,
// and current price is lower than the restriction price
// then buy.
if (canBuy(data)) {
if (
_.isEmpty(await getGridTradeLastOrder(logger, symbol, 'buy')) === false
) {
return setBuyActionAndMessage(
logger,
data,
'buy-order-wait',
`There is a last gird trade buy order. Wait.`
);
}
if (hasBalanceToSell(data)) {
return setBuyActionAndMessage(
logger,
data,
'wait',
`The current price reached the trigger price. ` +
`But you have enough ${baseAsset} to sell. ` +
`Set the last buy price to start selling. ` +
`Do not process buy.`
);
}
const checkDisable = await isActionDisabled(symbol);
logger.info(
{ tag: 'check-disable', checkDisable },
'Checked whether symbol is disabled or not.'
);
if (checkDisable.isDisabled) {
return setBuyActionAndMessage(
logger,
data,
'buy-temporary-disabled',
'The current price reached the trigger price. ' +
`However, the action is temporarily disabled by ${checkDisable.disabledBy}. ` +
`Resume buy process after ${checkDisable.ttl}s.`
);
}
if (isGreaterThanTheATHRestrictionPrice(data)) {
return setBuyActionAndMessage(
logger,
data,
'wait',
`The current price has reached the lowest price; however, it is restricted to buy the coin ` +
`because ATH price higher than the current price.`
);
}
if (await isExceedingMaxBuyOpenOrders(logger, data)) {
return setBuyActionAndMessage(
logger,
data,
'wait',
`The current price has reached the lowest price; however, it is restricted to buy the coin ` +
`because of reached maximum buy open orders.`
);
}
if (await isExceedingMaxOpenTrades(logger, data)) {
return setBuyActionAndMessage(
logger,
data,
'wait',
`The current price has reached the lowest price; however, it is restricted to buy the coin ` +
`because of reached maximum open trades.`
);
}
return setBuyActionAndMessage(
logger,
data,
'buy',
`The current price reached the trigger price for the grid trade #${humanisedBuyGridTradeIndex}. Let's buy it.`
);
}
// Check sell signal - if
// last buy price has a value
// and total balance is enough to sell
if (canSell(data)) {
if (
_.isEmpty(await getGridTradeLastOrder(logger, symbol, 'sell')) === false
) {
return setSellActionAndMessage(
logger,
data,
'sell-order-wait',
`There is a last gird trade sell order. Wait.`
);
}
// If tradingView recommendation is sell or strong sell
const { shouldForceSell, forceSellMessage } = shouldForceSellByTradingView(
logger,
data
);
if (shouldForceSell) {
// Prevent disable by stop-loss
data.canDisable = false;
// Notify as it's important message for now.
// Eventually, should convert to logging to reduce unnecessary notifications.
slack.sendMessage(
`*${symbol}* Action - *Force sell*: \n- Message: ${forceSellMessage}`,
{ symbol, apiLimit: getAPILimit(logger) }
);
// Then sell market order
return setSellActionAndMessage(
logger,
data,
'sell-stop-loss',
forceSellMessage
);
}
// If current price is higher or equal than trigger price
if (isHigherThanSellTriggerPrice(data)) {
const checkDisable = await isActionDisabled(symbol);
logger.info(
{ tag: 'check-disable', checkDisable },
'Checked whether symbol is disabled or not.'
);
if (checkDisable.isDisabled) {
return setSellActionAndMessage(
logger,
data,
'sell-temporary-disabled',
'The current price is reached the sell trigger price. ' +
`However, the action is temporarily disabled by ${checkDisable.disabledBy}. ` +
`Resume sell process after ${checkDisable.ttl}s.`
);
}
// Then sell
return setSellActionAndMessage(
logger,
data,
'sell',
"The current price is more than the trigger price. Let's sell."
);
}
if (isLowerThanStopLossTriggerPrice(data)) {
const checkDisable = await isActionDisabled(symbol);
logger.info(
{ tag: 'check-disable', checkDisable },
'Checked whether symbol is disabled or not.'
);
if (checkDisable.isDisabled) {
return setSellActionAndMessage(
logger,
data,
'sell-temporary-disabled',
'The current price is reached the stop-loss price. ' +
`However, the action is temporarily disabled by ${checkDisable.disabledBy}. ` +
`Resume sell process after ${checkDisable.ttl}s.`
);
}
// Then sell market order
return setSellActionAndMessage(
logger,
data,
'sell-stop-loss',
'The current price is reached the stop-loss price. Place market sell order.'
);
}
// otherwise, wait
return setSellActionAndMessage(
logger,
data,
'sell-wait',
`The current price is lower than the selling trigger price ` +
`for the grid trade #${humanisedSellGridTradeIndex}. Wait.`
);
}
// If cannot buy/sell, then just return data
return data;
};
module.exports = { execute };