-
Notifications
You must be signed in to change notification settings - Fork 7
/
versione5Testing.js
1296 lines (1116 loc) · 51.8 KB
/
versione5Testing.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'
// TESTATO SENZA MAI AVER SBAGLIATO IL 10 GIUGNO 2022 TUTTO IL GIORNO
const fs = require('fs')
const util = require('util')
const path = require('path')
const dotenv = require('dotenv')
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
dotenv.config()
const logFile = fs.createWriteStream(path.join(__dirname, 'debug.log'), { flags: 'a' })
const ordersFile = fs.createWriteStream(path.join(__dirname, 'orders.log'), { flags: 'a' })
// setto i clients di binance
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]
}))
})
// setto il client principale (il primo che è nelle keys del file .env)
const client = clients[0]
// serve ad abilitare i suoni durante il trade
// i suoni comunque sono disabilitati di notte
const soundDisabled = false
// serve ad abilitare le info di debug durante il trade
const tradeDebugEnabled = false
// serve a ricalcolare il prezzo in base alla grandezza del lotto minimo
// es. se il lotto minimo è 0.02 e il prezzo stimato è 0.13 lo ricalcola a 0.14
function roundByLotSize (value, step) {
step || (step = 1.0)
const inv = 1.0 / step
return Math.round(value * inv) / inv
}
// serve per arrotondare i decimali nel modo corretto
// perchè toFixed() li arrotonda male. es. con toFixed(1) se fosse 0.59
// lo arrotonderebbe a 0.5, invece con questo a 0.6
function roundByDecimals (value, decimals) {
return Number(Math.round(value + 'e' + decimals) + 'e-' + decimals)
}
// eslint-disable-next-line no-extend-native
// serve per contare il numero di decimali nella tickSize (partendo da una stringa numerica)
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)
}
}
// serve per contare il numero di decimali nella tickSize (partendo da un numero)
String.prototype.countDecimals = function () {
try {
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--) {
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
// serve per prendere il prezzo con meno ordini impostati
// vicino ai prezzi passati come parametro nell'order book
// serve a ridurre il rischio di mancato scambio a causa
// delle troppe ordinazioni presenti a quel prezzo
function analisiOrderBook (symbol, currentPrice, maxPrice, minPrice, callback) {
client.book({ symbol }).then(response => {
const asks2 = response.asks.reverse()
const bids2 = response.bids
// calcola il prezzo di take profit sotto al prezzo massimo della resistenza
// usando il meno venduto a quella cifra precedente
// in modo che non arrivi ancora a toccare il massimo prima di vendere
const asks = asks2.filter((v, i, a) => {
if (v.price <= maxPrice && v.price > currentPrice) {
return v.price
}
}).slice(0, 3)
// calcola lo stop loss sotto al muro del supporto
// in modo da prevenire le discese per bisogno di liquidità
// che di solito arrivano solo a toccare il supporto per pescare soldi
const bids = bids2.filter((v, i, a) => {
if (v.price < minPrice && v.price < currentPrice) {
return v.price
}
}).slice(0, 3)
// prende il take profit meno venduto tra i 3 sotto la resistenza
let bestAsk = asks.sort((a, b) => {
return a.quantity - b.quantity
})
if (bestAsk.length > 0) {
bestAsk = bestAsk[0]
} else {
bestAsk = { price: maxPrice }
}
// prende lo stop loss meno venduto SOTTO il supporto
let bestBid = bids.sort((a, b) => {
return a.quantity - b.quantity
})
if (bestBid.length > 0) {
bestBid = bestBid[0]
} else {
bestBid = { price: 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
// analizza i grafici, alla ricerca di patterns
function analisiGraficaGiornalieraMassimiMinimiVicini (symbol, tickSizeDecimals, callback) {
// prende le candele delle 24 ore precedenti,
// dato che sono intervalli di 30 minuti
// dato che operiamo in intraday non serve un periodo oltre a questo
client.candles({ symbol, interval: '30m', limit: 48 }).then((candles30Min) => {
const massimiVicini = []
const minimiVicini = []
const doppiTocchiMassimi = []
const tripliTocchiMassimi = []
const doppiTocchiMinimi = []
const tripliTocchiMinimi = []
let massimoAssoluto = 0
let minimoAssoluto = Infinity
// prende tutti i valori delle chiusure di candele
const candles30MinCloses = candles30Min.map((v) => Number(v.close))
// prende il prezzo corrente dall'ultima chiusura
const currentPrice = candles30MinCloses[candles30MinCloses.length - 1]
// calcola le medie mobili dei prezzi massimi e minimi
// per poi andare a calcolare con i rapporti incrementali
// i massimi e minimi nel grafico
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))
// calcolo le resistenze nel grafico (in alto) più altri dati
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
// vedo se il massimo è assoluto nel grafico o relativo
if (price > massimoAssoluto) {
massimoAssoluto = price
}
// vedo se è un triplo tocco massimo
const searchOtherDouble = doppiTocchiMassimi.lastIndexOf(price)
if (searchOtherDouble !== -1 && searchOtherDouble !== doppiTocchiMassimi.length - 1) {
tripliTocchiMassimi.push(price)
}
// vedo se è un doppio tocco massimo
const searchOtherMax = massimiVicini.lastIndexOf(price)
if (searchOtherMax !== -1 && searchOtherMax !== massimiVicini.length - 1) {
doppiTocchiMassimi.push(price)
}
// lo imposto comunque come massimo
massimiVicini.push(price)
} else {
// questo sarebbe un flesso quindi non mi interessa
}
}
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 = y1
// minimo relativo o assoluto
if (y1 < minimoAssoluto) {
minimoAssoluto = price
}
// vedo se è un triplo tocco minimo
const searchOtherDouble = doppiTocchiMinimi.lastIndexOf(price)
if (searchOtherDouble !== -1 && searchOtherDouble !== doppiTocchiMinimi.length - 1) {
tripliTocchiMinimi.push(price)
}
// vedo se è un doppio tocco minimo
const searchOtherMax = minimiVicini.lastIndexOf(price)
if (searchOtherMax !== -1 && searchOtherMax !== minimiVicini.length - 1) {
doppiTocchiMinimi.push(price)
}
// lo imposto comunque come minimo
minimiVicini.push(price)
} else {
// questo sarebbe un flesso quindi non mi interessa
}
}
rapportoIncrementalePrecedente = rapportoIncrementaleAttuale
}
const numeroDoppiTocchiMassimi = doppiTocchiMassimi.length
const numeroDoppiTocchiMinimi = doppiTocchiMinimi.length
const numeroTripliTocchiMassimi = tripliTocchiMassimi.length
const numeroTripliTocchiMinimi = tripliTocchiMinimi.length
// faccio il calcolo del massimo assoluto su tutte le candele esclusa l'ultima
// altrimenti non potrei vedere se è stato superato in termini assoluti
massimoAssoluto = Math.max(...smaMax.slice(0, -1))
// faccio il calcolo del minimo assoluto su tutte le candele esclusa l'ultima
// altrimenti non potrei vedere se è stato superato in discesa in termini assoluti
minimoAssoluto = Math.min(...smaMin.slice(0, -1))
// calcolo la volatilità settimanale in termini percentuali
const vol1 = calculateAbsPercVariationArray([massimoAssoluto, minimoAssoluto])
const vol2 = calculateAbsPercVariationArray([minimoAssoluto, massimoAssoluto])
let volatilita = roundByDecimals((vol1[0] + vol2[0]) / 2, tickSizeDecimals)
if (isNaN(volatilita)) {
volatilita = 0
}
callback({ currentPrice, volatilita, 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)
})
}
// suona in caso di eccezioni
let lastDrinTime = 0
async function playDrin (bypass) {
const filePath = path.join(__dirname, 'drin.mp3')
const ora = new Date().getHours()
if (bypass === true) {
if (soundDisabled === false) {
sound.play(filePath)
}
} else if (ora < 22 && ora >= 9 && new Date().getTime() - lastDrinTime >= 30000) {
if (soundDisabled === false) {
sound.play(filePath)
lastDrinTime = new Date().getTime()
}
}
}
// suona in caso di acquisto di assets
let lastBullTime = 0
async function playBullSentiment (bypass) {
const filePath = path.join(__dirname, 'bull_sentiment.mp3')
const ora = new Date().getHours()
if (bypass === true) {
if (soundDisabled === false) {
sound.play(filePath)
}
} else if (ora < 22 && ora >= 9 && new Date().getTime() - lastBullTime >= 30000) {
if (soundDisabled === false) {
sound.play(filePath)
lastBullTime = new Date().getTime()
}
}
}
function piazzaOrdineOco (simbolo, quantity, takeProfit, stopLossTrigger, stopLoss, baseAssetPrecision, lotSize, ocoAttemps, singleClient, callback) {
// per piazzare l'ordine OCO (One Cancel Other) di chiusura
console.log('trying placing OCO', simbolo, quantity)
// legge il bilancio di quel simbolo nel wallet
singleClient.accountInfo().then(accountInfo => {
quantity = accountInfo.balances.filter(v => v.asset === simbolo.slice(0, -4))[0].free
// in caso di ritentativo per bilancio insufficiente, ricalcola la quantità di vendita
if (ocoAttemps > 0) {
quantity = quantity / 100 * (100 - (0.075 * (ocoAttemps - 1)))
}
quantity = roundByDecimals(roundByLotSize(quantity, lotSize), baseAssetPrecision)
singleClient.dailyStats({ symbol: simbolo }).then(dailyStats => {
// se rileva che il prezzo di vendita sia più basso del prezzo di bid
// vende a mercato subito
if (dailyStats.bidPrice < stopLossTrigger) {
singleClient.order({
symbol: simbolo,
side: 'SELL',
type: 'MARKET',
quantity,
newClientOrderId: 'SELL'
}).then(response => {
ordersFile.write(util.format(response) + '\n')
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 {
// piazza l'ordine OCO con quantità da vendere, take profit, stop loss trigger e stop los
singleClient.orderOco({
symbol: simbolo,
side: 'SELL',
quantity,
price: takeProfit,
stopPrice: stopLossTrigger,
stopLimitPrice: stopLoss
}).then(response => {
ordersFile.write(util.format(response) + '\n')
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) {
// istruzione di acquisto di un asset, dopo aver passato i primi filtri
try {
client.exchangeInfo().then((e) => {
const tickSize = e.symbols.filter(v => v.symbol === arrayPrevisioniFull[0].simbolo)[0].filters.filter(v => v.filterType === 'PRICE_FILTER')[0].tickSize
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) {
for (const arrayPrevisioni of arrayPrevisioniFull) {
singleClient.accountInfo().then(accountInfo => {
// calcolo della liquidità in USDT disponibile nel wallet
const UsdtAmount = accountInfo.balances.filter(v => v.asset === 'USDT')[0].free / 100 * 97.5
singleClient.dailyStats({ symbol: arrayPrevisioni.simbolo }).then(symbolPrice => {
// calcolo della quantità aquistabile con gli USDT disponibili, arrotondata per LotSize
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, 'TICK SIZE', tickSize, 'TICK SIZE DECIMALS', tickSizeDecimals)
const takeProfit = analisiGraficoBook.bestAsk
const stopLossTrigger = roundByDecimals(analisiGraficoBook.bestBid, tickSizeDecimals)
// calcolo dello stop loss effettivo (più basso del trigger per evitare problemi di slippage)
const stopLoss = roundByDecimals(analisiGraficoBook.bestBid / 100 * 99.5, tickSizeDecimals)
// filtro di liquidità in 24 ore, per non investire su mercati fermi o comunque poco scambiati
if (symbolPrice.quoteVolume > 4000000) {
console.log('TEST LIQUIDITA SUPERATO', 'SIMBOLO', arrayPrevisioni.simbolo, 'SL', stopLoss, 'SL Trigger', stopLossTrigger, 'TP', takeProfit)
// filtro di minima quantità di USDT da investire impostato a 25 USDT
if (UsdtAmount >= 25) {
singleClient.openOrders({ symbol: arrayPrevisioni.simbolo }).then(openOrders => {
// se non ci sono ordini già aperti in questo simbolo, compra a mercato
if (openOrders.length === 0) {
console.log('APERTURA ORDINE MERCATO', 'SIMBOLO', arrayPrevisioni.simbolo, 'QUANTITA', maxQty, 'TICK SIZE', tickSize, 'TICK SIZE DECIMALS', tickSizeDecimals)
playBullSentiment()
singleClient.order({
symbol: arrayPrevisioni.simbolo,
side: 'BUY',
type: 'MARKET',
quantity: maxQty,
newClientOrderId: 'BUY'
}).then((response) => {
ordersFile.write(util.format(response) + '\n')
// imposta l'ordine OCO
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')
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
// Appartenente alla versione precedente. Non documentato
async function autoInvestiLong (arrayPrevisioniFull) {
try {
for (const singleClient of clients) {
for (const arrayPrevisioni of arrayPrevisioniFull) {
client.exchangeInfo().then((e) => {
const tickSize = e.symbols.filter(v => v.symbol === arrayPrevisioni.simbolo)[0].filters.filter(v => v.filterType === 'PRICE_FILTER')[0].tickSize
const tickSizeDecimals = tickSize.toString().countDecimals()
singleClient.accountInfo().then(accountInfo => {
const UsdtAmount = accountInfo.balances.filter(v => v.asset === 'USDT')[0].free / 100 * 90
singleClient.dailyStats({ symbol: arrayPrevisioni.simbolo }).then(symbolPrice => {
singleClient.candles({ symbol: arrayPrevisioni.simbolo, interval: '1m', limit: 5 }).then((ultimeCandele) => {
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
})
console.log(arrayPrevisioni.simbolo, 'ultimeCandele', ultimeCandeleArray)
if (ultimeCandeleArray.length > 0) {
let maxQty = UsdtAmount / Number(symbolPrice.askPrice)
maxQty = roundByDecimals(roundByLotSize(maxQty, arrayPrevisioni.lotSize), arrayPrevisioni.baseAssetPrecision)
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)
const stopLossTriggerPerc = 1
const stopLossPerc = 1.2
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)
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((response) => {
ordersFile.write(util.format(response) + '\n')
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')
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)
}
}
// funzione che serve a vedere la data nel server di binance
// client.time().then(time => console.log(time));
// vede la differenza di percentuale tra il vecchio e il nuovo numero
function calculatePercDiff (finalValue, initialValue) {
return ((finalValue - initialValue) / initialValue) * 100
}
// legge la differenza percentuale tra tutti i valori dell'array
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(calculatePercDiff(values[i], values[i - 1]))
}
return percentageArray
}
// vede l'angolazione della curva basandosi sulla percentuale nell'angolo da 0 a 90 gradi
function percentTo0until90Angle (percent) {
return roundByDecimals(90 / 100 * percent, 2)
}
// calcola la mediana in un array
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
// va a leggere velocemente in parallelo tutti i simboli
// con un numero massimo di connessioni simultanee al secondo
function promessa (market, exchangeName, callback) {
let condizioneVerificata
if (exchangeName === 'binance') {
condizioneVerificata = market.symbol.slice(0, 3) !== 'BNB' && market.symbol.slice(-4) === 'USDT' && market.status === 'TRADING' && market.isSpotTradingAllowed === true
}
if (condizioneVerificata === true) {
if (new Date().getSeconds() !== prevSeconds) {
prevSeconds = new Date().getSeconds()
connectionLimit = 0
}
// limite di connessioni in contemporanea, e di connessioni al secondo
if (simultaneousConnections < 3 && connectionLimit < 3) {
let askClosePrices = []
let lotSize = []
if (exchangeName === 'binance') {
simultaneousConnections++
connectionLimit += 1
// in questo caso invece serve un periood lungo perchè dobbiamo calcolare l'SMA di 336 periodi (1 settimana + 1 giorno di sicurezza)
client.candles({ symbol: market.symbol, interval: '30m', limit: 48 * (7 + 1) }).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 }])
}).catch((reason) => {
logFile.write(util.format(reason) + '\n')
console.log('no1', market.symbol, reason)
simultaneousConnections--
callback([false, reason])
})
}
} else {
setTimeout(function () { promessa(market, exchangeName, callback) }, time)
}
} else {
callback([false, 'non verificata'])
}
}
// appartenente alla versione vecchia e non documentato
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') {
info = await client.exchangeInfo()
symbols = info.symbols
}
for (const market of symbols) {
new Promise((resolve, reject) => {
promessa(market, exchangeName, function (result) {
if (result[0] === true) {
// console.log(result);
resolve(result[1])
} else {
reject(result[1])
}
})
}).then(result => {
const promiseModel = { value: result }
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)
}
if (askClosePrices.length > 201) {
const medianPercDifference = calculateMedian(calculateAbsPercVariationArray(askClosePrices, 14))
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)
}
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)
}
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)
}
const macdInput = {
values: askClosePrices,
fastPeriod: 8,
slowPeriod: 21,
signalPeriod: 5,
SimpleMAOscillator: false,
SimpleMASignal: false
}
const macd = MACD.calculate(macdInput)
const segnaleSuperaMACD = macd[macd.length - 1].signal > macd[macd.length - 1].MACD4
// 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)
}
if (trendMinoreRibassista === true && trendMaggioreRialzista === true && rsiRialzista === true && segnaleSuperaMACD === true) {
const closeTime = new Date(rawPrices[rawPrices.length - 1].closeTime)
const stopLoss = 1
const arrayInvestimento = []
console.log('TEST LONG', symbol, 'PREZZO', rawPrices[rawPrices.length - 1].close)
arrayPrevisioni.push({ azione: 'LONG', simbolo: symbol, price: rawPrices[rawPrices.length - 1].close, tp: rawPrices[rawPrices.length - 1].close / 100 * (100 + medianPercDifference), sl: rawPrices[rawPrices.length - 1].close / 100 * (100 - stopLoss), base_asset: baseAsset, RSI: rsi[rsi.length - 1], date: closeTime, baseAssetPrecision, lotSize })
arrayInvestimento.push({ azione: 'LONG', simbolo: symbol, price: rawPrices[rawPrices.length - 1].close, tp: rawPrices[rawPrices.length - 1].close / 100 * (100 + medianPercDifference), sl: rawPrices[rawPrices.length - 1].close / 100 * (100 - stopLoss), base_asset: baseAsset, RSI: rsi[rsi.length - 1], date: closeTime, baseAssetPrecision, lotSize, median: medianPercDifference })
autoInvestiLong(arrayInvestimento)
}
}
}).catch(() => {
})
}
}
// metodo iniziale per il primo filtraggio degli asset "interessanti" da acquistare
async function bootstrapModalitaOrderbook () {
console.log('---------------------------------------------------------------------------')
const binanceDate = new Date().toLocaleString()
console.log('DATA', binanceDate)
console.log('SINCRONIZZA OROLOGIO DI WINDOWS')
console.log('https://answers.microsoft.com/it-it/windows/forum/all/modificare-la-frequenza-di-aggiornamento/56ff20dd-1901-41f4-8799-efe767d96886')
const exchangeName = 'binance'
// leggo tutti i simboli disponibili per lo scambio da binance
let info, symbols
if (exchangeName === 'binance') {
info = await client.exchangeInfo()
symbols = info.symbols
}
// va a leggere con le promise asincrone i dati di ogni simbolo che scambia in USDT
for (const market of symbols) {
new Promise((resolve, reject) => {
promessa(market, exchangeName, function (result) {
if (result[0] === true) {
resolve(result[1])
} else {
reject(result[1])
}
})
}).then(result => {
const promiseModel = { value: result }
const symbol = promiseModel.value.symbol
const askClosePrices = promiseModel.value.askClosePrices
const baseAssetPrecision = promiseModel.value.baseAssetPrecision
const lotSize = promiseModel.value.lotSize
if (tradeDebugEnabled === true) {
console.log('\n', symbol)
}
// 48 per 7 su tf30 significa 1 settimana
// perchè l'sma settimanale è calcolata così
if (askClosePrices.length > 48 * 7) {
// trend di 2 ore
const sma4 = SMA.calculate({
period: 4,
values: askClosePrices
})
// trend di 8 ore (lavorativa)
const sma16 = SMA.calculate({
period: 16,
values: askClosePrices
})
// trend della settimana (48 * 7)
const sma336 = SMA.calculate({
period: 336,
values: askClosePrices
})
const forzaSmaCorta = percentTo0until90Angle(calculatePercDiff(sma4[sma4.length - 1], sma4[sma4.length - 2]))
const forzaSmaLunga = percentTo0until90Angle(calculatePercDiff(sma16[sma16.length - 1], sma16[sma16.length - 2]))
const forzaSmaSettimana = percentTo0until90Angle(calculatePercDiff(sma336[sma336.length - 1], sma336[sma336.length - 2]))
// rapporto tra SmaCorta e SmaLunga
const rapportoIncrocioSma = forzaSmaCorta / forzaSmaLunga
// ho calcolato la mediana dell'angolo di apertura dell'SMA4 quando poi ha fatto +5%:
// 0.22 di angolo solo se sma > 0
// la SMA16 mediamente ha 0.26 gradi di angolo
if (forzaSmaSettimana > 0 && forzaSmaLunga > 0.25 && forzaSmaCorta > 0.25 && sma4[sma4.length - 1] > sma16[sma16.length - 1]) {
console.log(
symbol,
'data', new Date().toLocaleString(),
'forzaSmaSettimana', forzaSmaSettimana.toFixed(2),
'forzaSmaLunga', forzaSmaLunga.toFixed(2),
'sma4 - 1', sma4[sma4.length - 1].toFixed(5),
'sma4 - 2', sma4[sma4.length - 2].toFixed(5),
'sma16 - 1', sma16[sma16.length - 1].toFixed(5),
'sma16 - 2', sma16[sma16.length - 2].toFixed(5),
'forzaSmaCorta', forzaSmaCorta.toFixed(2),
'rapportoIncrocioSma', rapportoIncrocioSma.toFixed(2))
const arrayInvestimento = []
arrayInvestimento.push({ azione: 'LONG', simbolo: symbol, baseAssetPrecision, lotSize })
autoInvestiLongOrderbook(arrayInvestimento)
}
}
}).catch(() => {
})
}
}
// eslint-disable-next-line no-unused-vars
// fa un analisi del grafico e successivamente adatta i valori all'order book in automatico
function analisiGraficoOrderbook (simbolo, singleClient, tickSizeDecimals, callback) {
analisiGraficaGiornalieraMassimiMinimiVicini(simbolo, tickSizeDecimals, (grafica) => {
const data = new Date().toLocaleString()
const currentPrice = grafica.currentPrice
// blocco il massimo guadagno a +2% per non farmi male
const maxGuadagnoPerc = 2
// eslint-disable-next-line array-callback-return
let boolReimpostazioneNextMaxPrice = false
// legge il prossimo prezzo massimo
let nextMaxPrice = grafica.massimiVicini.sort().filter((v) => {
// il prossimo prezzo massimo deve essere maggiore del prezzo attuale
if (v > currentPrice) {
return v
}
})
// se ha trovato prezzi massimi imposta il prossimo
if (nextMaxPrice.length > 0) {
nextMaxPrice = nextMaxPrice[0]
} else {
// altrimenti lo imposta a 0
nextMaxPrice = Infinity
boolReimpostazioneNextMaxPrice = true
}
// eslint-disable-next-line no-unused-vars, array-callback-return
// imposta il prossimo prezzo minimo trovato, se è dall'1 a 1.3% in meno di adesso
// perchè fa da trigger per lo stop loss, che però è il minprice * 1.5
// quindi per contenere la perdita al massimo al 2% è meglio fare così
let nextMinPrice = grafica.minimiVicini.sort().reverse().filter((v) => {
if (v < currentPrice * 0.99 && v > currentPrice * 0.987) {
return v
}
})
let boolReimpostazioneStopLoss = false
if (nextMinPrice.length > 0) {
nextMinPrice = nextMinPrice[0]
} else {
// se non ha trovato niente di poco minore, imposta lo stop loss trigger a -1%
nextMinPrice = currentPrice * 0.99
boolReimpostazioneStopLoss = true
}
// vede se siamo sotto ai minimi assoluti
let boolSottoMinimiGiornalieri = false
if (currentPrice < grafica.minimoAssoluto) {
boolSottoMinimiGiornalieri = true
}
// vede la differenza percentuale tra prezzo corrente e prossimo massimo
let diffMaxPerc = ((nextMaxPrice - currentPrice) / currentPrice) * 100
// se il prezzo massimo successivo è troppo alto, imposta il take profit a maxGuadagnoPerc
if (diffMaxPerc >= maxGuadagnoPerc) {
nextMaxPrice = roundByDecimals(currentPrice / 100 * (100 + maxGuadagnoPerc), tickSizeDecimals)
diffMaxPerc = ((nextMaxPrice - currentPrice) / currentPrice) * 100
}