-
Notifications
You must be signed in to change notification settings - Fork 7
/
versione4Testing.js
1598 lines (1361 loc) · 68.3 KB
/
versione4Testing.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
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/* eslint-disable array-callback-return */
/* eslint-disable n/no-callback-literal */
/* eslint-disable no-extend-native */
'use strict'
const fs = require('fs')
const util = require('util')
const path = require('path')
const logFile = fs.createWriteStream(path.join(__dirname, 'debug.log'), { flags: 'a' })
// TESTATO SENZA MAI AVER SBAGLIATO IL 10 GIUGNO 2022 TUTTO IL GIORNO
const dotenv = require('dotenv')
dotenv.config()
const sound = require('sound-play')
const RSI = require('technicalindicators').RSI
const MACD = require('technicalindicators').MACD
const SMA = require('technicalindicators').SMA
const Binance = require('binance-api-node').default
const Kucoin = require('kucoin-node-api')
const clients = []
process.env.BINANCE_SPOT_KEY.split(',').forEach((v, i) => {
clients.push(Binance({
apiKey: process.env.BINANCE_SPOT_KEY.split(',')[i],
apiSecret: process.env.BINANCE_SPOT_SECRET.split(',')[i]
}))
})
// client principale
const client = clients[0]
const kucoinConfig = {
apiKey: process.env.KUCOIN_KEY,
secretKey: process.env.KUCOIN_SECRET,
passphrase: process.env.KUCOIN_PASS,
environment: 'live'
}
Kucoin.init(kucoinConfig)
const soundDisabled = false
const tradeDebugEnabled = false
function roundByLotSize (value, step) {
step || (step = 1.0)
const inv = 1.0 / step
return Math.round(value * inv) / inv
}
// per arrotondare bene invece che con toFixed che arrotonda a cavolo di cane
function roundByDecimals (value, decimals) {
return Number(Math.round(value + 'e' + decimals) + 'e-' + decimals)
}
// per contare i decimali della tick size
// eslint-disable-next-line no-extend-native
Number.prototype.countDecimals = function () {
try {
if (Math.floor(this.valueOf()) === this.valueOf()) return 0
return this.toString().split('.')[1].length || 0
} catch (exception) {
logFile.write(util.format(exception) + '\n')
console.log('Exception', exception, 'This', this)
}
}
String.prototype.countDecimals = function () {
// calcola decimali nella tickSize
try {
// console.log("\n");
const splittedNum = this.split('.')
// console.log(splittedNum);
if (splittedNum[1] !== undefined) {
let text = splittedNum[1]
const length = text.length
for (let i = length - 1; i >= 0; i--) {
// console.log(i, text[i]);
if (text[i] === '0') {
text = text.slice(0, i)
} else {
break
}
}
return text.length
} else {
return 0
}
} catch (exception) {
logFile.write(util.format(exception) + '\n')
console.log('Exception', exception, 'This', this)
}
}
// eslint-disable-next-line no-unused-vars
function analisiOrderBook (symbol, currentPrice, maxPrice, minPrice, callback) {
client.book({ symbol }).then(response => {
const asks2 = response.asks.reverse()
const bids2 = response.bids
const asks = asks2.filter((v, i, a) => {
if (v.price <= maxPrice && v.price > currentPrice) {
return v.price
}
}).slice(0, 3)
// è sbagliato calcolare i bid sopra al muro
// deve chiudere se sfonda il muro in basso
// altrimenti potrebbe solo scendere per pescare liquidità
const bids = bids2.filter((v, i, a) => {
/* if (v.price >= minPrice && v.price < currentPrice) {
return v.price
} */
if (v.price < minPrice && v.price < currentPrice) {
return v.price
}
}).slice(0, 3)
// console.log(asks)
let bestAsk = asks.sort((a, b) => {
return a.quantity - b.quantity
})
if (bestAsk.length > 0) {
bestAsk = bestAsk[0]
} else {
bestAsk = maxPrice
}
let bestBid = bids.sort((a, b) => {
return a.quantity - b.quantity
})
if (bestBid.length > 0) {
bestBid = bestBid[0]
} else {
bestAsk = minPrice
}
callback({ asks, bids, asks2, bids2, bestAsk: bestAsk.price, bestBid: bestBid.price })
}).catch(reason => {
logFile.write(util.format(reason) + '\n')
console.log(reason)
})
}
// eslint-disable-next-line no-unused-vars
function analisiGraficaGiornalieraMassimiMinimiVicini (symbol, tickSizeDecimals, callback) {
// 48 vuol dire 24 ore dato che sono intervalli di 30 minuti, quindi x 3 fa 3 giorni
client.candles({ symbol, interval: '30m', limit: 48 * 7 }).then((candles30Min) => {
const massimiVicini = []
const minimiVicini = []
const doppiTocchiMassimi = []
const tripliTocchiMassimi = []
const doppiTocchiMinimi = []
const tripliTocchiMinimi = []
let massimoAssoluto = 0
let minimoAssoluto = Infinity
const candles30MinCloses = candles30Min.map((v) => Number(v.close))
const currentPrice = candles30MinCloses[candles30MinCloses.length - 1]
/* const smaClose = SMA.calculate({
period: 3,
values: candles30Min.map((v) => Number(v.close))
}).map((v) => roundByDecimals(v, 2)) */
const period = 3
const smaMin = SMA.calculate({
period,
values: candles30Min.map((v) => Number(v.low))
}).map((v) => roundByDecimals(v, tickSizeDecimals))
const smaMax = SMA.calculate({
period,
values: candles30Min.map((v) => Number(v.high))
}).map((v) => roundByDecimals(v, tickSizeDecimals))
// per calcolare le resistenze (in alto)
let c = smaMax.length
let rapportoIncrementalePrecedente = 0
for (let i = 1; i < c; i++) {
const x0 = i - 1
const x1 = i
const y0 = smaMax[x0]
const y1 = smaMax[x1]
const rapportoIncrementaleAttuale = (y1 - y0) / (x1 - x0)
if (i > 1) {
if (rapportoIncrementalePrecedente > 0 && rapportoIncrementaleAttuale < 0) {
const price = y0
// massimo relativo o assoluto
if (price > massimoAssoluto) {
massimoAssoluto = price
}
const searchOtherDouble = doppiTocchiMassimi.lastIndexOf(price)
// non deve essere l'ultimo indice perchè se è piatto non vale come massimo
if (searchOtherDouble !== -1 && searchOtherDouble !== doppiTocchiMassimi.length - 1) {
tripliTocchiMassimi.push(price)
}
const searchOtherMax = massimiVicini.lastIndexOf(price)
if (searchOtherMax !== -1 && searchOtherMax !== massimiVicini.length - 1) {
doppiTocchiMassimi.push(price)
}
massimiVicini.push(price)
} else {
// flesso quindi non mi interessa per ora
}
}
rapportoIncrementalePrecedente = rapportoIncrementaleAttuale
}
// per calcolare i supporti (in basso)
c = smaMin.length
rapportoIncrementalePrecedente = 0
for (let i = 1; i < c; i++) {
const x0 = i - 1
const x1 = i
const y0 = smaMin[x0]
const y1 = smaMin[x1]
const rapportoIncrementaleAttuale = (y1 - y0) / (x1 - x0)
if (i > 1) {
if (rapportoIncrementalePrecedente < 0 && rapportoIncrementaleAttuale > 0) {
const price = /* roundByDecimals((y0 + y1) / 2, 2) */ y1
// minimo relativo o assoluto
if (y1 < minimoAssoluto) {
minimoAssoluto = price
}
const searchOtherDouble = doppiTocchiMinimi.lastIndexOf(price)
// non deve essere l'ultimo indice perchè se è piatto non vale come massimo
if (searchOtherDouble !== -1 && searchOtherDouble !== doppiTocchiMinimi.length - 1) {
tripliTocchiMinimi.push(price)
}
const searchOtherMax = minimiVicini.lastIndexOf(price)
if (searchOtherMax !== -1 && searchOtherMax !== minimiVicini.length - 1) {
doppiTocchiMinimi.push(price)
}
minimiVicini.push(price)
} else {
// flesso quindi non mi interessa per ora
}
}
rapportoIncrementalePrecedente = rapportoIncrementaleAttuale
}
const numeroDoppiTocchiMassimi = doppiTocchiMassimi.length
const numeroDoppiTocchiMinimi = doppiTocchiMinimi.length
const numeroTripliTocchiMassimi = tripliTocchiMassimi.length
const numeroTripliTocchiMinimi = tripliTocchiMinimi.length
// escludiamo la candela corrente altrimenti non supererà mai i massimi
// facciamo sempre sullo stesso calendario il calcolo cioè della settimana
// altrimenti si rischia che il massimo sia uguale al minimo
// if (massimoAssoluto === 0) {
massimoAssoluto = Math.max(...smaMax.slice(0, -1))
// }
// if (minimoAssoluto === Infinity) {
minimoAssoluto = Math.min(...smaMin.slice(0, -1))
// }
const vol1 = calculateAbsPercVariationArray([massimoAssoluto, minimoAssoluto])
const vol2 = calculateAbsPercVariationArray([minimoAssoluto, massimoAssoluto])
// in realtà è volatilità settimanale
// console.log(vol1[0], vol2[0])
let volatilitaGiornaliera = roundByDecimals((vol1[0] + vol2[0]) / 2, tickSizeDecimals)
if (isNaN(volatilitaGiornaliera)) {
volatilitaGiornaliera = 0
}
callback({ currentPrice, volatilitaGiornaliera, numeroDoppiTocchiMassimi, numeroDoppiTocchiMinimi, numeroTripliTocchiMassimi, numeroTripliTocchiMinimi, massimiVicini: [...new Set(massimiVicini.sort())], minimiVicini: [...new Set(minimiVicini.sort())], massimoAssoluto, minimoAssoluto, doppiTocchiMassimi, doppiTocchiMinimi, tripliTocchiMassimi, tripliTocchiMinimi })
}).catch((r) => {
logFile.write(util.format(r) + '\n')
console.log(r)
})
}
let lastDrinTime = 0
async function playDrin (bypass) {
// suona per mostrare errori, se non è notte
const path = require('path')
const filePath = path.join(__dirname, 'drin.mp3')
// di notte non deve riprodurre suoni sennò fai un infarto
const ora = new Date().getHours()
// solo ai minuti 30 fa il verso del toro
// let minuti = new Date().getMinutes();
if (bypass === true) {
if (soundDisabled === false) {
// console.log(filePath);
sound.play(filePath)
}
} else if (ora < 22 && ora > 9 && lastDrinTime >= 30000) {
if (soundDisabled === false) {
sound.play(filePath)
lastDrinTime = new Date().getTime()
}
}
}
let lastBullTime = 0
async function playBullSentiment (bypass) {
const path = require('path')
const filePath = path.join(__dirname, 'bull_sentiment.mp3')
// di notte non deve riprodurre suoni sennò fai un infarto
const ora = new Date().getHours()
// solo ai minuti 30 fa il verso del toro
// let minuti = new Date().getMinutes();
if (bypass === true) {
if (soundDisabled === false) {
// console.log(filePath);
sound.play(filePath)
}
} else if (ora < 22 && ora > 9 && lastBullTime >= 30000) {
// if (minuti >= 30 && minuti <= 34) {
if (soundDisabled === false) {
// console.log(filePath);
sound.play(filePath)
lastBullTime = new Date().getTime()
}
// }
}
}
function piazzaOrdineOco (simbolo, quantity, takeProfit, stopLossTrigger, stopLoss, baseAssetPrecision, lotSize, ocoAttemps, singleClient, callback) {
// proviamo così a vedere se lo esegue
/* Non sempre lo esegue giusto
Bisogna sistemare questo errore:
VALUTAZIONE ORDINE SALDO USDT 182.316578292 SIMBOLO BURGERUSDT QUANTITA 115.1 MEDIANA 1.1117287381878833 TAKE PROFIT 1.602 STOP LOSS 1.565 TICK SIZE 0.00100000 TICK SIZE DECIMALS 3
VALUTAZIONE ORDINE 2 SL 1.562 SL Trigger 1.565 TP 1.602 DIFF TP 0.018000000000000016 DIFF SL 0.02200000000000002 DIFF SL/2 0.01100000000000001 DIFF SL*1.5 0.03300000000000003 CONDITION true
BURGERUSDT ultimeCandele [ true, true, true, true ]
APERTURA ORDINE SIMBOLO BURGERUSDT QUANTITA 115.1 MEDIANA 1.1117287381878833 TAKE PROFIT 1.602 STOP LOSS 1.565 TICK SIZE 0.00100000 TICK SIZE DECIMALS 3
ORDINI APERTI PER BURGERUSDT [] 0
no1 BURGERUSDT Error: Account has insufficient balance for requested action.
at C:\var\www\StockPricePredictor\node_modules\binance-api-node\dist\http-client.js:100:17
at processTicksAndRejections (node:internal/process/task_queues:96:5) {
code: -2010,
url: 'https://api.binance.com/api/v3/order/oco?stopLimitTimeInForce=GTC&symbol=BURGERUSDT&side=SELL&quantity=115.1&price=1.602&stopPrice=1.565&stopLimitPrice=1.562×tamp=1657341088171&signature=9e743dfbe432fb8caae6d75accedacaaf088f6bc016393cf5f0f4a1826b1283b'
}
*/
console.log('trying placing OCO', simbolo, quantity)
// non va bene vedere l'eseguito dell'ordine precedente
// bisogna vedere il bilancio di quel simbolo in conto
singleClient.accountInfo().then(accountInfo => {
quantity = accountInfo.balances.filter(v => v.asset === simbolo.slice(0, -4))[0].free
// per tentare di sistemare in caso di bilancio insufficiente
if (ocoAttemps > 0) {
quantity = quantity / 100 * (100 - (0.075 * (ocoAttemps - 1)))
}
quantity = roundByDecimals(roundByLotSize(quantity, lotSize), baseAssetPrecision)
singleClient.dailyStats({ symbol: simbolo }).then(dailyStats => {
if (dailyStats.bidPrice < stopLossTrigger) {
singleClient.order({
symbol: simbolo,
side: 'SELL',
type: 'MARKET',
quantity,
newClientOrderId: 'SELL'
}).then(response => {
console.log(response)
callback([true, response])
}).catch((reason) => {
console.log('single_client.order SELL', simbolo, reason)
if (ocoAttemps < 10) {
ocoAttemps++
setTimeout(function () {
piazzaOrdineOco(simbolo, quantity, takeProfit, stopLossTrigger, stopLoss, baseAssetPrecision, lotSize, ocoAttemps, singleClient, callback)
}, 1000)
} else {
ocoAttemps = 0
console.log('maxAttemps reached', simbolo)
logFile.write(util.format(reason) + '\n')
playDrin()
callback([false, 'single_client.order SELL'])
}
})
} else {
// c'è un errore. se il prezzo è sotto quello dello stopLoggTrigger deve chiudere a Mercato
// se la quantità è diversa bisogna capire come fare
singleClient.orderOco({
symbol: simbolo,
side: 'SELL',
quantity,
// take profit
// si può calcolare su askprice o lastprice
// meglio sull'ask price altrimenti guadagni talmente poco che spesso non copri neanche le commissioni
// meglio su lastprice dato che le mediane vengono calcolate sui prezzi di chiusura medi
price: takeProfit,
// stop loss trigger and limit
stopPrice: stopLossTrigger,
// attenzione: non è detto che sia giusto impostarli uguali. forse in caso di slippage può saltare lo stop loss.
stopLimitPrice: stopLoss
}).then(response => {
// console.log(response);
ocoAttemps = 0
callback([true, response])
})
.catch((reason) => {
console.log('single_client.orderOco', simbolo, reason, ocoAttemps)
console.log('ATTENZIONE. SE NON HAI BNB SCEGLIERE COMMISSIONI IN USDT')
if (ocoAttemps < 10) {
ocoAttemps++
setTimeout(function () {
piazzaOrdineOco(simbolo, quantity, takeProfit, stopLossTrigger, stopLoss, baseAssetPrecision, lotSize, ocoAttemps, singleClient, callback)
}, 1000)
} else {
ocoAttemps = 0
console.log('maxAttemps reached', simbolo)
logFile.write(util.format(reason) + '\n')
playDrin()
callback([false, 'maxOCOattempts reached'])
}
})
}
}).catch((reason) => {
console.log('dailyStats', simbolo, reason)
if (ocoAttemps < 10) {
ocoAttemps++
setTimeout(function () {
piazzaOrdineOco(simbolo, quantity, takeProfit, stopLossTrigger, stopLoss, baseAssetPrecision, lotSize, ocoAttemps, singleClient, callback)
}, 1000)
} else {
ocoAttemps = 0
console.log('maxAttemps reached', simbolo)
logFile.write(util.format(reason) + '\n')
playDrin()
callback([false, 'dailyStats'])
}
})
}).catch((reason) => {
console.log('accountInfo', simbolo, reason)
if (ocoAttemps < 10) {
ocoAttemps++
setTimeout(function () {
piazzaOrdineOco(simbolo, quantity, takeProfit, stopLossTrigger, stopLoss, baseAssetPrecision, lotSize, ocoAttemps, singleClient, callback)
}, 1000)
} else {
console.log('maxAttemps reached', simbolo)
logFile.write(util.format(reason) + '\n')
ocoAttemps = 0
playDrin()
callback([false, 'maxOCOattempts reached'])
}
})
}
async function autoInvestiLongOrderbook (arrayPrevisioniFull) {
// console.log(autoInvestiLongOrderbook, arrayPrevisioniFull)
try {
client.exchangeInfo().then((e) => {
// console.log("ok1", arrayPrevisioni.simbolo);
const tickSize = e.symbols.filter(v => v.symbol === arrayPrevisioniFull[0].simbolo)[0].filters.filter(v => v.filterType === 'PRICE_FILTER')[0].tickSize
// anche se è già una stringa è per capire
const tickSizeDecimals = tickSize.toString().countDecimals()
analisiGraficoOrderbook(arrayPrevisioniFull[0].simbolo, client, tickSizeDecimals, (analisiGraficoBook) => {
console.log(analisiGraficoBook)
const condition = analisiGraficoBook.convenienza
if (analisiGraficoBook !== false && condition === true) {
console.log('CONDIZIONE VERA', arrayPrevisioniFull[0].simbolo, analisiGraficoBook)
for (const singleClient of clients) {
// console.log(single_client);
for (const arrayPrevisioni of arrayPrevisioniFull) {
// questo serve solo in caso di conferma di tutte le altre condizioni
// console.log("ok2", arrayPrevisioni.simbolo);
singleClient.accountInfo().then(accountInfo => {
// console.log(accountInfo);
// meglio investire un po meno altrimenti si rischia che il prezzo cambi nel frattempo e il bilancio non basta più a fine ciclo
// meglio differenziare perchè almeno se perdi su una magari su un altra sale
// quindi meglio settare un importo che sia 1/3 del totale che si possiede
// così può differenziare un po gli investimenti
const UsdtAmount = accountInfo.balances.filter(v => v.asset === 'USDT')[0].free / 100 * 97.5
// console.log("USDT Amount", UsdtAmount);
singleClient.dailyStats({ symbol: arrayPrevisioni.simbolo }).then(symbolPrice => {
// verificare se la criptovaluta ha gli ultimi 48 volumi alti (in dollari) o se è senza liquidità
// altrimenti lasciar perdere l'investimento
let maxQty = UsdtAmount / Number(analisiGraficoBook.currentAskPrice)
maxQty = roundByDecimals(roundByLotSize(maxQty, arrayPrevisioni.lotSize), arrayPrevisioni.baseAssetPrecision)
console.log('VALUTAZIONE ORDINE', 'SIMBOLO', arrayPrevisioni.simbolo, 'SALDO USDT', UsdtAmount, 'QUANTITA', maxQty, 'MEDIANA', arrayPrevisioni.median, 'TAKE PROFIT', roundByDecimals((symbolPrice.askPrice / 100 * (100 + arrayPrevisioni.median)), tickSizeDecimals), 'STOP LOSS', roundByDecimals((symbolPrice.bidPrice / 100 * (100 - 1)), tickSizeDecimals), 'TICK SIZE', tickSize, 'TICK SIZE DECIMALS', tickSizeDecimals)
const takeProfit = analisiGraficoBook.bestAsk
const stopLossTrigger = roundByDecimals(analisiGraficoBook.bestBid, tickSizeDecimals)
// ho visto che così c'è circa uno 0.5% di margine tra trigger e loss quindi è meno rischioso per gli slippage
const stopLoss = roundByDecimals(analisiGraficoBook.bestBid / 100 * 99.5, tickSizeDecimals)
// analisi della liquidità in 24 ore
// dev'essere almeno 4 milioni perchè sotto ho guardato, anche a 3.200.000 e il mercato nel minuto è fermo.
// manca flusso di cassa
if (symbolPrice.quoteVolume > 4000000) {
console.log('TEST LIQUIDITA SUPERATO', 'SIMBOLO', arrayPrevisioni.simbolo, 'SL', stopLoss, 'SL Trigger', stopLossTrigger, 'TP', takeProfit)
if (UsdtAmount >= 25) {
singleClient.openOrders({ symbol: arrayPrevisioni.simbolo }).then(openOrders => {
// console.log('ORDINI APERTI PER ' + arrayPrevisioni.simbolo, openOrders, openOrders.length)
if (openOrders.length === 0) {
console.log('APERTURA ORDINE MERCATO', 'SIMBOLO', arrayPrevisioni.simbolo, 'QUANTITA', maxQty, 'MEDIANA', arrayPrevisioni.median, 'TAKE PROFIT', roundByDecimals((symbolPrice.askPrice / 100 * (100 + arrayPrevisioni.median)), tickSizeDecimals), 'STOP LOSS', roundByDecimals((symbolPrice.bidPrice / 100 * (100 - 1)), tickSizeDecimals), 'TICK SIZE', tickSize, 'TICK SIZE DECIMALS', tickSizeDecimals)
playBullSentiment()
singleClient.order({
symbol: arrayPrevisioni.simbolo,
side: 'BUY',
type: 'MARKET',
quantity: maxQty,
newClientOrderId: 'BUY'
}).then(() => {
// console.log(response)
piazzaOrdineOco(arrayPrevisioni.simbolo, maxQty, takeProfit, stopLossTrigger, stopLoss, arrayPrevisioni.baseAssetPrecision, arrayPrevisioni.lotSize, 0, singleClient, function (cb) {
if (cb[0] === true) {
console.log('ORDINE OCO PIAZZATO', arrayPrevisioni.simbolo)
} else {
console.log('piazzaOrdineOco internal', cb[1])
}
})
}).catch((reason) => {
logFile.write(util.format(reason) + '\n')
playDrin()
console.log('single_client.order BUY', arrayPrevisioni.simbolo, reason)
})
}
}).catch((reason) => {
logFile.write(util.format(reason) + '\n')
playDrin()
console.log('single_client.openOrders', arrayPrevisioni.simbolo, reason)
})
}
}
}).catch((reason) => {
logFile.write(util.format(reason) + '\n')
playDrin()
console.log('single_client.dailyStats', arrayPrevisioni.simbolo, reason)
})
}).catch((reason) => {
logFile.write(util.format(reason) + '\n')
// SINCRONIZZARE OROLOGIO SE DICE CHE E' 1000ms avanti rispetto al server di binance
playDrin()
console.log('single_client.accountInfo', arrayPrevisioni.simbolo, reason)
})
};
};
}
})
}).catch((reason) => {
logFile.write(util.format(reason) + '\n')
playDrin()
console.log('single_client.exchangeInfo', arrayPrevisioniFull[0].simbolo, reason)
})
} catch (reason) {
logFile.write(util.format(reason) + '\n')
playDrin()
console.log(reason)
}
}
// eslint-disable-next-line no-unused-vars
async function autoInvestiLong (arrayPrevisioniFull) {
try {
for (const singleClient of clients) {
// console.log(single_client);
for (const arrayPrevisioni of arrayPrevisioniFull) {
// questo serve solo in caso di conferma di tutte le altre condizioni
client.exchangeInfo().then((e) => {
// console.log("ok1", arrayPrevisioni.simbolo);
const tickSize = e.symbols.filter(v => v.symbol === arrayPrevisioni.simbolo)[0].filters.filter(v => v.filterType === 'PRICE_FILTER')[0].tickSize
// anche se è già una stringa è per capire
const tickSizeDecimals = tickSize.toString().countDecimals()
// console.log("ok2", arrayPrevisioni.simbolo);
singleClient.accountInfo().then(accountInfo => {
// console.log(accountInfo);
// meglio investire un po meno altrimenti si rischia che il prezzo cambi nel frattempo e il bilancio non basta più a fine ciclo
// meglio differenziare perchè almeno se perdi su una magari su un altra sale
// quindi meglio settare un importo che sia 1/3 del totale che si possiede
const UsdtAmount = accountInfo.balances.filter(v => v.asset === 'USDT')[0].free / 100 * 90
// console.log("USDT Amount", UsdtAmount);
singleClient.dailyStats({ symbol: arrayPrevisioni.simbolo }).then(symbolPrice => {
// verificare se la criptovaluta ha gli ultimi 48 volumi alti (in dollari) o se è senza liquidità
// altrimenti lasciar perdere l'investimento
// segno di inversione rialzista
singleClient.candles({ symbol: arrayPrevisioni.simbolo, interval: '1m', limit: 5 }).then((ultimeCandele) => {
// segno di inversione rialzista a 1 minuto
let ultimeCandeleArray = ultimeCandele.map((v) => { return Number(v.close) > Number(v.open) })
ultimeCandeleArray = ultimeCandeleArray.filter((v, i, a) => {
return i > 0 && a[i] === true && a[i - 1] === true
})
// TEST
// ultimeCandeleArray = [true];
console.log(arrayPrevisioni.simbolo, 'ultimeCandele', ultimeCandeleArray)
if (ultimeCandeleArray.length > 0) {
// console.log("Symbol Price", symbolPrice.askPrice, symbolPrice);
let maxQty = UsdtAmount / Number(symbolPrice.askPrice)
// console.log("Max Qty", maxQty);
maxQty = roundByDecimals(roundByLotSize(maxQty, arrayPrevisioni.lotSize), arrayPrevisioni.baseAssetPrecision)
// console.log('USDT AMOUNT', UsdtAmount, 'ARRAY PREVISIONI', arrayPrevisioni, 'SYMBOL PRICE', symbolPrice, 'ASK PRICE', symbolPrice.askPrice);
console.log('VALUTAZIONE ORDINE', 'SALDO USDT', UsdtAmount, 'SIMBOLO', arrayPrevisioni.simbolo, 'QUANTITA', maxQty, 'MEDIANA', arrayPrevisioni.median, 'TAKE PROFIT', roundByDecimals((symbolPrice.askPrice / 100 * (100 + arrayPrevisioni.median)), tickSizeDecimals), 'STOP LOSS', roundByDecimals((symbolPrice.bidPrice / 100 * (100 - 1)), tickSizeDecimals), 'TICK SIZE', tickSize, 'TICK SIZE DECIMALS', tickSizeDecimals)
// L'ask price è il prezzo minore a cui ti vendono la moneta
// in realtà dovresti testare anche la quantità ma siccome per ora metto poco non serve
// stop loss perc è -1.2% massimo. meglio seguire la regola del 2%
// ovvero mai mettere a rischio più del 2% del capitale investito, per ogni operazione
// rif. https://www.cmegroup.com/education/courses/trade-and-risk-management/the-2-percent-rule.html
// rif. One popular method is the 2% Rule, which means you never put more than 2% of your account equity at risk (Table 1). For example, if you are trading a $50,000 account, and you choose a risk management stop loss of 2%, you could risk up to $1,000 on any given trade.
const stopLossTriggerPerc = 1
const stopLossPerc = 1.2
// dato che la commissione è lo 0.1% basta che la mediana sia superiore alla commissione
// APRO SOLO SE ALMENO LA PREVISIONE E' MAGGIORE DEL RISCHIO
// COME SI SUOL DIRE: CHE ALMENO IL RISCHIO VALGA LA CANDELA
// E' GIUSTO MAGGIORE PERCHE' DEVE SUPERARE NECESSARIAMENTE LA MEDIANA, NON SOLO EGUAGLIARLA IN CASO DI GUADAGNO
const takeProfit = roundByDecimals((symbolPrice.askPrice / 100 * (100 + arrayPrevisioni.median)), tickSizeDecimals)
const stopLossTrigger = roundByDecimals((symbolPrice.bidPrice / 100 * (100 - stopLossTriggerPerc)), tickSizeDecimals)
const stopLoss = roundByDecimals((symbolPrice.bidPrice / 100 * (100 - stopLossPerc)), tickSizeDecimals)
console.log(arrayPrevisioni.simbolo, 'QuoteVolume', symbolPrice.quoteVolume)
// per evitare rischi dovuti alla troppa volatilità. comunque proviamo /3 altrimenti non trova mai una condizione favorevole
// lo stopLossTrigger (quello che lancia lo stop loss effettivo) si riferisce al bidPrice (prezzo vendita cioè più basso), mentre il take profit all'ask price (prezzo d'acquisto cioè più alto)
const condition = symbolPrice.quoteVolume > 4500000 && (takeProfit - symbolPrice.askPrice) >= ((symbolPrice.bidPrice - stopLossTrigger) * 0.6) && (takeProfit - symbolPrice.askPrice) <= ((symbolPrice.bidPrice - stopLossTrigger) * 1.2)
console.log('VALUTAZIONE ORDINE 2', 'SL', stopLoss, 'SL Trigger', stopLossTrigger, 'TP', takeProfit, 'DIFF TP', (takeProfit - symbolPrice.askPrice), 'DIFF SL', (symbolPrice.bidPrice - stopLossTrigger), 'DIFF SL/2', ((symbolPrice.bidPrice - stopLossTrigger) / 2), 'DIFF SL*1.5', ((symbolPrice.bidPrice - stopLossTrigger) * 1.5), 'CONDITION', condition)
if (UsdtAmount >= 25 && condition === true) {
singleClient.openOrders({ symbol: arrayPrevisioni.simbolo }).then(openOrders => {
console.log('ORDINI APERTI PER ' + arrayPrevisioni.simbolo, openOrders, openOrders.length)
if (openOrders.length === 0) {
console.log('APERTURA ORDINE', 'SIMBOLO', arrayPrevisioni.simbolo, 'QUANTITA', maxQty, 'MEDIANA', arrayPrevisioni.median, 'TAKE PROFIT', roundByDecimals((symbolPrice.askPrice / 100 * (100 + arrayPrevisioni.median)), tickSizeDecimals), 'STOP LOSS', roundByDecimals((symbolPrice.bidPrice / 100 * (100 - 1)), tickSizeDecimals), 'TICK SIZE', tickSize, 'TICK SIZE DECIMALS', tickSizeDecimals)
playBullSentiment()
singleClient.order({
symbol: arrayPrevisioni.simbolo,
side: 'BUY',
type: 'MARKET',
quantity: maxQty,
newClientOrderId: 'BUY'
}).then(() => {
// console.log(response)
piazzaOrdineOco(arrayPrevisioni.simbolo, maxQty, takeProfit, stopLossTrigger, stopLoss, arrayPrevisioni.baseAssetPrecision, arrayPrevisioni.lotSize, 0, singleClient, function (cb) {
if (cb[0] === true) {
console.log('ORDINE OCO PIAZZATO', arrayPrevisioni.simbolo)
} else {
console.log('piazzaOrdineOco internal', cb[1])
}
})
}).catch((reason) => {
logFile.write(util.format(reason) + '\n')
console.log('single_client.order BUY', arrayPrevisioni.simbolo, reason)
})
}
}).catch((reason) => {
logFile.write(util.format(reason) + '\n')
console.log('single_client.openOrders', arrayPrevisioni.simbolo, reason)
})
}
}
}).catch(reason => {
logFile.write(util.format(reason) + '\n')
console.log('single_client.candles', arrayPrevisioni.simbolo, reason)
})
}).catch((reason) => {
logFile.write(util.format(reason) + '\n')
console.log('single_client.dailyStats', arrayPrevisioni.simbolo, reason)
})
}).catch((reason) => {
logFile.write(util.format(reason) + '\n')
// SINCRONIZZARE OROLOGIO SE DICE CHE E' 1000ms avanti rispetto al server di binance
console.log('single_client.accountInfo', arrayPrevisioni.simbolo, reason)
})
}).catch((reason) => {
logFile.write(util.format(reason) + '\n')
console.log('single_client.exchangeInfo', arrayPrevisioni.simbolo, reason)
})
};
};
} catch (reason) {
logFile.write(util.format(reason) + '\n')
console.log(reason)
}
}
// client.time().then(time => console.log(time));
function getPercentageChange (newNumber, oldNumber) {
const decreaseValue = oldNumber - newNumber
return Math.abs((decreaseValue / oldNumber) * 100)
}
function calculateAbsPercVariationArray (values, period) {
if (values.length < 2) throw new Error('No sufficient inputs')
values = values.slice(period * -1)
const percentageArray = []
for (let i = 1; i < values.length; i++) {
percentageArray.push(getPercentageChange(values[i], values[i - 1]))
}
return percentageArray
}
function calculatePercDiff (finalValue, initialValue) {
return ((finalValue - initialValue) / initialValue) * 100
}
function percentTo0until90Angle (percent) {
// ad esempio una salita del 50% in 1 incremento è un angolo di 45 gradi
// una salita del 5% è un angolo di 4.5 gradi
return roundByDecimals(90 / 100 * percent, 2)
}
function calculateMedian (values) {
if (values.length === 0) throw new Error('No inputs')
values.sort(function (a, b) {
return a - b
})
const half = Math.floor(values.length / 2)
if (values.length % 2) { return values[half] }
return (values[half - 1] + values[half]) / 2.0
}
let simultaneousConnections = 0
let prevSeconds = 0
let connectionLimit = 0
const time = 1000
function promessa (market, exchangeName, callback) {
let condizioneVerificata
if (exchangeName === 'binance') {
// inserire qui le coin da escludere (magari per notizie poco promettenti ecc)
// ad esempio nel caso di MTL è stata esclusa perchè l'export dimetalli era molto in calo
// escludo i BNB perchè mi servono per pagare le fees (commissioni)
condizioneVerificata = /* symbols_whitelist.indexOf(market.symbol) !== -1 && */ market.symbol.slice(0, 3) !== 'BNB' && market.symbol.slice(-4) === 'USDT' && market.status === 'TRADING' && market.isSpotTradingAllowed === true
}
if (condizioneVerificata === true) {
// console.log("simultaneousConnections", simultaneousConnections, market.symbol);
// per raddoppiare la velocità
// se metti + di 2 connessioni simultanee rischi di superare
// le 1200 richieste al minuto (all'8 luglio 2022 con la quantità di cripto che c'è)
if (new Date().getSeconds() !== prevSeconds) {
prevSeconds = new Date().getSeconds()
connectionLimit = 0
}
// console.log('connectionLimit', connectionLimit, 'simultaneousConnections', simultaneousConnections);
// connectionLimit è il limite di connessioni al secondo
// con la mia connessione (30mbps down 15mbps up) ce la fa, altrimenti va regolato per non fare troppe richieste
// < 3 e < 3 è l'ideale adesso che l'oco fa tante richieste alle API
if (simultaneousConnections < 3 && connectionLimit < 3) {
// console.log('connectionLimit', 'passed', connectionLimit);
// meglio mettere 210 nel reale altrimenti ci mette una vita a fare il ciclo
let askClosePrices
let lotSize
// SE CHIEDI LE CANDELE A KUCOIN TOO MANY REQUESTS
// SE LE CHIEDI A BINANCE A VOLTE MANCANO DEI SIMBOLI DI KUCOIN
// BISOGNEREBBE VEDERE QUELLI IN COMUNE TRA I DUE
// E COMUNQUE NON E' DETTO CHE SIANO IDENTICI
if (exchangeName === 'binance') {
simultaneousConnections++
// una connessione è per le candele e un altra connessioone è per exchangeInfo
connectionLimit += 1
// console.log(market.symbol);
client.candles({ symbol: market.symbol, interval: '30m', limit: 340 }).then((rawPrices) => {
askClosePrices = rawPrices.map((v) => { return Number(v.close) })
lotSize = market.filters.filter(v => v.filterType === 'LOT_SIZE')[0].stepSize
simultaneousConnections--
callback([true, { symbol: market.symbol, baseAsset: market.baseAsset, baseAssetPrecision: market.baseAssetPrecision, rawPrices, askClosePrices, lotSize }])
// console.log(market.symbol, "qui");
}).catch((reason) => {
logFile.write(util.format(reason) + '\n')
console.log('no1', market.symbol, reason)
simultaneousConnections--
callback([false, reason])
})
}
} else {
// time += 10;
// console.log("ricorsione", market.symbol, typeof callback === 'function');
setTimeout(function () { promessa(market, exchangeName, callback) }, time)
}
} else {
callback([false, 'non verificata'])
}
}
async function bootstrap () {
const arrayPrevisioni = []
console.log('---------------------------------------------------------------------------')
const binanceDate = new Date().toLocaleString()
console.log('DATA', binanceDate)
const exchangeName = 'binance'
let info, symbols
if (exchangeName === 'binance') {
// https://www.binance.com/en/markets/spot-USDT top volume and > 50 MILLIONS MARKET CAP AND INCREMENT 24 HOURS > 1 E < 5
info = await client.exchangeInfo()
symbols = info.symbols
} else if (exchangeName === 'kucoin') {
info = await Kucoin.getSymbols()
symbols = info.data
}
// console.log(info);
// process.exit();
for (const market of symbols) {
// sono 2 richieste per ciclo e puoi farne massimo 1200
// per sicurezza mettiamone un po in meno per lasciare spazio all'apertura ordini ecc
// per provare a velocizzare le richieste
new Promise((resolve, reject) => {
promessa(market, exchangeName, function (result) {
if (result[0] === true) {
// console.log(result);
resolve(result[1])
} else {
/* if (result[1] !== "non verificata") {
console.log(result[1]);
} */
reject(result[1])
}
})
}).then(result => {
const promiseModel = { value: result }
// console.log(promiseModel.value);
// process.env.exit();
// allSettled vuol dire che aspetta anche tutti i rejects,
// a differenza di Promise.all() che invece al primo reject si ferma
// Promise.allSettled(arrayPromise).
// then((results) => {
// results = results.filter((v) => v.status !== 'rejected');
// console.log("Promise Risolte: ", results.length);
// results.forEach((promiseModel) => {
// 'symbol': market.symbol, 'baseAsset': market.baseAsset,
// 'baseAssetPrecision': market.baseAssetPrecision,
// 'rawPrices': rawPrices, 'askClosePrices': askClosePrices,
// 'lotSize': lotSize
// console.log(promiseModel.value);
const symbol = promiseModel.value.symbol
const rawPrices = promiseModel.value.rawPrices
const askClosePrices = promiseModel.value.askClosePrices
const baseAsset = promiseModel.value.baseAsset
const baseAssetPrecision = promiseModel.value.baseAssetPrecision
const lotSize = promiseModel.value.lotSize
if (tradeDebugEnabled === true) {
console.log('\n', symbol)
}
/* console.log("ASSET SOTTOSTANTE", baseAsset); */
/* console.log("LOT_SIZE", lotSize); */
// console.log("PRICES LENGTH", askClosePrices.length);
// se ci sono abbastanza prezzi da fare i calcoli, altrimenti si blocca l'esecuzione del programma
if (askClosePrices.length > 201) {
const medianPercDifference = calculateMedian(calculateAbsPercVariationArray(askClosePrices, 14))
// attenzione. nel caso cripto i mercati devono essere liquidi quindi devono avere volumi scambiati alti
// altrimenti si rischia che lo spread tra ask e bid sia troppo alto
// TREND MINORE SMA50 RIBASSISTA
const smaMinore = SMA.calculate({
period: 50,
values: askClosePrices
})
const trendMinoreRibassista = smaMinore[smaMinore.length - 1] < smaMinore[smaMinore.length - 2]
// eslint-disable-next-line no-unused-vars
const trendMinoreRialzista = smaMinore[smaMinore.length - 1] > smaMinore[smaMinore.length - 2]
if (tradeDebugEnabled === true) {
console.log('TREND MINORE RIBASSISTA', trendMinoreRibassista)
}
/* console.log("TREND MINORE RIALZISTA", trendMinoreRialzista); */
// TREND MAGGIORE RIALZISTA
const smaMaggiore = SMA.calculate({
period: 200,
values: askClosePrices
})
const trendMaggioreRialzista = smaMaggiore[smaMaggiore.length - 1] > smaMaggiore[smaMaggiore.length - 2]
// eslint-disable-next-line no-unused-vars
const trendMaggioreRibassista = smaMaggiore[smaMaggiore.length - 1] < smaMaggiore[smaMaggiore.length - 2]
if (tradeDebugEnabled === true) {
console.log('TREND MAGGIORE RIALZISTA', trendMaggioreRialzista)
}
/* console.log("TREND MAGGIORE RIBASSISTA", trendMaggioreRibassista); */
// CALCOLO RSI RIALZISTA (<30)
const rsi = RSI.calculate({
period: 14,
values: askClosePrices
})
const rsiRialzista = rsi[rsi.length - 1] < 30
// eslint-disable-next-line no-unused-vars
const rsiRibassista = rsi[rsi.length - 1] > 70
if (tradeDebugEnabled === true) {
console.log('RSI', rsi[rsi.length - 1])
console.log('RSI RIALZISTA', rsiRialzista)
}
/* console.log("RSI RIBASSISTA", rsiRibassista); */
const macdInput = {
values: askClosePrices,
fastPeriod: 8,
slowPeriod: 21,
signalPeriod: 5,
// è giusto così
SimpleMAOscillator: false,
SimpleMASignal: false
}
const macd = MACD.calculate(macdInput)
// SUPERAMENTO MACD
const segnaleSuperaMACD = macd[macd.length - 1].signal > macd[macd.length - 1].MACD
// eslint-disable-next-line no-unused-vars
const segnaleSuperaMACDBasso = macd[macd.length - 1].signal < macd[macd.length - 1].MACD
if (tradeDebugEnabled === true) {
console.log('SEGNALE SUPERA MACD', segnaleSuperaMACD)
}
/* console.log("SEGNALE SUPERA MACD BASSO", segnaleSuperaMACDBasso); */
// è giusto trend minore ribassista e maggiore rialzista secondo Alyssa
if (trendMinoreRibassista === true && trendMaggioreRialzista === true && rsiRialzista === true && segnaleSuperaMACD === true) {
const closeTime = new Date(rawPrices[rawPrices.length - 1].closeTime)
// console.log(closeTime, rawPrices[rawPrices.length - 1].closeTime);
// non avrebbe senso investire in qualcosa che promette meno dello stop loss in termini percentuali
const stopLoss = 1
// if (medianPercDifference > stopLoss) {
const arrayInvestimento = []