-
Notifications
You must be signed in to change notification settings - Fork 7
/
screener_cripto_3.js
1370 lines (1031 loc) · 59.7 KB
/
screener_cripto_3.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
//TESTATO SENZA MAI AVER SBAGLIATO IL 10 GIUGNO 2022 TUTTO IL GIORNO
const dotenv = require('dotenv');
dotenv.config();
const sound = require("sound-play");
const https = require('https');
const nodemailer = require('nodemailer');
const smtpTransport = require('nodemailer-smtp-transport');
const RSI = require('technicalindicators').RSI;
const MACD = require('technicalindicators').MACD;
const SMA = require('technicalindicators').SMA;
const ATR = require('technicalindicators').ATR;
const Binance = require('binance-api-node').default
const Kucoin = require('kucoin-node-api');
const { raw } = require('express');
let 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);
let sound_disabled = false;
let emails_disabled = true;
function roundByLotSize(value, step) {
step || (step = 1.0);
var 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
Number.prototype.countDecimals = function() {
try {
if (Math.floor(this.valueOf()) === this.valueOf()) return 0;
return this.toString().split(".")[1].length || 0;
} catch (exception) {
console.log("Exception", exception, "This", this);
}
}
String.prototype.countDecimals = function() {
//calcola decimali nella tickSize
try {
//console.log("\n");
let splittedNum = this.split(".");
//console.log(splittedNum);
if (splittedNum[1] !== undefined) {
let text = splittedNum[1];
let 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) {
console.log("Exception", exception, "This", this);
}
}
/*
DA RISCRIVERE BENE (AD ESEMPIO I CALCOLI CON QUOTE ASSET PRECISION)
async function autoInvestiShortKucoin(arrayPrevisioniFull) {
for (let arrayPrevisioni of arrayPrevisioniFull) {
let accountInfo = await Kucoin.getMarginAccount();
//console.log(accountInfo.data.accounts);
//meglio investire un po meno altrimenti si rischia che il prezzo cambi nel frattempo e il bilancio non basta più a fine ciclo
let UsdtAmount = accountInfo.data.accounts.filter(v => v.currency === 'USDT')[0].availableBalance;
console.log("USDT Amount", UsdtAmount);
let symbolPrice = await Kucoin.getTicker(arrayPrevisioni.simbolo);
console.log("Symbol Price", symbolPrice.data.bestBid, symbolPrice.data.price);
let maxQty = Number(UsdtAmount) / Number(symbolPrice.data.bestBid);
console.log("Max Qty", maxQty);
maxQty = roundByDecimals(roundByLotSize(maxQty, arrayPrevisioni.lotSize), arrayPrevisioni.baseAssetPrecision);
//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
if (UsdtAmount >= 25 && arrayPrevisioni.tp > symbolPrice.data.bestBid && arrayPrevisioni.sl < symbolPrice.data.bestBid) {
await Kucoin.placeMarginOrder({
symbol: arrayPrevisioni.simbolo,
side: 'buy',
type: 'market',
size: maxQty,
});
await Kucoin.placeMarginOrder({
symbol: arrayPrevisioni.simbolo,
side: 'sell',
type: 'limit',
price: roundByDecimals(arrayPrevisioni.tp, 2),
size: maxQty
});
await Kucoin.placeMarginStopOrder({
symbol: arrayPrevisioni.simbolo,
side: 'sell',
type: 'limit',
price: roundByDecimals(arrayPrevisioni.sl, 2),
size: maxQty,
tradeType: 'MARGIN_TRADE'
});
}
};
}
async function autoInvestiLongKucoin(arrayPrevisioniFull) {
for (let arrayPrevisioni of arrayPrevisioniFull) {
let accountInfo = await Kucoin.getMarginAccount();
//console.log(accountInfo.data.accounts);
//meglio investire un po meno altrimenti si rischia che il prezzo cambi nel frattempo e il bilancio non basta più a fine ciclo
let UsdtAmount = accountInfo.data.accounts.filter(v => v.currency === 'USDT')[0].availableBalance;
console.log("USDT Amount", UsdtAmount);
let symbolPrice = await Kucoin.getTicker(arrayPrevisioni.simbolo);
console.log("Symbol Price", symbolPrice.data.bestAsk, symbolPrice.data.price);
let maxQty = Number(UsdtAmount) / Number(symbolPrice.data.bestAsk);
console.log("Max Qty", maxQty);
maxQty = roundByDecimals(roundByLotSize(maxQty, arrayPrevisioni.lotSize), arrayPrevisioni.baseAssetPrecision);
//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
if (UsdtAmount >= 25 && arrayPrevisioni.tp > symbolPrice.data.bestAsk && arrayPrevisioni.sl < symbolPrice.data.bestAsk) {
await Kucoin.placeMarginOrder({
symbol: arrayPrevisioni.simbolo,
side: 'buy',
type: 'market',
size: maxQty,
});
await Kucoin.placeMarginOrder({
symbol: arrayPrevisioni.simbolo,
side: 'sell',
type: 'limit',
price: roundByDecimals(arrayPrevisioni.tp, 2),
size: maxQty
});
await Kucoin.placeMarginStopOrder({
symbol: arrayPrevisioni.simbolo,
side: 'sell',
type: 'limit',
price: roundByDecimals(arrayPrevisioni.sl, 2),
size: maxQty,
tradeType: 'MARGIN_TRADE'
});
}
};
}
async function autoInvestiShort(arrayPrevisioniFull) {
//In short si compra con il bid Price, perchè è in discesa
for (let arrayPrevisioni of arrayPrevisioniFull) {
let accountInfo = await client.accountInfo();
//meglio investire un po meno altrimenti si rischia che il prezzo cambi nel frattempo e il bilancio non basta più a fine ciclo
let UsdtAmount = accountInfo.balances.filter(v => v.asset === 'USDT')[0].free / 100 * 98;
console.log("USDT Amount", UsdtAmount);
let symbolPrice = await client.dailyStats({ symbol: arrayPrevisioni.simbolo });
console.log("Symbol Price", symbolPrice.bidPrice, symbolPrice);
let maxQty = Number(UsdtAmount) / Number(symbolPrice.bidPrice);
maxQty = roundByDecimals(roundByLotSize(maxQty, arrayPrevisioni.lotSize), arrayPrevisioni.baseAssetPrecision);
console.log("Max Qty", maxQty);
//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
if (UsdtAmount >= 25 && arrayPrevisioni.tp < symbolPrice.bidPrice && arrayPrevisioni.sl > symbolPrice.bidPrice) {
await client.order({
symbol: arrayPrevisioni.simbolo,
side: 'BUY',
type: 'MARKET',
quantity: maxQty,
});
await client.orderOco({
symbol: arrayPrevisioni.simbolo,
side: 'SELL',
quantity: maxQty,
//take profit
price: roundByDecimals(arrayPrevisioni.tp, 2),
//stop loss trigger and limit
stopPrice: roundByDecimals(arrayPrevisioni.sl, 2),
stopLimitPrice: roundByDecimals(arrayPrevisioni.sl, 2),
});
}
};
}*/
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
let ora = new Date().getHours();
//solo ai minuti 30 fa il verso del toro
let minuti = new Date().getMinutes();
if (bypass === true) {
if (sound_disabled === false) {
//console.log(filePath);
sound.play(filePath);
}
} else if (ora < 22 && ora > 9) {
//if (minuti >= 30 && minuti <= 34) {
if (sound_disabled === false) {
//console.log(filePath);
sound.play(filePath);
}
//}
}
}
async function autoInvestiLong(arrayPrevisioniFull) {
//BISOGNA CORREGGERE
//SE CI SONO GIA' ORDINI OCO APERTI SU UN SIMBOLO NON DEVE CREARNE SOPRA
//prima deve chiudere tutti i trade in corso
//per ora lasciamo stare questa parte tanto comunque c'è lo stop loss
/*await client.order({
symbol: arrayPrevisioni.simbolo,
type: 'MARKET',
side: 'SELL',
quantity: '100',
});*/
for (let single_client of clients) {
//console.log(single_client);
for (let arrayPrevisioni of arrayPrevisioniFull) {
//qui da il seguente errore
/*Error: Timestamp for this request was 1000ms ahead of the server's time.
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)
at async autoInvestiLong (C:\var\www\StockPricePredictor\screener_cripto.js:273:31)
at async bootstrap (C:\var\www\StockPricePredictor\screener_cripto.js:1239:21) {
code: -1021,
url: 'https://api.binance.com/api/v3/account?timestamp=1657010501523&signature=c592cb5f1cf44864b11e4960c2077c0b41ae926b81def834bb36e66598dfaf58'
}*/
let accountInfo = await single_client.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
let UsdtAmount = accountInfo.balances.filter(v => v.asset === 'USDT')[0].free / 100 * 90;
//console.log("USDT Amount", UsdtAmount);
let symbolPrice = await single_client.dailyStats({ symbol: arrayPrevisioni.simbolo });
//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)), arrayPrevisioni.tickSizeDecimals), 'STOP LOSS', roundByDecimals((symbolPrice.bidPrice / 100 * (100 - 1)), arrayPrevisioni.tickSizeDecimals), 'TICK SIZE', arrayPrevisioni.tickSize, 'TICK SIZE DECIMALS', arrayPrevisioni.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
let stop_loss_perc = 1;
//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
let stopLoss = roundByDecimals((symbolPrice.bidPrice / 100 * (100 - stop_loss_perc)), arrayPrevisioni.tickSizeDecimals);
let takeProfit = roundByDecimals((symbolPrice.bidPrice / 100 * (100 - stop_loss_perc)), arrayPrevisioni.tickSizeDecimals);
let condition = (takeProfit - symbolPrice.askPrice) >= ((symbolPrice.askPrice - stopLoss) / 2) && (takeProfit - symbolPrice.askPrice) <= ((symbolPrice.askPrice - stopLoss) * 1.5);
console.log('VALUTAZIONE ORDINE 2', "SL", stopLoss, "TP", takeProfit, "DIFF TP", (takeProfit - symbolPrice.askPrice), "DIFF SL", (symbolPrice.askPrice - stopLoss), "DIFF SL/2", ((symbolPrice.askPrice - stopLoss) / 2), "DIFF SL*1.5", ((symbolPrice.askPrice - stopLoss) * 1.5), "CONDITION", condition);
if (UsdtAmount >= 25 && condition === true) {
let openOrders = await single_client.openOrders({ symbol: arrayPrevisioni.simbolo });
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)), arrayPrevisioni.tickSizeDecimals), 'STOP LOSS', roundByDecimals((symbolPrice.bidPrice / 100 * (100 - 1)), arrayPrevisioni.tickSizeDecimals), 'TICK SIZE', arrayPrevisioni.tickSize, 'TICK SIZE DECIMALS', arrayPrevisioni.tickSizeDecimals);
playBullSentiment();
console.log(await single_client.order({
symbol: arrayPrevisioni.simbolo,
side: 'BUY',
type: 'MARKET',
quantity: maxQty,
}));
console.log(await single_client.orderOco({
symbol: arrayPrevisioni.simbolo,
side: 'SELL',
quantity: maxQty,
//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: roundByDecimals((symbolPrice.askPrice / 100 * (100 + arrayPrevisioni.median)), arrayPrevisioni.tickSizeDecimals),
//stop loss trigger and limit
stopPrice: stopLoss,
stopLimitPrice: takeProfit,
}));
}
}
};
};
}
//per avviare
//NODE_TLS_REJECT_UNAUTHORIZED='0' node screener_cripto.js
//altro sito per sentiment
//https://lunarcrush.com/coins/hard/hard-protocol
//https://www.bittsanalytics.com/sentiment-index/ETC
//https://it.investing.com/indices/investing.com-etc-usd-scoreboard
async function accountLongInSalita(pair, period) {
let url = "https://fapi.binance.com/futures/data/globalLongShortAccountRatio?symbol=" + pair + "&period=" + period;
//console.log(url);
return new Promise((resolve, reject) => {
let request = https.get(url, function(res) {
let data = '';
let json_data;
let longSentiment = null;
res.on('data', function(stream) {
data += stream;
});
res.on('end', function() {
//console.log(data);
json_data = JSON.parse(data);
//console.log(url);
if (json_data.length > 0) {
//il sentiment dev'essere positivo (se è maggiore di 1 vuol dire che è long sentiment perchè la ratio è long% / short%)
if (json_data[json_data.length - 1].longShortRatio > 1) {
longSentiment = true;
} else if (json_data[json_data.length - 1].longShortRatio < 1) {
longSentiment = false;
}
//dev'essere in discesa la long short ratio (più è bassa e più stanno comprando)
/*if (json_data[json_data.length - 1].longShortRatio < json_data[json_data.length - 2].longShortRatio) {
longSentiment = true;
}*/
}
resolve(longSentiment);
});
});
});
}
/*async function takerBuyInSalita(pair, period) {
let url = "https://fapi.binance.com/futures/data/takerlongshortRatio?symbol=" + pair + "&period=" + period;
//console.log(url);
return new Promise((resolve, reject) => {
let request = https.get(url, function(res) {
let data = '';
let json_data;
let longSentiment = null;
res.on('data', function(stream) {
data += stream;
});
res.on('end', function() {
//console.log(data);
json_data = JSON.parse(data);
//console.log(url);
if (json_data.length > 0) {
//dev'essere in salita il volume comprato dai taker
if (json_data[json_data.length - 1].buyVol > json_data[json_data.length - 2].buyVol) {
longSentiment = true;
} else if (json_data[json_data.length - 1].buyVol < json_data[json_data.length - 2].buyVol) {
longSentiment = false;
}
}
resolve(longSentiment);
});
});
});
}*/
//client.time().then(time => console.log(time));
function sendEmails(arrayPrevisioni) {
if (emails_disabled === false) {
if (arrayPrevisioni.length >= 1) {
//https://accounts.google.com/b/0/DisplayUnlockCaptcha
//https://myaccount.google.com/lesssecureapps?pli=1&rapt=AEjHL4NYr5y8RROZO7eLBzjF2f8PGfg126pf9yTndhB2KH-wTgTt78naKJmbWEKuwOr87fBT4CafM8fnOTL1OJYgv5MqVShOWQ
//li metterò in MySql in futuro, se ci sarà un futuro
let emails = process.env.EMAIL_LIST.split(',');
var transporter = nodemailer.createTransport(smtpTransport({
service: 'gmail',
host: 'smtp.gmail.com',
auth: {
user: process.env.EMAIL_USERNAME,
pass: process.env.EMAIL_PASSWORD
}
}));
let html = '<h1>Previsioni:</h1>';
html += '<ul>';
arrayPrevisioni.forEach(v => {
//arrayPrevisioni.push({ azione: "COMPRA", simbolo: market.symbol, tp: AverageTrueRange[AverageTrueRange.length - 1] + 1.5, sl: AverageTrueRange[AverageTrueRange.length - 1] - 1.5 });
html += '<li>';
html += 'Azione:' + v.azione + '<br>';
html += 'Coppia:' + v.simbolo + '<br>';
html += 'Base Asset: ' + v.base_asset + '<br>'
html += 'Prezzo Attuale:' + v.price + '<br>';
html += 'Prezzo Take Profit:' + v.tp + '<br>';
html += 'Prezzo Stop Loss: ' + v.sl + ' <br> ';
//html += 'Variazione Oggi: ' + v.var_perc + '%<br>'
html += 'RSI: ' + v.RSI + '<br>';
html += '</li><br>';
});
html += '</ul><br>';
html += '<h3>Cosa guardare per Analisi fondamentale:</h3>'
html += '<ul>';
html += '<li>INDICATORI DI ANALISI FONDAMENTALE</li>'
html += '<li>Rapporto NVT (> 150 O TREND IN CRESCITA IPERCOMPRATO, < 45 O TREND DIMINUZIONE IPERVENDUTO</li>';
html += '<li>Rapporto MVRV (> 3.5 LONG,< 1.0 SHORT):</li>'
html += '<li>Modello Stock To Flow (VEDERE COLORI)</li>';
html += '<br>';
html += '<li>ALTRE COSE POSSIBILI DA GUARDARE</li>';
html += '<li>Indicatori on-chain: Coinmarketcap (https://coinmarketcap.com/currencies/bitcoin/onchain-analysis/)</li>';
html += '<li>Numero di trades da unico trader in un certo periodo</li>';
html += '<li>Valore totale dei trades in un certo periodo</li>'
html += '<li>Indirizzi attivi</li>';
html += '<li>Commissioni pagate (anche ai miners)</li>';
html += '<li>Hash rate che dev\'essere alto</li>';
html += '<li>Quatità di moneta in staking</li>';
html += '<li>Whitepaper e punti critici del progetto</li>';
html += '<li>Team, incluso il loro passato nel settore, esperienza, truffe, competenze</li>';
html += '<li>Capire se ci sono progetti concorrenti simili ma migliori</li>';
html += '<li>Distribuzione iniziale dei token, per capire se è troppo centralizzato il mercato</li>';
html += '<li>Vedere se vengono generati tokens inutilmente</li>';
html += '<li>Capitalizzazione di mercato stimata</li>';
html += '<li>Liquidità e relativo spread bid-ask</li>';
html += '<li>Offerta massima, offerta in circolazione e il tasso di inflazione</li>';
html += '</ul>';
html += '<br>';
html += '<h3>E\' sempre consigliato guardare le notizie, l\'order book, le resistenze/supporti, e fare le proprie valutazioni prima di investire.</h3>'
html += '<h2>Se questo servizio ti piace, consiglialo a un tuo amico, e comunicaci la sua email.<br>Il servizio è esclusivo ed è accessibile solo tramite invito personale.</h2>';
emails.forEach(email => {
let mailOptions = {
from: process.env.EMAIL_FROM,
to: email,
subject: 'Previsioni di Mercato da Davide Cavallini',
html: html
}
transporter.sendMail(mailOptions, function(error, info) {
if (error) {
console.log(error);
} else {
console.log('Email Inviata: ' + info.response);
}
});
});
}
}
}
function testEmail() {
//https://accounts.google.com/b/0/DisplayUnlockCaptcha
//https://myaccount.google.com/lesssecureapps?pli=1&rapt=AEjHL4NYr5y8RROZO7eLBzjF2f8PGfg126pf9yTndhB2KH-wTgTt78naKJmbWEKuwOr87fBT4CafM8fnOTL1OJYgv5MqVShOWQ
let emails = process.env.EMAIL_FROM.split(',');
var transporter = nodemailer.createTransport(smtpTransport({
service: 'gmail',
host: 'smtp.gmail.com',
auth: {
user: process.env.EMAIL_USERNAME,
pass: process.env.EMAIL_PASSWORD
}
}));
let html = '<h1>TEST</h1>';
emails.forEach(email => {
let mailOptions = {
from: process.env.EMAIL_FROM,
to: email,
subject: 'Test Email da Davide Cavallini',
html: html
}
transporter.sendMail(mailOptions, function(error, info) {
if (error) {
console.log(error);
} else {
console.log('Email Inviata: ' + info.response);
}
});
});
}
/*function calculateAbsPercVariationIntegers(value1, value2) {
return 100 * Math.abs((value1 - value2) / ((value1 + value2) / 2));
}*/
function getPercentageChange(newNumber, oldNumber) {
var 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);
let percentageArray = [];
for (let i = 1; i < values.length; i++) {
percentageArray.push(getPercentageChange(values[i], values[i - 1]));
}
return percentageArray;
}
function calculateMedian(values) {
if (values.length === 0) throw new Error("No inputs");
values.sort(function(a, b) {
return a - b;
});
var half = Math.floor(values.length / 2);
if (values.length % 2)
return values[half];
return (values[half - 1] + values[half]) / 2.0;
}
function isEmptyJson(obj) {
for (var prop in obj) {
if (Object.prototype.hasOwnProperty.call(obj, prop)) {
return false;
}
}
return JSON.stringify(obj) === JSON.stringify({});
}
async function calculateNVTRatio(symbol) {
//Dato fondamentale On Chain per criptovalute
//NVT SIGNAL (DA FARE)
//se sopra 150 ipercomprato
//se sotto 45 ipervenduto
//se intermedio bilanciato
//CALCOLO NVT DOC=https://blog.cryptocompare.com/how-to-calculate-nvt-ratios-with-the-cryptocompare-api-870d6d6b3c86
//https://steemit.com/ita/@grendelorr/nvt-ratio-e-nvt-signal-indicatori-per-la-blockchain-per-individuare-le-bolle-speculative-e-gli-alti-bassi
//https://min-api.cryptocompare.com/documentation?key=Blockchain&cat=blockchainDay
let url = "https://min-api.cryptocompare.com/data/blockchain/histo/day?api_key=" + process.env.CRYPTO_COMPARE_API + "&limit=200&fsym=" + symbol.replace('USDT', '');
//console.log(url);
return new Promise((resolve, reject) => {
let request = https.get(url, function(res) {
let data = '';
let json_data;
let NVT = null;
res.on('data', function(stream) {
data += stream;
});
res.on('end', function() {
json_data = JSON.parse(data);
//console.log(url);
if (isEmptyJson(json_data) === false && isEmptyJson(json_data.Data) === false && isEmptyJson(json_data.Data.Data) === false && json_data.Data.Data.length > 30) {
let NVTArray = json_data.Data.Data.map(v => Number(v.current_supply) / Number(v.transaction_count) / Number(v.average_transaction_value));
//console.log("NVTArray", NVTArray);
//NVT = NVTArray[NVTArray.length - 1];
//console.log("NVT", NVT);
//di solito si calcola in 14 giorni come RSI
let smaNVT = SMA.calculate({
period: 14,
values: NVTArray
});
if (!isNaN(smaNVT[smaNVT.length - 1]) && isFinite(smaNVT[smaNVT.length - 1])) {
//console.log("NVT", NVT, "SMA", smaNVT[smaNVT.length - 1], "SMA TREND", smaNVT[smaNVT.length - 1] - smaNVT[smaNVT.length - 2]);
/*if (NVT > 150) {
//vai short
NVT = false;
} else if (NVT < 45) {
//vai long
NVT = true;
} else {*/
//equilibrato cioè null (vale per entrambe)
//si può guardare il trend però del mese
if (smaNVT[smaNVT.length - 1] - smaNVT[smaNVT.length - 2] > 0) {
//se è uptrend è false
NVT = -1;
} else if (smaNVT[smaNVT.length - 1] - smaNVT[smaNVT.length - 2] < 0) {
//se è downtrend è true
NVT = 1;
} else {
//sennò è equilibrato (null)
NVT = 0;
}
/*}*/
}
}
resolve(NVT);
});
});
});
}
async function bootstrap_07062022() {
let arrayPrevisioni = [];
console.log("---------------------------------------------------------------------------");
console.log(new Date());
let info = await client.exchangeInfo();
let symbols = info.symbols;
console.log(symbols);
for (let market of symbols) {
if (market.symbol.slice(-4) === "USDT" && market.status === "TRADING" && market.isSpotTradingAllowed === true) {
let market_actual_stats;
//console.log("\n\n", market);
//per diversificare gli investimenti
console.log("\nSIMBOLO", market.symbol);
//let NVT_status = await calculateNVTRatio(market.symbol);
//console.log("NVT", await calculateNVTRatio(market.symbol));
console.log("ASSET SOTTOSTANTE", market.baseAsset);
//vedo se il sentiment degli ultimi 5 minuti è in long
//valutare se è meglio un trend in salita nei 15 minuti o il fatto che sia in long in sentiment, o entrambe
//che però diminuiscono le probabilità di condizione vera
//messa dopo l'if delle condizioni calcolate
let marketLongSentiment = false;
//let takerBuySentiment = await takerBuyInSalita(market.symbol, "30m");
//dev'essere almeno 200 altrimenti è impossibile calcolare la SMA200
//senza limite sono 500 dati
let rawPrices = await client.candles({ symbol: market.symbol, interval: '30m' /*, limit: 300 */ });
// console.log("TEST", rawPrices.slice(-1), rawPrices.slice(-1), new Date(rawPrices.slice(-1)[0].closeTime));
/* market_actual_stats = await client.dailyStats({ symbol: market.symbol });
console.log(market_actual_stats);*/
//è giusto. prende l'orario che ancora deve chiudere
//testato col sito https://24timezones.com/fuso-orario/gmt
//console.log("TEST", new Date(rawPrices.slice(-1)[0].openTime), new Date(rawPrices.slice(-1)[0].closeTime));
let askClosePrices = rawPrices.map((v) => { return Number(v.close) });
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) {
let medianPercDifference = calculateMedian(calculateAbsPercVariationArray(askClosePrices, 14));
//console.log("MEDIAN", medianPercDifference);
/*let askHighPrices = rawPrices.map((v) => { return Number(v.high) });
let askLowPrices = rawPrices.map((v) => { return Number(v.low) });*/
//console.log(askClosePrices);
/*var period = 14
var input = {
high: askHighPrices,
low: askLowPrices,
close: askClosePrices,
period: period
}*/
//average true range per mettere stop loss e take profit
//let AverageTrueRange = ATR.calculate(input);
//console.log("ATR", AverageTrueRange[AverageTrueRange.length - 1], askClosePrices[askClosePrices.length - 1], ATR.reverseInputs());
//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
let smaMinore = SMA.calculate({
period: 50,
values: askClosePrices
});
let trendMinoreRibassista = smaMinore[smaMinore.length - 1] < smaMinore[smaMinore.length - 2];
let trendMinoreRialzista = smaMinore[smaMinore.length - 1] > smaMinore[smaMinore.length - 2];
console.log("TREND MINORE RIBASSISTA", trendMinoreRibassista);
console.log("TREND MINORE RIALZISTA", trendMinoreRialzista);
//TREND MAGGIORE RIALZISTA
let smaMaggiore = SMA.calculate({
period: 200,
values: askClosePrices
});
let trendMaggioreRialzista = smaMaggiore[smaMaggiore.length - 1] > smaMaggiore[smaMaggiore.length - 2];
let trendMaggioreRibassista = smaMaggiore[smaMaggiore.length - 1] < smaMaggiore[smaMaggiore.length - 2];
console.log("TREND MAGGIORE RIALZISTA", trendMaggioreRialzista);
console.log("TREND MAGGIORE RIBASSISTA", trendMaggioreRibassista);
//CALCOLO RSI RIALZISTA (<30)
let rsi = RSI.calculate({
period: 14,
values: askClosePrices
});
let rsiRialzista = rsi[rsi.length - 1] < 30;
let rsiRibassista = rsi[rsi.length - 1] > 70;
console.log("RSI", rsi[rsi.length - 1]);
console.log("RSI RIALZISTA", rsiRialzista);
console.log("RSI RIBASSISTA", rsiRibassista);
var macdInput = {
values: askClosePrices,
fastPeriod: 8,
slowPeriod: 21,
signalPeriod: 5,
//è giusto così
SimpleMAOscillator: false,
SimpleMASignal: false
}
let macd = MACD.calculate(macdInput);
//SUPERAMENTO MACD
let segnaleSuperaMACD = macd[macd.length - 1].signal > macd[macd.length - 1].MACD;
let segnaleSuperaMACDBasso = macd[macd.length - 1].signal < macd[macd.length - 1].MACD;
console.log("SEGNALE SUPERA MACD", segnaleSuperaMACD);
console.log("SEGNALE SUPERA MACD BASSO", segnaleSuperaMACDBasso);
//INCROCIO MACD
//let segnaleSuperaIncrociaMACD = macd[macd.length - 2].signal < macd[macd.length - 2].MACD && macd[macd.length - 1].signal > macd[macd.length - 1].MACD;
//console.log("SEGNALE INCROCIA MACD", segnaleSuperaIncrociaMACD);
//è giusto trend minore ribassista e maggiore rialzista secondo Alyssa
let marketSentimentPeriod = '30m';
if (trendMinoreRibassista === true && trendMaggioreRialzista === true && rsiRialzista === true && segnaleSuperaMACD === true) {
//solo se si verificano le altre condizioni, altrimenti è troppo dispendioso di tempo
//fare una richiesta https
marketLongSentiment = await accountLongInSalita(market.symbol, marketSentimentPeriod);
console.log("MARKET SENTIMENT LONG", marketLongSentiment);
if (marketLongSentiment === true) {
let NVT_status = await calculateNVTRatio(market.baseAsset);
console.log("NVT_status", NVT_status);
if (NVT_status === -1 || NVT_status === 0) {
market_actual_stats = await client.dailyStats({ symbol: market.symbol });
console.log("ULTIMO PREZZO", market_actual_stats.lastPrice, "VARIAZIONE PERCENTUALE OGGI", market_actual_stats.priceChangePercent);
console.log("TYPEOF", typeof(market_actual_stats.priceChangePercent));
//if (market_actual_stats.priceChangePercent > 0) {
//console.log(market.symbol);
let closeTime = new Date(rawPrices[rawPrices.length - 1].closeTime);
console.log(closeTime, rawPrices[rawPrices.length - 1].closeTime);
console.log("AZIONE LONG", market.symbol, "PREZZO", rawPrices[rawPrices.length - 1].close);
arrayPrevisioni.push({ azione: "LONG", simbolo: market.symbol, price: rawPrices[rawPrices.length - 1].close, tp: rawPrices[rawPrices.length - 1].close / 100 * (100 + medianPercDifference), sl: rawPrices[rawPrices.length - 1].close / 100 * (100 - medianPercDifference), base_asset: market.baseAsset, var_perc: market_actual_stats.priceChangePercent, RSI: rsi[rsi.length - 1] });
//}
}
}
}
//POSSIAMO ESCLUDERE GLI SHORT DI CUI CI INTERESSA POCO SE NON LAVORIAMO IN LEVA
else if (trendMinoreRialzista === true && trendMaggioreRibassista === true && rsiRibassista === true && segnaleSuperaMACDBasso === true) {
marketLongSentiment = await accountLongInSalita(market.symbol, marketSentimentPeriod);
console.log("MARKET SENTIMENT SHORT", marketLongSentiment);
if (marketLongSentiment === false) {
let NVT_status = await calculateNVTRatio(market.baseAsset);
console.log("NVT_status", NVT_status);
if (NVT_status === 1 || NVT_status === 0) {
market_actual_stats = await client.dailyStats({ symbol: market.symbol });
console.log("ULTIMO PREZZO", market_actual_stats.lastPrice, "VARIAZIONE PERCENTUALE OGGI", market_actual_stats.priceChangePercent);
console.log("TYPEOF", typeof(market_actual_stats.priceChangePercent));
let closeTime = new Date(rawPrices[rawPrices.length - 1].closeTime);
console.log(closeTime, rawPrices[rawPrices.length - 1].closeTime);
console.log("AZIONE SHORT", market.symbol, "PREZZO", rawPrices[rawPrices.length - 1].close);
arrayPrevisioni.push({ azione: "SHORT", simbolo: market.symbol, price: rawPrices[rawPrices.length - 1].close, tp: rawPrices[rawPrices.length - 1].close / 100 * (100 - medianPercDifference), sl: rawPrices[rawPrices.length - 1].close / 100 * (100 + medianPercDifference), base_asset: market.baseAsset, var_perc: market_actual_stats.priceChangePercent, RSI: rsi[rsi.length - 1] });
}
}
} else {
//console.log(market.symbol);
}
}
}
}
sendEmails(arrayPrevisioni);
console.log("Fine del Giro");
//process.exit();
}
async function backtesting() {
let previsioni_giuste = 0;
let previsioni_sbagliate = 0;
let saldo = 1000;
console.log("---------------------------------------------------------------------------");
console.log(new Date());
let info = await client.exchangeInfo();
let symbols = info.symbols;
for (let market of symbols) {
if (market.symbol.slice(-4) === "USDT" && market.status === "TRADING" && market.isSpotTradingAllowed === true) {
let ultima_previsione = 0;
//dev'essere almeno 200 altrimenti è impossibile calcolare la SMA200
//senza limite sono 500 dati
let rawPricesFull = await client.candles({ symbol: market.symbol, interval: '30m', limit: 1000 });
// console.log("TEST", rawPrices.slice(-1), rawPrices.slice(-1), new Date(rawPrices.slice(-1)[0].closeTime));
let askClosePricesFull = rawPricesFull.map((v) => { return Number(v.close) });
for (let i = 202; i < askClosePricesFull.length; i++) {
let rawPrices = rawPricesFull.slice(0, i);
let askClosePrices = askClosePricesFull.slice(0, i);
//console.log("\nSIMBOLO", market.symbol);
//console.log("ASSET SOTTOSTANTE", market.baseAsset);
//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) {
//let 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
let smaMinore = SMA.calculate({
period: 50,
values: askClosePrices
});
let trendMinoreRibassista = smaMinore[smaMinore.length - 1] < smaMinore[smaMinore.length - 2];
let trendMinoreRialzista = smaMinore[smaMinore.length - 1] > smaMinore[smaMinore.length - 2];
//console.log("TREND MINORE RIBASSISTA", trendMinoreRibassista);
//console.log("TREND MINORE RIALZISTA", trendMinoreRialzista);
//TREND MAGGIORE RIALZISTA
let smaMaggiore = SMA.calculate({
period: 200,
values: askClosePrices
});
let trendMaggioreRialzista = smaMaggiore[smaMaggiore.length - 1] > smaMaggiore[smaMaggiore.length - 2];
let trendMaggioreRibassista = smaMaggiore[smaMaggiore.length - 1] < smaMaggiore[smaMaggiore.length - 2];
//console.log("TREND MAGGIORE RIALZISTA", trendMaggioreRialzista);
//console.log("TREND MAGGIORE RIBASSISTA", trendMaggioreRibassista);
//CALCOLO RSI RIALZISTA (<30)
let rsi = RSI.calculate({
period: 14,
values: askClosePrices
});
let rsiRialzista = rsi[rsi.length - 1] < 30;
let rsiRibassista = rsi[rsi.length - 1] > 70;
//console.log("RSI", rsi[rsi.length - 1]);