-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmonitor-error.log
More file actions
1902 lines (1902 loc) · 205 KB
/
monitor-error.log
File metadata and controls
1902 lines (1902 loc) · 205 KB
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
2024-12-11T21:03:38.577Z error: Error reading TP DB: C:\Users\huber\Desktop\tbot\tp.json: Unexpected token u in JSON at position 1
2024-12-11T21:03:38.580Z error: Error updating UI: Cannot read properties of undefined (reading 'toUpperCase')
pptr:evaluate;injectBotUI%20(file%3A%2F%2F%2FC%3A%2FUsers%2Fhuber%2FDesktop%2Ftbot%2Findex.js%3A471%3A14):193:53
2024-12-11T21:11:15.149Z error: Error reading TP DB: C:\Users\huber\Desktop\tbot\tp.json: Unexpected token u in JSON at position 1
2024-12-11T21:11:15.154Z error: Error updating UI: Cannot read properties of undefined (reading 'toUpperCase')
pptr:evaluate;injectBotUI%20(file%3A%2F%2F%2FC%3A%2FUsers%2Fhuber%2FDesktop%2Ftbot%2Findex.js%3A471%3A14):193:53
2024-12-11T21:11:54.001Z error: Error reading TP DB: C:\Users\huber\Desktop\tbot\tp.json: Unexpected token u in JSON at position 1
2024-12-11T21:11:54.007Z error: Error updating UI: Cannot read properties of undefined (reading 'toUpperCase')
pptr:evaluate;injectBotUI%20(file%3A%2F%2F%2FC%3A%2FUsers%2Fhuber%2FDesktop%2Ftbot%2Findex.js%3A471%3A14):193:53
2024-12-11T21:25:21.110Z error: Error reading TP DB: C:\Users\huber\Desktop\tbot\tp.json: Unexpected token u in JSON at position 1
2024-12-11T21:26:05.952Z error: PAGE ERROR: TypeError: Cannot set properties of null (setting 'innerText')
2024-12-11T21:35:21.163Z error: Error reading TP DB: C:\Users\huber\Desktop\tbot\tp.json: Unexpected token u in JSON at position 1
2024-12-11T21:35:21.168Z error: Error updating UI: Cannot read properties of undefined (reading 'toUpperCase')
pptr:evaluate;injectBotUI%20(file%3A%2F%2F%2FC%3A%2FUsers%2Fhuber%2FDesktop%2Ftbot%2Findex.js%3A471%3A14):193:53
2024-12-11T21:35:21.182Z error: Error reading TP DB: C:\Users\huber\Desktop\tbot\tp.json: Unexpected token u in JSON at position 1
2024-12-11T21:35:21.188Z error: Error updating UI: Cannot read properties of undefined (reading 'toUpperCase')
pptr:evaluate;injectBotUI%20(file%3A%2F%2F%2FC%3A%2FUsers%2Fhuber%2FDesktop%2Ftbot%2Findex.js%3A471%3A14):193:53
2024-12-11T21:49:21.180Z error: Error reading TP DB: C:\Users\huber\Desktop\tbot\tp.json: Unexpected token u in JSON at position 1
2024-12-11T22:15:21.253Z error: Error reading TP DB: C:\Users\huber\Desktop\tbot\tp.json: Unexpected token u in JSON at position 1
2024-12-11T22:15:21.259Z error: Error updating UI: Cannot read properties of undefined (reading 'toUpperCase')
pptr:evaluate;injectBotUI%20(file%3A%2F%2F%2FC%3A%2FUsers%2Fhuber%2FDesktop%2Ftbot%2Findex.js%3A471%3A14):193:53
2024-12-11T22:15:21.267Z error: Error reading TP DB: C:\Users\huber\Desktop\tbot\tp.json: Unexpected token u in JSON at position 1
2024-12-11T22:15:21.270Z error: Error updating UI: Cannot read properties of undefined (reading 'toUpperCase')
pptr:evaluate;injectBotUI%20(file%3A%2F%2F%2FC%3A%2FUsers%2Fhuber%2FDesktop%2Ftbot%2Findex.js%3A471%3A14):193:53
2024-12-11T22:16:21.586Z error: Error reading TP DB: C:\Users\huber\Desktop\tbot\tp.json: Unexpected token u in JSON at position 1
2024-12-11T22:16:21.589Z error: Error updating UI: Cannot read properties of undefined (reading 'toUpperCase')
pptr:evaluate;injectBotUI%20(file%3A%2F%2F%2FC%3A%2FUsers%2Fhuber%2FDesktop%2Ftbot%2Findex.js%3A471%3A14):193:53
2024-12-11T22:16:21.601Z error: Error reading TP DB: C:\Users\huber\Desktop\tbot\tp.json: Unexpected token u in JSON at position 1
2024-12-11T22:16:21.603Z error: Error updating UI: Cannot read properties of undefined (reading 'toUpperCase')
pptr:evaluate;injectBotUI%20(file%3A%2F%2F%2FC%3A%2FUsers%2Fhuber%2FDesktop%2Ftbot%2Findex.js%3A471%3A14):193:53
2024-12-11T22:39:37.847Z error: Error reading TP DB: C:\Users\huber\Desktop\tbot\tp.json: Unexpected token u in JSON at position 1
2024-12-11T22:39:37.850Z error: Error updating UI: Cannot read properties of undefined (reading 'toUpperCase')
pptr:evaluate;injectBotUI%20(file%3A%2F%2F%2FC%3A%2FUsers%2Fhuber%2FDesktop%2Ftbot%2Findex.js%3A471%3A14):193:53
2024-12-11T22:39:41.163Z error: PAGE ERROR: TypeError: Cannot set properties of null (setting 'innerText')
2024-12-11T22:41:05.316Z error: Error reading TP DB: C:\Users\huber\Desktop\tbot\tp.json: Unexpected token u in JSON at position 1
2024-12-11T22:41:05.319Z error: Error updating UI: Cannot read properties of undefined (reading 'toUpperCase')
pptr:evaluate;injectBotUI%20(file%3A%2F%2F%2FC%3A%2FUsers%2Fhuber%2FDesktop%2Ftbot%2Findex.js%3A469%3A14):193:53
2024-12-11T22:57:21.387Z error: Error reading TP DB: C:\Users\huber\Desktop\tbot\tp.json: Unexpected token u in JSON at position 1
2024-12-11T22:57:21.391Z error: Error updating UI: Cannot read properties of undefined (reading 'toUpperCase')
pptr:evaluate;injectBotUI%20(file%3A%2F%2F%2FC%3A%2FUsers%2Fhuber%2FDesktop%2Ftbot%2Findex.js%3A469%3A14):193:53
2024-12-11T23:00:20.495Z error: Error reading TP DB: C:\Users\huber\Desktop\tbot\tp.json: Unexpected token u in JSON at position 1
2024-12-11T23:00:20.500Z error: Error updating UI: Cannot read properties of undefined (reading 'toUpperCase')
pptr:evaluate;injectBotUI%20(file%3A%2F%2F%2FC%3A%2FUsers%2Fhuber%2FDesktop%2Ftbot%2Findex.js%3A467%3A14):193:53
2024-12-11T23:01:04.207Z error: Error reading TP DB: C:\Users\huber\Desktop\tbot\tp.json: Unexpected token u in JSON at position 1
2024-12-11T23:01:04.215Z error: Error updating UI: Cannot read properties of undefined (reading 'toUpperCase')
pptr:evaluate;injectBotUI%20(file%3A%2F%2F%2FC%3A%2FUsers%2Fhuber%2FDesktop%2Ftbot%2Findex.js%3A467%3A14):193:53
2024-12-11T23:08:06.037Z error: Error reading TP DB: C:\Users\huber\Desktop\tbot\tp.json: Unexpected token u in JSON at position 1
2024-12-11T23:08:06.042Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-11T23:18:02.852Z error: Error reading TP DB: C:\Users\huber\Desktop\tbot\tp.json: Unexpected token u in JSON at position 1
2024-12-11T23:18:02.863Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-11T23:23:21.433Z error: Błąd podczas obsługi alertu: Cannot access 'symbol' before initialization
2024-12-11T23:24:21.535Z error: Error reading TP DB: C:\Users\huber\Desktop\tbot\tp.json: Unexpected token u in JSON at position 1
2024-12-11T23:24:21.543Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-11T23:48:18.924Z error: Error reading TP DB: C:\Users\huber\Desktop\tbot\tp.json: Unexpected token u in JSON at position 1
2024-12-11T23:48:19.008Z error: PAGE ERROR: TypeError: Cannot set properties of null (setting 'innerText')
2024-12-11T23:48:19.014Z error: Błąd podczas obsługi alertu: Cannot access 'symbol' before initialization
2024-12-11T23:48:19.075Z error: Error reading TP DB: C:\Users\huber\Desktop\tbot\tp.json: Unexpected token u in JSON at position 1
2024-12-11T23:48:19.110Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-11T23:48:19.114Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-11T23:48:19.124Z error: Error reading TP DB: C:\Users\huber\Desktop\tbot\tp.json: Unexpected token u in JSON at position 1
2024-12-11T23:48:19.129Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-11T23:48:21.570Z error: Błąd podczas obsługi alertu: Cannot access 'symbol' before initialization
2024-12-13T17:35:52.558Z error: Error reading TP DB: C:\Users\huber\Desktop\tbot\tp.json: Unexpected token u in JSON at position 1
2024-12-13T17:35:52.566Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-13T17:40:22.898Z error: Error reading TP DB: C:\Users\huber\Desktop\tbot\tp.json: Unexpected token u in JSON at position 1
2024-12-13T17:40:22.908Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-13T17:40:22.931Z error: Error reading TP DB: C:\Users\huber\Desktop\tbot\tp.json: Unexpected token u in JSON at position 1
2024-12-13T17:40:22.948Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-13T17:43:22.857Z error: Error reading TP DB: C:\Users\huber\Desktop\tbot\tp.json: Unexpected token u in JSON at position 1
2024-12-13T17:43:22.930Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-13T17:50:22.850Z error: Error reading TP DB: C:\Users\huber\Desktop\tbot\tp.json: Unexpected token u in JSON at position 1
2024-12-13T17:50:22.859Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-13T17:50:22.867Z error: Error reading TP DB: C:\Users\huber\Desktop\tbot\tp.json: Unexpected token u in JSON at position 1
2024-12-13T17:50:22.888Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-13T17:54:22.882Z error: Error reading TP DB: C:\Users\huber\Desktop\tbot\tp.json: Unexpected token u in JSON at position 1
2024-12-13T17:54:22.891Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-13T17:54:22.916Z error: Error reading TP DB: C:\Users\huber\Desktop\tbot\tp.json: Unexpected token u in JSON at position 1
2024-12-13T17:54:22.949Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-13T17:59:30.859Z error: Error reading global DB: C:\Users\huber\Desktop\tbot\db.json: Unexpected token ] in JSON at position 30
2024-12-13T17:59:30.861Z error: Error reading TP DB: C:\Users\huber\Desktop\tbot\tp.json: Unexpected token u in JSON at position 1
2024-12-13T17:59:30.864Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-13T18:05:22.858Z error: Error reading global DB: C:\Users\huber\Desktop\tbot\db.json: Unexpected token ] in JSON at position 30
2024-12-13T18:05:22.861Z error: Error reading global DB: C:\Users\huber\Desktop\tbot\db.json: Unexpected token ] in JSON at position 30
2024-12-13T18:05:22.873Z error: Error reading TP DB: C:\Users\huber\Desktop\tbot\tp.json: Unexpected token u in JSON at position 1
2024-12-13T18:05:22.883Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-13T18:06:22.979Z error: Error reading TP DB: C:\Users\huber\Desktop\tbot\tp.json: Unexpected token u in JSON at position 1
2024-12-13T18:06:22.982Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-13T18:06:22.992Z error: Error reading TP DB: C:\Users\huber\Desktop\tbot\tp.json: Unexpected token u in JSON at position 1
2024-12-13T18:06:22.998Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-13T18:08:23.092Z error: Error reading TP DB: C:\Users\huber\Desktop\tbot\tp.json: Unexpected token u in JSON at position 1
2024-12-13T18:08:23.101Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-13T18:08:23.110Z error: Error reading TP DB: C:\Users\huber\Desktop\tbot\tp.json: Unexpected token u in JSON at position 1
2024-12-13T18:08:23.112Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-13T18:15:49.078Z error: Error reading TP DB: C:\Users\huber\Desktop\tbot\tp.json: Unexpected token u in JSON at position 1
2024-12-13T18:15:49.081Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-13T18:16:02.636Z error: PAGE ERROR: TypeError: Cannot set properties of null (setting 'innerText')
2024-12-13T18:19:23.154Z error: Error reading TP DB: C:\Users\huber\Desktop\tbot\tp.json: Unexpected token u in JSON at position 1
2024-12-13T18:19:23.160Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-13T18:29:22.983Z error: Error reading TP DB: C:\Users\huber\Desktop\tbot\tp.json: Unexpected token u in JSON at position 1
2024-12-13T18:29:22.986Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-13T18:29:22.995Z error: Error reading TP DB: C:\Users\huber\Desktop\tbot\tp.json: Unexpected token u in JSON at position 1
2024-12-13T18:29:22.998Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-13T18:36:23.300Z error: Error reading TP DB: C:\Users\huber\Desktop\tbot\tp.json: Unexpected token u in JSON at position 1
2024-12-13T18:36:23.312Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-13T18:36:23.363Z error: Error reading TP DB: C:\Users\huber\Desktop\tbot\tp.json: Unexpected token u in JSON at position 1
2024-12-13T18:36:23.390Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-13T18:45:40.489Z error: Error reading TP DB: C:\Users\huber\Desktop\tbot\tp.json: Unexpected token u in JSON at position 1
2024-12-13T18:45:40.492Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-13T18:47:23.018Z error: Error logging trade: updateIndicatorStats is not defined
2024-12-13T18:47:23.021Z error: Error reading TP DB: C:\Users\huber\Desktop\tbot\tp.json: Unexpected token u in JSON at position 1
2024-12-13T18:47:23.029Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-13T18:47:23.035Z error: Error logging trade: updateIndicatorStats is not defined
2024-12-13T18:47:23.037Z error: Error reading TP DB: C:\Users\huber\Desktop\tbot\tp.json: Unexpected token u in JSON at position 1
2024-12-13T18:47:23.042Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-13T18:49:23.133Z error: Error logging trade: updateIndicatorStats is not defined
2024-12-13T18:49:23.135Z error: Error reading TP DB: C:\Users\huber\Desktop\tbot\tp.json: Unexpected token u in JSON at position 1
2024-12-13T18:49:23.141Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-13T18:49:23.145Z error: Error logging trade: updateIndicatorStats is not defined
2024-12-13T18:49:23.148Z error: Error reading TP DB: C:\Users\huber\Desktop\tbot\tp.json: Unexpected token u in JSON at position 1
2024-12-13T18:49:23.171Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-13T18:59:14.852Z error: PAGE ERROR: TypeError: Cannot set properties of null (setting 'innerText')
2024-12-13T19:07:16.072Z error: PAGE ERROR: TypeError: Cannot set properties of null (setting 'innerText')
2024-12-13T19:07:23.073Z error: Błąd podczas obsługi alertu: Cannot access 'symbol' before initialization
2024-12-13T19:24:23.118Z error: Error logging trade: updateIndicatorStats is not defined
2024-12-13T19:24:23.123Z error: Error reading TP DB: C:\Users\huber\Desktop\tbot\tp.json: Unexpected token u in JSON at position 1
2024-12-13T19:24:23.126Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-13T19:27:08.879Z error: Error reading global DB: C:\Users\huber\Desktop\tbot\db.json: Unexpected token ] in JSON at position 30
2024-12-13T19:27:08.882Z error: Error reading TP DB: C:\Users\huber\Desktop\tbot\tp.json: Unexpected token u in JSON at position 1
2024-12-13T19:27:08.885Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-13T19:28:23.149Z error: Error reading global DB: C:\Users\huber\Desktop\tbot\db.json: Unexpected token ] in JSON at position 30
2024-12-13T19:28:23.185Z error: Error reading global DB: C:\Users\huber\Desktop\tbot\db.json: Unexpected token ] in JSON at position 30
2024-12-13T19:28:23.187Z error: Error logging trade: updateIndicatorStats is not defined
2024-12-13T19:28:23.197Z error: Error reading global DB: C:\Users\huber\Desktop\tbot\db.json: Unexpected token ] in JSON at position 30
2024-12-13T19:28:23.201Z error: Error reading TP DB: C:\Users\huber\Desktop\tbot\tp.json: Unexpected token u in JSON at position 1
2024-12-13T19:28:23.204Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-13T19:30:23.318Z error: Error reading global DB: C:\Users\huber\Desktop\tbot\db.json: Unexpected token ] in JSON at position 30
2024-12-13T19:30:23.321Z error: Error reading global DB: C:\Users\huber\Desktop\tbot\db.json: Unexpected token ] in JSON at position 30
2024-12-13T19:30:23.324Z error: Error reading global DB: C:\Users\huber\Desktop\tbot\db.json: Unexpected token ] in JSON at position 30
2024-12-13T19:30:23.328Z error: Error reading global DB: C:\Users\huber\Desktop\tbot\db.json: Unexpected token ] in JSON at position 30
2024-12-13T19:30:23.329Z error: Error logging trade: updateIndicatorStats is not defined
2024-12-13T19:30:23.331Z error: Error logging trade: updateIndicatorStats is not defined
2024-12-13T19:30:23.331Z error: Error reading global DB: C:\Users\huber\Desktop\tbot\db.json: Unexpected token ] in JSON at position 30
2024-12-13T19:30:23.332Z error: Error reading global DB: C:\Users\huber\Desktop\tbot\db.json: Unexpected token ] in JSON at position 30
2024-12-13T19:30:23.334Z error: Error reading TP DB: C:\Users\huber\Desktop\tbot\tp.json: Unexpected token u in JSON at position 1
2024-12-13T19:30:23.337Z error: Error reading TP DB: C:\Users\huber\Desktop\tbot\tp.json: Unexpected token u in JSON at position 1
2024-12-13T19:30:23.340Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-13T19:30:23.346Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-13T19:38:23.185Z error: Błąd podczas obsługi alertu: Cannot access 'symbol' before initialization
2024-12-13T19:50:23.146Z error: Error reading global DB: C:\Users\huber\Desktop\tbot\db.json: Unexpected token ] in JSON at position 30
2024-12-13T19:50:23.148Z error: Error reading global DB: C:\Users\huber\Desktop\tbot\db.json: Unexpected token ] in JSON at position 30
2024-12-13T19:50:23.151Z error: Error logging trade: updateIndicatorStats is not defined
2024-12-13T19:50:23.152Z error: Error reading global DB: C:\Users\huber\Desktop\tbot\db.json: Unexpected token ] in JSON at position 30
2024-12-13T19:50:23.154Z error: Error reading TP DB: C:\Users\huber\Desktop\tbot\tp.json: Unexpected token u in JSON at position 1
2024-12-13T19:50:23.158Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-13T19:51:23.878Z error: Error reading global DB: C:\Users\huber\Desktop\tbot\db.json: Unexpected token ] in JSON at position 30
2024-12-13T19:51:23.880Z error: Error reading global DB: C:\Users\huber\Desktop\tbot\db.json: Unexpected token ] in JSON at position 30
2024-12-13T19:51:23.882Z error: Error logging trade: updateIndicatorStats is not defined
2024-12-13T19:51:23.884Z error: Error reading global DB: C:\Users\huber\Desktop\tbot\db.json: Unexpected token ] in JSON at position 30
2024-12-13T19:51:23.887Z error: Error reading TP DB: C:\Users\huber\Desktop\tbot\tp.json: Unexpected token u in JSON at position 1
2024-12-13T19:51:23.889Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-13T20:03:23.258Z error: Błąd podczas obsługi alertu: Cannot access 'symbol' before initialization
2024-12-13T20:04:23.248Z error: Error reading global DB: C:\Users\huber\Desktop\tbot\db.json: Unexpected token ] in JSON at position 30
2024-12-13T20:04:23.251Z error: Error reading global DB: C:\Users\huber\Desktop\tbot\db.json: Unexpected token ] in JSON at position 30
2024-12-13T20:04:23.253Z error: Error logging trade: updateIndicatorStats is not defined
2024-12-13T20:04:23.254Z error: Error reading global DB: C:\Users\huber\Desktop\tbot\db.json: Unexpected token ] in JSON at position 30
2024-12-13T20:04:23.258Z error: Error reading global DB: C:\Users\huber\Desktop\tbot\db.json: Unexpected token ] in JSON at position 30
2024-12-13T20:04:23.262Z error: Error reading global DB: C:\Users\huber\Desktop\tbot\db.json: Unexpected token ] in JSON at position 30
2024-12-13T20:04:23.263Z error: Error logging trade: updateIndicatorStats is not defined
2024-12-13T20:04:23.264Z error: Error reading global DB: C:\Users\huber\Desktop\tbot\db.json: Unexpected token ] in JSON at position 30
2024-12-13T20:04:23.264Z error: Error reading TP DB: C:\Users\huber\Desktop\tbot\tp.json: Unexpected token u in JSON at position 1
2024-12-13T20:04:23.266Z error: Error reading TP DB: C:\Users\huber\Desktop\tbot\tp.json: Unexpected token u in JSON at position 1
2024-12-13T20:04:23.269Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-13T20:04:23.271Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-13T20:12:23.294Z error: Error reading global DB: C:\Users\huber\Desktop\tbot\db.json: Unexpected token ] in JSON at position 30
2024-12-13T20:12:23.297Z error: Error reading global DB: C:\Users\huber\Desktop\tbot\db.json: Unexpected token ] in JSON at position 30
2024-12-13T20:12:23.300Z error: Error logging trade: updateIndicatorStats is not defined
2024-12-13T20:12:23.301Z error: Error reading global DB: C:\Users\huber\Desktop\tbot\db.json: Unexpected token ] in JSON at position 30
2024-12-13T20:12:23.304Z error: Error reading TP DB: C:\Users\huber\Desktop\tbot\tp.json: Unexpected token u in JSON at position 1
2024-12-13T20:12:23.306Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-13T20:15:24.771Z error: Error reading global DB: C:\Users\huber\Desktop\tbot\db.json: Unexpected token ] in JSON at position 30
2024-12-13T20:15:24.775Z error: Error reading TP DB: C:\Users\huber\Desktop\tbot\tp.json: Unexpected token u in JSON at position 1
2024-12-13T20:15:24.780Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-13T20:15:36.769Z error: PAGE ERROR: TypeError: Cannot set properties of null (setting 'innerText')
2024-12-13T20:17:23.446Z error: Error reading TP DB: C:\Users\huber\Desktop\tbot\tp.json: Unexpected token u in JSON at position 1
2024-12-13T20:17:37.673Z error: PAGE ERROR: TypeError: Cannot set properties of null (setting 'innerText')
2024-12-13T20:19:23.295Z error: Error reading global DB: C:\Users\huber\Desktop\tbot\db.json: Unexpected token ] in JSON at position 30
2024-12-13T20:19:23.298Z error: Error reading global DB: C:\Users\huber\Desktop\tbot\db.json: Unexpected token ] in JSON at position 30
2024-12-13T20:19:23.300Z error: Error logging trade: updateIndicatorStats is not defined
2024-12-13T20:19:23.302Z error: Error reading TP DB: C:\Users\huber\Desktop\tbot\tp.json: Unexpected token u in JSON at position 1
2024-12-13T20:19:23.311Z error: Error reading global DB: C:\Users\huber\Desktop\tbot\db.json: Unexpected token ] in JSON at position 30
2024-12-13T20:19:23.315Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-13T20:50:23.347Z error: Error reading global DB: C:\Users\huber\Desktop\tbot\db.json: Unexpected token ] in JSON at position 30
2024-12-13T20:50:23.350Z error: Error reading global DB: C:\Users\huber\Desktop\tbot\db.json: Unexpected token ] in JSON at position 30
2024-12-13T20:50:23.358Z error: Error logging trade: updateIndicatorStats is not defined
2024-12-13T20:50:23.364Z error: Error reading global DB: C:\Users\huber\Desktop\tbot\db.json: Unexpected token ] in JSON at position 30
2024-12-13T20:50:23.365Z error: Error reading global DB: C:\Users\huber\Desktop\tbot\db.json: Unexpected token ] in JSON at position 30
2024-12-13T20:50:23.366Z error: Error reading global DB: C:\Users\huber\Desktop\tbot\db.json: Unexpected token ] in JSON at position 30
2024-12-13T20:50:23.368Z error: Error logging trade: updateIndicatorStats is not defined
2024-12-13T20:50:23.371Z error: Error reading global DB: C:\Users\huber\Desktop\tbot\db.json: Unexpected token ] in JSON at position 30
2024-12-13T20:50:23.388Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-13T20:50:23.389Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-13T21:07:48.081Z error: Error reading global DB: C:\Users\huber\Desktop\tbot\db.json: Unexpected token ] in JSON at position 30
2024-12-13T21:07:48.083Z error: Error reading easy_entry DB: parseIndicatorStats is not defined
2024-12-13T21:07:48.085Z error: Error reading ut_bot DB: parseIndicatorStats is not defined
2024-12-13T21:07:48.088Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-13T21:34:24.465Z error: Error reading global DB: C:\Users\huber\Desktop\tbot\db.json: Unexpected token ] in JSON at position 30
2024-12-13T21:34:24.494Z error: Error reading global DB: C:\Users\huber\Desktop\tbot\db.json: Unexpected token ] in JSON at position 30
2024-12-13T21:34:24.500Z error: Error reading ut_bot DB: parseIndicatorStats is not defined
2024-12-13T21:34:24.524Z error: Error reading easy_entry DB: parseIndicatorStats is not defined
2024-12-13T21:34:24.526Z error: Error reading ut_bot DB: parseIndicatorStats is not defined
2024-12-13T21:34:25.052Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-13T21:41:24.284Z error: Error reading easy_entry DB: parseIndicatorStats is not defined
2024-12-13T21:41:24.313Z error: Error reading easy_entry DB: parseIndicatorStats is not defined
2024-12-13T21:41:24.317Z error: Error reading ut_bot DB: parseIndicatorStats is not defined
2024-12-13T21:41:24.369Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-13T21:54:23.773Z error: Error reading easy_entry DB: parseIndicatorStats is not defined
2024-12-13T21:54:23.776Z error: Error reading ut_bot DB: parseIndicatorStats is not defined
2024-12-13T21:54:23.784Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-13T22:00:23.627Z error: Error reading easy_entry DB: parseIndicatorStats is not defined
2024-12-13T22:00:23.638Z error: Error reading easy_entry DB: parseIndicatorStats is not defined
2024-12-13T22:00:23.667Z error: Error reading easy_entry DB: parseIndicatorStats is not defined
2024-12-13T22:00:23.670Z error: Error reading ut_bot DB: parseIndicatorStats is not defined
2024-12-13T22:00:23.676Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-13T22:01:23.723Z error: Error reading ut_bot DB: parseIndicatorStats is not defined
2024-12-13T22:01:23.726Z error: Error reading ut_bot DB: parseIndicatorStats is not defined
2024-12-13T22:01:23.740Z error: Error reading easy_entry DB: parseIndicatorStats is not defined
2024-12-13T22:01:23.741Z error: Error reading ut_bot DB: parseIndicatorStats is not defined
2024-12-13T22:01:23.745Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-13T22:07:23.596Z error: Error reading easy_entry DB: parseIndicatorStats is not defined
2024-12-13T22:07:23.603Z error: Error reading ut_bot DB: parseIndicatorStats is not defined
2024-12-13T22:07:23.608Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-13T22:37:23.792Z error: Error reading ut_bot DB: parseIndicatorStats is not defined
2024-12-13T22:37:23.795Z error: Error reading easy_entry DB: parseIndicatorStats is not defined
2024-12-13T22:37:23.805Z error: Error reading ut_bot DB: parseIndicatorStats is not defined
2024-12-13T22:37:23.809Z error: Error reading easy_entry DB: parseIndicatorStats is not defined
2024-12-13T22:37:23.870Z error: Error reading TP DB: C:\Users\huber\Desktop\tbot\tp.json: Unexpected end of JSON input
2024-12-13T22:37:23.875Z error: Error reading easy_entry DB: parseIndicatorStats is not defined
2024-12-13T22:37:23.876Z error: Error reading ut_bot DB: parseIndicatorStats is not defined
2024-12-13T22:37:23.906Z error: Error reading easy_entry DB: parseIndicatorStats is not defined
2024-12-13T22:37:23.908Z error: Error reading ut_bot DB: parseIndicatorStats is not defined
2024-12-13T22:37:23.911Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-13T22:37:23.933Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-13T22:43:17.642Z error: Error reading easy_entry DB: parseIndicatorStats is not defined
2024-12-13T22:43:17.643Z error: Error reading ut_bot DB: parseIndicatorStats is not defined
2024-12-13T22:43:17.647Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-13T22:50:24.050Z error: Error reading easy_entry DB: parseIndicatorStats is not defined
2024-12-13T22:50:24.054Z error: Error reading ut_bot DB: parseIndicatorStats is not defined
2024-12-13T22:50:24.069Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-13T22:50:49.478Z error: PAGE ERROR: TypeError: Cannot set properties of null (setting 'innerText')
2024-12-13T22:52:24.108Z error: Error reading ut_bot DB: parseIndicatorStats is not defined
2024-12-13T22:52:24.184Z error: Error reading ut_bot DB: parseIndicatorStats is not defined
2024-12-13T22:52:24.344Z error: Error reading easy_entry DB: parseIndicatorStats is not defined
2024-12-13T22:52:24.359Z error: Error reading ut_bot DB: parseIndicatorStats is not defined
2024-12-13T22:52:24.373Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-13T22:55:23.914Z error: Error reading easy_entry DB: parseIndicatorStats is not defined
2024-12-13T22:55:23.935Z error: Error reading easy_entry DB: parseIndicatorStats is not defined
2024-12-13T22:55:24.015Z error: Error reading easy_entry DB: parseIndicatorStats is not defined
2024-12-13T22:55:24.020Z error: Error reading ut_bot DB: parseIndicatorStats is not defined
2024-12-13T22:55:24.037Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-13T22:58:23.759Z error: Error reading easy_entry DB: parseIndicatorStats is not defined
2024-12-13T22:58:23.763Z error: Error reading easy_entry DB: parseIndicatorStats is not defined
2024-12-13T22:58:23.781Z error: Error reading easy_entry DB: parseIndicatorStats is not defined
2024-12-13T22:58:23.782Z error: Error reading ut_bot DB: parseIndicatorStats is not defined
2024-12-13T22:58:23.786Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-13T23:02:23.811Z error: Error reading easy_entry DB: parseIndicatorStats is not defined
2024-12-13T23:02:23.936Z error: Error reading easy_entry DB: parseIndicatorStats is not defined
2024-12-13T23:02:24.031Z error: Error reading easy_entry DB: parseIndicatorStats is not defined
2024-12-13T23:02:24.046Z error: Error reading ut_bot DB: parseIndicatorStats is not defined
2024-12-13T23:02:24.198Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-13T23:08:24.002Z error: Error reading easy_entry DB: parseIndicatorStats is not defined
2024-12-13T23:08:24.047Z error: Error reading easy_entry DB: parseIndicatorStats is not defined
2024-12-13T23:08:24.101Z error: Error reading easy_entry DB: parseIndicatorStats is not defined
2024-12-13T23:08:24.112Z error: Error reading ut_bot DB: parseIndicatorStats is not defined
2024-12-13T23:08:24.176Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-13T23:14:23.967Z error: Error reading easy_entry DB: parseIndicatorStats is not defined
2024-12-13T23:14:23.995Z error: Error reading easy_entry DB: parseIndicatorStats is not defined
2024-12-13T23:14:24.038Z error: Error reading easy_entry DB: parseIndicatorStats is not defined
2024-12-13T23:14:24.048Z error: Error reading ut_bot DB: parseIndicatorStats is not defined
2024-12-13T23:14:24.065Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-13T23:34:23.966Z error: Error reading ut_bot DB: parseIndicatorStats is not defined
2024-12-13T23:34:23.984Z error: Error reading ut_bot DB: parseIndicatorStats is not defined
2024-12-13T23:34:24.038Z error: Error reading easy_entry DB: parseIndicatorStats is not defined
2024-12-13T23:34:24.038Z error: Error reading ut_bot DB: parseIndicatorStats is not defined
2024-12-13T23:34:24.066Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-13T23:36:24.110Z error: Error reading easy_entry DB: parseIndicatorStats is not defined
2024-12-13T23:36:24.129Z error: Error reading easy_entry DB: parseIndicatorStats is not defined
2024-12-13T23:36:24.169Z error: Error reading easy_entry DB: parseIndicatorStats is not defined
2024-12-13T23:36:24.173Z error: Error reading ut_bot DB: parseIndicatorStats is not defined
2024-12-13T23:36:24.197Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-13T23:40:24.157Z error: Error reading easy_entry DB: parseIndicatorStats is not defined
2024-12-13T23:40:24.169Z error: Error reading ut_bot DB: parseIndicatorStats is not defined
2024-12-13T23:40:24.184Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-13T23:54:23.916Z error: Error reading ut_bot DB: parseIndicatorStats is not defined
2024-12-13T23:54:23.924Z error: Error reading ut_bot DB: parseIndicatorStats is not defined
2024-12-13T23:54:23.941Z error: Error reading easy_entry DB: parseIndicatorStats is not defined
2024-12-13T23:54:23.942Z error: Error reading ut_bot DB: parseIndicatorStats is not defined
2024-12-13T23:54:23.971Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-13T23:56:24.112Z error: Error reading ut_bot DB: parseIndicatorStats is not defined
2024-12-13T23:56:24.126Z error: Error reading ut_bot DB: parseIndicatorStats is not defined
2024-12-13T23:56:24.159Z error: Error reading easy_entry DB: parseIndicatorStats is not defined
2024-12-13T23:56:24.161Z error: Error reading ut_bot DB: parseIndicatorStats is not defined
2024-12-13T23:56:24.173Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-13T23:57:30.978Z error: Error reading easy_entry DB: parseIndicatorStats is not defined
2024-12-13T23:57:30.980Z error: Error reading ut_bot DB: parseIndicatorStats is not defined
2024-12-13T23:57:30.983Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-14T22:03:00.417Z error: Error reading easy_entry DB: parseIndicatorStats is not defined
2024-12-14T22:03:00.419Z error: Error reading ut_bot DB: parseIndicatorStats is not defined
2024-12-14T22:03:00.424Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-14T22:03:56.154Z error: Error reading easy_entry DB: parseIndicatorStats is not defined
2024-12-14T22:03:56.155Z error: Error reading ut_bot DB: parseIndicatorStats is not defined
2024-12-14T22:03:56.160Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-14T22:20:21.797Z error: Error reading easy_entry DB: parseIndicatorStats is not defined
2024-12-14T22:20:21.798Z error: Error reading ut_bot DB: parseIndicatorStats is not defined
2024-12-14T22:20:21.804Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-14T22:32:10.701Z error: Error reading easy_entry DB: parseIndicatorStats is not defined
2024-12-14T22:32:10.703Z error: Error reading ut_bot DB: parseIndicatorStats is not defined
2024-12-14T22:32:10.711Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-14T22:35:01.223Z error: Error reading easy_entry DB: parseIndicatorStats is not defined
2024-12-14T22:35:01.226Z error: Error reading ut_bot DB: parseIndicatorStats is not defined
2024-12-14T22:35:01.236Z error: Error reading TP DB: C:\Users\huber\Desktop\tbot\tp.json: Unexpected end of JSON input
2024-12-14T22:35:01.242Z error: Error reading easy_entry DB: parseIndicatorStats is not defined
2024-12-14T22:35:01.243Z error: Error reading ut_bot DB: parseIndicatorStats is not defined
2024-12-14T22:35:01.244Z error: Error reading easy_entry DB: parseIndicatorStats is not defined
2024-12-14T22:35:01.246Z error: Error reading ut_bot DB: parseIndicatorStats is not defined
2024-12-14T22:35:01.254Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-14T22:35:01.260Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-14T22:37:01.221Z error: Error reading easy_entry DB: parseIndicatorStats is not defined
2024-12-14T22:37:01.235Z error: Error reading easy_entry DB: parseIndicatorStats is not defined
2024-12-14T22:37:01.236Z error: Error reading ut_bot DB: parseIndicatorStats is not defined
2024-12-14T22:37:01.246Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-14T22:42:01.318Z error: Error reading ut_bot DB: parseIndicatorStats is not defined
2024-12-14T22:42:01.321Z error: Error reading ut_bot DB: parseIndicatorStats is not defined
2024-12-14T22:42:01.335Z error: Error reading easy_entry DB: parseIndicatorStats is not defined
2024-12-14T22:42:01.338Z error: Error reading ut_bot DB: parseIndicatorStats is not defined
2024-12-14T22:42:01.349Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-14T22:49:01.284Z error: Error reading easy_entry DB: parseIndicatorStats is not defined
2024-12-14T22:49:01.288Z error: Error reading easy_entry DB: parseIndicatorStats is not defined
2024-12-14T22:49:01.297Z error: Error reading easy_entry DB: parseIndicatorStats is not defined
2024-12-14T22:49:01.298Z error: Error reading ut_bot DB: parseIndicatorStats is not defined
2024-12-14T22:49:01.305Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-14T22:51:06.372Z error: Error reading easy_entry DB: parseIndicatorStats is not defined
2024-12-14T22:51:06.373Z error: Error reading ut_bot DB: parseIndicatorStats is not defined
2024-12-14T22:51:06.384Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-14T22:52:01.303Z error: Error reading easy_entry DB: parseIndicatorStats is not defined
2024-12-14T22:52:01.317Z error: Error reading easy_entry DB: parseIndicatorStats is not defined
2024-12-14T22:52:01.318Z error: Error reading ut_bot DB: parseIndicatorStats is not defined
2024-12-14T22:52:01.328Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-14T22:59:12.442Z error: Error reading easy_entry DB: parseIndicatorStats is not defined
2024-12-14T22:59:12.449Z error: Error reading easy_entry DB: parseIndicatorStats is not defined
2024-12-14T22:59:12.458Z error: Error reading easy_entry DB: parseIndicatorStats is not defined
2024-12-14T22:59:12.459Z error: Error reading ut_bot DB: parseIndicatorStats is not defined
2024-12-14T22:59:12.480Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-14T23:04:01.411Z error: Error reading ut_bot DB: parseIndicatorStats is not defined
2024-12-14T23:04:01.431Z error: Error reading easy_entry DB: parseIndicatorStats is not defined
2024-12-14T23:04:01.433Z error: Error reading ut_bot DB: parseIndicatorStats is not defined
2024-12-14T23:04:01.449Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-14T23:06:01.432Z error: Error reading easy_entry DB: parseIndicatorStats is not defined
2024-12-14T23:06:01.433Z error: Error reading ut_bot DB: parseIndicatorStats is not defined
2024-12-14T23:06:01.444Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-14T23:10:01.466Z error: Error reading ut_bot DB: parseIndicatorStats is not defined
2024-12-14T23:10:01.471Z error: Error reading ut_bot DB: parseIndicatorStats is not defined
2024-12-14T23:10:01.481Z error: Error reading easy_entry DB: parseIndicatorStats is not defined
2024-12-14T23:10:01.484Z error: Error reading ut_bot DB: parseIndicatorStats is not defined
2024-12-14T23:10:01.499Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-14T23:13:01.464Z error: Error reading easy_entry DB: parseIndicatorStats is not defined
2024-12-14T23:13:01.472Z error: Error reading easy_entry DB: parseIndicatorStats is not defined
2024-12-14T23:13:01.486Z error: Error reading easy_entry DB: parseIndicatorStats is not defined
2024-12-14T23:13:01.487Z error: Error reading ut_bot DB: parseIndicatorStats is not defined
2024-12-14T23:13:01.494Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-14T23:51:02.544Z error: Error reading easy_entry DB: parseIndicatorStats is not defined
2024-12-14T23:51:02.545Z error: Error reading ut_bot DB: parseIndicatorStats is not defined
2024-12-14T23:51:02.549Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-14T23:55:01.675Z error: Error reading ut_bot DB: parseIndicatorStats is not defined
2024-12-14T23:55:01.730Z error: Error reading easy_entry DB: parseIndicatorStats is not defined
2024-12-14T23:55:01.731Z error: Error reading ut_bot DB: parseIndicatorStats is not defined
2024-12-14T23:55:01.738Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T00:03:17.086Z error: PAGE ERROR: TypeError: Cannot set properties of null (setting 'innerText')
2024-12-15T00:04:01.667Z error: Error reading ut_bot DB: parseIndicatorStats is not defined
2024-12-15T00:04:01.671Z error: Error reading ut_bot DB: parseIndicatorStats is not defined
2024-12-15T00:04:01.682Z error: Error reading easy_entry DB: parseIndicatorStats is not defined
2024-12-15T00:04:01.684Z error: Error reading ut_bot DB: parseIndicatorStats is not defined
2024-12-15T00:04:01.691Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T00:09:01.703Z error: Error reading easy_entry DB: parseIndicatorStats is not defined
2024-12-15T00:09:01.713Z error: Error reading easy_entry DB: parseIndicatorStats is not defined
2024-12-15T00:09:01.714Z error: Error reading ut_bot DB: parseIndicatorStats is not defined
2024-12-15T00:09:01.717Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T00:11:31.513Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T00:13:01.703Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T00:16:01.730Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T00:16:01.746Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T00:18:02.747Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T00:18:02.767Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T00:22:01.733Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T00:27:01.786Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T00:27:01.804Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T00:33:01.802Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T00:33:01.821Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T00:34:32.277Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T00:35:59.452Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T00:36:01.904Z error: PAGE ERROR: ReferenceError: kebabToCamel is not defined
2024-12-15T00:36:03.994Z error: PAGE ERROR: ReferenceError: kebabToCamel is not defined
2024-12-15T00:36:07.096Z error: PAGE ERROR: TypeError: Cannot set properties of null (setting 'innerText')
2024-12-15T00:44:01.829Z error: Error updating UI: kebabToCamel is not defined
2024-12-15T00:57:01.898Z error: Error updating UI: kebabToCamel is not defined
2024-12-15T01:11:01.887Z error: Error updating UI: kebabToCamel is not defined
2024-12-15T01:11:07.227Z error: PAGE ERROR: TypeError: Cannot set properties of null (setting 'innerText')
2024-12-15T01:33:02.000Z error: Error updating UI: kebabToCamel is not defined
2024-12-15T01:33:02.006Z error: Error updating UI: kebabToCamel is not defined
2024-12-15T01:33:02.062Z error: Error updating UI: kebabToCamel is not defined
2024-12-15T01:33:02.065Z error: Error updating UI: kebabToCamel is not defined
2024-12-15T01:36:02.164Z error: Error updating UI: kebabToCamel is not defined
2024-12-15T01:36:02.189Z error: Error updating UI: kebabToCamel is not defined
2024-12-15T01:37:02.039Z error: Error updating UI: kebabToCamel is not defined
2024-12-15T01:56:25.822Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T02:03:02.124Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T02:03:02.127Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T02:12:09.510Z error: PAGE ERROR: TypeError: Cannot set properties of null (setting 'innerText')
2024-12-15T02:54:02.323Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T02:54:02.342Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T14:26:51.002Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T14:29:02.937Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T14:29:02.939Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T14:29:02.959Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T14:45:03.376Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T14:51:02.963Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T14:51:02.980Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T14:54:02.953Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T14:54:02.970Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T15:05:03.466Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T15:05:03.476Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T15:05:03.489Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T15:05:03.497Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T15:19:03.056Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T15:19:03.074Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T15:22:03.100Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T15:22:03.116Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T15:30:03.961Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T15:31:03.833Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T15:31:03.849Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T15:32:03.162Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T15:32:03.175Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T15:39:03.485Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T15:39:03.498Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T15:44:03.171Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T15:44:03.185Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T15:46:03.157Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T15:46:06.891Z error: PAGE ERROR: TypeError: Cannot set properties of null (setting 'innerText')
2024-12-15T16:00:34.011Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T16:01:50.696Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T16:12:03.583Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T16:12:03.586Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T16:24:53.948Z error: PAGE ERROR: U: Unable to read file '\446c7e8e-55b9-4d19-8c2b-8cca69cefe67.pine' (Error: Unable to resolve nonexistent file '\446c7e8e-55b9-4d19-8c2b-8cca69cefe67.pine')
je.restoreReadError (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1926:716)
je.doReadFileStream (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1926:249)
async Me.doRead (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1940:9)
async Me.readStream (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1939:2734)
async n.resolveFromFile (https://static.tradingview.com/static/bundles/33124.e3025845ed510f3bd53f.js:130:1614)
async n.resolve (https://static.tradingview.com/static/bundles/33124.e3025845ed510f3bd53f.js:129:2658)
async de.doResolve (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1938:300)
async C.doCreateReferencedObject (https://static.tradingview.com/static/bundles/monaco.model.service.da719c62ec2f93fd5474.js:1:2318)
2024-12-15T16:25:02.010Z error: PAGE ERROR: U: Unable to read file '\446c7e8e-55b9-4d19-8c2b-8cca69cefe67.pine' (Error: Unable to resolve nonexistent file '\446c7e8e-55b9-4d19-8c2b-8cca69cefe67.pine')
je.restoreReadError (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1926:716)
je.doReadFileStream (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1926:249)
async Me.doRead (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1940:9)
async Me.readStream (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1939:2734)
async n.resolveFromFile (https://static.tradingview.com/static/bundles/33124.e3025845ed510f3bd53f.js:130:1614)
async n.resolve (https://static.tradingview.com/static/bundles/33124.e3025845ed510f3bd53f.js:129:2658)
async de.doResolve (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1938:300)
async C.doCreateReferencedObject (https://static.tradingview.com/static/bundles/monaco.model.service.da719c62ec2f93fd5474.js:1:2318)
2024-12-15T16:29:03.740Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T16:32:03.308Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T16:32:03.324Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T16:36:03.702Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T16:36:03.720Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T16:37:58.140Z error: PAGE ERROR: U: Unable to read file '\446c7e8e-55b9-4d19-8c2b-8cca69cefe67.pine' (Error: Unable to resolve nonexistent file '\446c7e8e-55b9-4d19-8c2b-8cca69cefe67.pine')
je.restoreReadError (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1926:716)
je.doReadFileStream (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1926:249)
async Me.doRead (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1940:9)
async Me.readStream (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1939:2734)
async n.resolveFromFile (https://static.tradingview.com/static/bundles/33124.e3025845ed510f3bd53f.js:130:1614)
async n.resolve (https://static.tradingview.com/static/bundles/33124.e3025845ed510f3bd53f.js:129:2658)
async de.doResolve (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1938:300)
async C.doCreateReferencedObject (https://static.tradingview.com/static/bundles/monaco.model.service.da719c62ec2f93fd5474.js:1:2318)
2024-12-15T16:45:03.822Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T16:45:03.853Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T16:45:03.855Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T16:45:03.879Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T16:53:03.382Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T17:13:03.873Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T17:13:03.890Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T17:16:03.997Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T17:16:04.016Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T17:18:03.902Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T17:18:03.920Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T17:30:04.278Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T17:30:04.290Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T17:32:03.597Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T17:36:03.485Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T17:36:03.502Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T17:39:49.079Z error: PAGE ERROR: U: Unable to read file '\7eea73d9-64a3-4544-bcc7-a6aed96685ec.pine' (Error: Unable to resolve nonexistent file '\7eea73d9-64a3-4544-bcc7-a6aed96685ec.pine')
je.restoreReadError (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1926:716)
je.doReadFileStream (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1926:249)
async Me.doRead (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1940:9)
async Me.readStream (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1939:2734)
async n.resolveFromFile (https://static.tradingview.com/static/bundles/33124.e3025845ed510f3bd53f.js:130:1614)
async n.resolve (https://static.tradingview.com/static/bundles/33124.e3025845ed510f3bd53f.js:129:2658)
async de.doResolve (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1938:300)
async C.doCreateReferencedObject (https://static.tradingview.com/static/bundles/monaco.model.service.da719c62ec2f93fd5474.js:1:2318)
2024-12-15T17:40:04.203Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T17:40:04.219Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T17:49:56.795Z error: PAGE ERROR: U: Unable to read file '\7eea73d9-64a3-4544-bcc7-a6aed96685ec.pine' (Error: Unable to resolve nonexistent file '\7eea73d9-64a3-4544-bcc7-a6aed96685ec.pine')
je.restoreReadError (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1926:716)
je.doReadFileStream (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1926:249)
async Me.doRead (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1940:9)
async Me.readStream (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1939:2734)
async n.resolveFromFile (https://static.tradingview.com/static/bundles/33124.e3025845ed510f3bd53f.js:130:1614)
async n.resolve (https://static.tradingview.com/static/bundles/33124.e3025845ed510f3bd53f.js:129:2658)
async de.doResolve (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1938:300)
async C.doCreateReferencedObject (https://static.tradingview.com/static/bundles/monaco.model.service.da719c62ec2f93fd5474.js:1:2318)
2024-12-15T17:50:03.570Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T17:53:04.010Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T17:53:04.046Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T17:53:04.048Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T17:53:04.061Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T18:00:04.845Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T18:01:12.680Z error: PAGE ERROR: U: Unable to read file '\7eea73d9-64a3-4544-bcc7-a6aed96685ec.pine' (Error: Unable to resolve nonexistent file '\7eea73d9-64a3-4544-bcc7-a6aed96685ec.pine')
je.restoreReadError (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1926:716)
je.doReadFileStream (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1926:249)
async Me.doRead (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1940:9)
async Me.readStream (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1939:2734)
async n.resolveFromFile (https://static.tradingview.com/static/bundles/33124.e3025845ed510f3bd53f.js:130:1614)
async n.resolve (https://static.tradingview.com/static/bundles/33124.e3025845ed510f3bd53f.js:129:2658)
async de.doResolve (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1938:300)
async C.doCreateReferencedObject (https://static.tradingview.com/static/bundles/monaco.model.service.da719c62ec2f93fd5474.js:1:2318)
2024-12-15T18:01:12.909Z error: PAGE ERROR: U: Unable to read file '\7eea73d9-64a3-4544-bcc7-a6aed96685ec.pine' (Error: Unable to resolve nonexistent file '\7eea73d9-64a3-4544-bcc7-a6aed96685ec.pine')
je.restoreReadError (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1926:716)
je.doReadFileStream (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1926:249)
async Me.doRead (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1940:9)
async Me.readStream (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1939:2734)
async n.resolveFromFile (https://static.tradingview.com/static/bundles/33124.e3025845ed510f3bd53f.js:130:1614)
async n.resolve (https://static.tradingview.com/static/bundles/33124.e3025845ed510f3bd53f.js:129:2658)
async de.doResolve (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1938:300)
async C.doCreateReferencedObject (https://static.tradingview.com/static/bundles/monaco.model.service.da719c62ec2f93fd5474.js:1:2318)
2024-12-15T18:07:03.827Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T18:07:03.843Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T18:07:03.858Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T18:07:58.703Z error: PAGE ERROR: U: Unable to read file '\7eea73d9-64a3-4544-bcc7-a6aed96685ec.pine' (Error: Unable to resolve nonexistent file '\7eea73d9-64a3-4544-bcc7-a6aed96685ec.pine')
je.restoreReadError (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1926:716)
je.doReadFileStream (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1926:249)
async Me.doRead (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1940:9)
async Me.readStream (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1939:2734)
async n.resolveFromFile (https://static.tradingview.com/static/bundles/33124.e3025845ed510f3bd53f.js:130:1614)
async n.resolve (https://static.tradingview.com/static/bundles/33124.e3025845ed510f3bd53f.js:129:2658)
async de.doResolve (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1938:300)
async C.doCreateReferencedObject (https://static.tradingview.com/static/bundles/monaco.model.service.da719c62ec2f93fd5474.js:1:2318)
2024-12-15T18:08:33.502Z error: PAGE ERROR: U: Unable to read file '\7eea73d9-64a3-4544-bcc7-a6aed96685ec.pine' (Error: Unable to resolve nonexistent file '\7eea73d9-64a3-4544-bcc7-a6aed96685ec.pine')
je.restoreReadError (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1926:716)
je.doReadFileStream (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1926:249)
async Me.doRead (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1940:9)
async Me.readStream (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1939:2734)
async n.resolveFromFile (https://static.tradingview.com/static/bundles/33124.e3025845ed510f3bd53f.js:130:1614)
async n.resolve (https://static.tradingview.com/static/bundles/33124.e3025845ed510f3bd53f.js:129:2658)
async de.doResolve (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1938:300)
async C.doCreateReferencedObject (https://static.tradingview.com/static/bundles/monaco.model.service.da719c62ec2f93fd5474.js:1:2318)
2024-12-15T18:08:33.569Z error: PAGE ERROR: U: Unable to read file '\7eea73d9-64a3-4544-bcc7-a6aed96685ec.pine' (Error: Unable to resolve nonexistent file '\7eea73d9-64a3-4544-bcc7-a6aed96685ec.pine')
je.restoreReadError (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1926:716)
je.doReadFileStream (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1926:249)
async Me.doRead (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1940:9)
async Me.readStream (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1939:2734)
async n.resolveFromFile (https://static.tradingview.com/static/bundles/33124.e3025845ed510f3bd53f.js:130:1614)
async n.resolve (https://static.tradingview.com/static/bundles/33124.e3025845ed510f3bd53f.js:129:2658)
async de.doResolve (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1938:300)
async C.doCreateReferencedObject (https://static.tradingview.com/static/bundles/monaco.model.service.da719c62ec2f93fd5474.js:1:2318)
2024-12-15T18:09:03.918Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T18:09:03.934Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T18:10:03.646Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T18:10:03.661Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T18:11:45.260Z error: PAGE ERROR: U: Unable to read file '\7eea73d9-64a3-4544-bcc7-a6aed96685ec.pine' (Error: Unable to resolve nonexistent file '\7eea73d9-64a3-4544-bcc7-a6aed96685ec.pine')
je.restoreReadError (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1926:716)
je.doReadFileStream (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1926:249)
async Me.doRead (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1940:9)
async Me.readStream (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1939:2734)
async n.resolveFromFile (https://static.tradingview.com/static/bundles/33124.e3025845ed510f3bd53f.js:130:1614)
async n.resolve (https://static.tradingview.com/static/bundles/33124.e3025845ed510f3bd53f.js:129:2658)
async de.doResolve (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1938:300)
async C.doCreateReferencedObject (https://static.tradingview.com/static/bundles/monaco.model.service.da719c62ec2f93fd5474.js:1:2318)
2024-12-15T18:11:45.460Z error: PAGE ERROR: U: Unable to read file '\7eea73d9-64a3-4544-bcc7-a6aed96685ec.pine' (Error: Unable to resolve nonexistent file '\7eea73d9-64a3-4544-bcc7-a6aed96685ec.pine')
je.restoreReadError (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1926:716)
je.doReadFileStream (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1926:249)
async Me.doRead (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1940:9)
async Me.readStream (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1939:2734)
async n.resolveFromFile (https://static.tradingview.com/static/bundles/33124.e3025845ed510f3bd53f.js:130:1614)
async n.resolve (https://static.tradingview.com/static/bundles/33124.e3025845ed510f3bd53f.js:129:2658)
async de.doResolve (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1938:300)
async C.doCreateReferencedObject (https://static.tradingview.com/static/bundles/monaco.model.service.da719c62ec2f93fd5474.js:1:2318)
2024-12-15T18:11:45.826Z error: PAGE ERROR: U: Unable to read file '\7eea73d9-64a3-4544-bcc7-a6aed96685ec.pine' (Error: Unable to resolve nonexistent file '\7eea73d9-64a3-4544-bcc7-a6aed96685ec.pine')
je.restoreReadError (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1926:716)
je.doReadFileStream (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1926:249)
async Me.doRead (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1940:9)
async Me.readStream (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1939:2734)
async n.resolveFromFile (https://static.tradingview.com/static/bundles/33124.e3025845ed510f3bd53f.js:130:1614)
async n.resolve (https://static.tradingview.com/static/bundles/33124.e3025845ed510f3bd53f.js:129:2658)
async de.doResolve (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1938:300)
async C.doCreateReferencedObject (https://static.tradingview.com/static/bundles/monaco.model.service.da719c62ec2f93fd5474.js:1:2318)
2024-12-15T18:11:45.894Z error: PAGE ERROR: U: Unable to read file '\7eea73d9-64a3-4544-bcc7-a6aed96685ec.pine' (Error: Unable to resolve nonexistent file '\7eea73d9-64a3-4544-bcc7-a6aed96685ec.pine')
je.restoreReadError (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1926:716)
je.doReadFileStream (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1926:249)
async Me.doRead (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1940:9)
async Me.readStream (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1939:2734)
async n.resolveFromFile (https://static.tradingview.com/static/bundles/33124.e3025845ed510f3bd53f.js:130:1614)
async n.resolve (https://static.tradingview.com/static/bundles/33124.e3025845ed510f3bd53f.js:129:2658)
async de.doResolve (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1938:300)
async C.doCreateReferencedObject (https://static.tradingview.com/static/bundles/monaco.model.service.da719c62ec2f93fd5474.js:1:2318)
2024-12-15T18:18:45.135Z error: PAGE ERROR: U: Unable to read file '\977c4104-daea-41b5-a6f4-b13568b5edd3.pine' (Error: Unable to resolve nonexistent file '\977c4104-daea-41b5-a6f4-b13568b5edd3.pine')
je.restoreReadError (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1926:716)
je.doReadFileStream (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1926:249)
async Me.doRead (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1940:9)
async Me.readStream (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1939:2734)
async n.resolveFromFile (https://static.tradingview.com/static/bundles/33124.e3025845ed510f3bd53f.js:130:1614)
async n.resolve (https://static.tradingview.com/static/bundles/33124.e3025845ed510f3bd53f.js:129:2658)
async de.doResolve (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1938:300)
async C.doCreateReferencedObject (https://static.tradingview.com/static/bundles/monaco.model.service.da719c62ec2f93fd5474.js:1:2318)
2024-12-15T18:18:45.315Z error: PAGE ERROR: U: Unable to read file '\977c4104-daea-41b5-a6f4-b13568b5edd3.pine' (Error: Unable to resolve nonexistent file '\977c4104-daea-41b5-a6f4-b13568b5edd3.pine')
je.restoreReadError (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1926:716)
je.doReadFileStream (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1926:249)
async Me.doRead (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1940:9)
async Me.readStream (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1939:2734)
async n.resolveFromFile (https://static.tradingview.com/static/bundles/33124.e3025845ed510f3bd53f.js:130:1614)
async n.resolve (https://static.tradingview.com/static/bundles/33124.e3025845ed510f3bd53f.js:129:2658)
async de.doResolve (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1938:300)
async C.doCreateReferencedObject (https://static.tradingview.com/static/bundles/monaco.model.service.da719c62ec2f93fd5474.js:1:2318)
2024-12-15T18:26:03.817Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T18:26:03.833Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T18:28:03.630Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T18:28:03.643Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T18:32:04.139Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T18:40:20.781Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T18:43:46.375Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T18:45:20.487Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T18:48:40.521Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T18:49:04.180Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T18:49:04.212Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T18:50:03.953Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T18:50:03.975Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T18:56:19.732Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T18:56:23.128Z error: PAGE ERROR: TypeError: Cannot read properties of undefined (reading 'easy_entry')
2024-12-15T18:56:31.831Z error: PAGE ERROR: TypeError: Cannot read properties of undefined (reading 'ut_bot')
2024-12-15T18:56:44.798Z error: PAGE ERROR: TypeError: Cannot read properties of undefined (reading 'eci_long')
2024-12-15T18:56:45.472Z error: PAGE ERROR: TypeError: Cannot read properties of undefined (reading 'tp')
2024-12-15T19:03:55.960Z error: PAGE ERROR: TypeError: Cannot read properties of undefined (reading 'easy_entry')
2024-12-15T19:03:57.713Z error: PAGE ERROR: TypeError: Cannot read properties of undefined (reading 'ut_bot')
2024-12-15T19:04:00.803Z error: PAGE ERROR: TypeError: Cannot read properties of undefined (reading 'easy_entry')
2024-12-15T19:04:22.454Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T19:04:31.577Z error: PAGE ERROR: TypeError: Cannot read properties of undefined (reading 'easy_entry')
2024-12-15T19:04:33.148Z error: PAGE ERROR: TypeError: Cannot read properties of undefined (reading 'ut_bot')
2024-12-15T19:04:34.654Z error: PAGE ERROR: TypeError: Cannot read properties of undefined (reading 'eci_long')
2024-12-15T19:04:35.245Z error: PAGE ERROR: TypeError: Cannot read properties of undefined (reading 'tp')
2024-12-15T19:55:50.944Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T19:56:50.343Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T20:03:36.765Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T20:05:04.028Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T20:05:04.054Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T20:05:04.060Z error: Error in handleAlert: Cannot read properties of null (reading 'prepend')
2024-12-15T20:16:23.260Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T20:17:04.197Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T20:17:04.221Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T20:17:04.226Z error: Error in handleAlert: Cannot read properties of null (reading 'prepend')
2024-12-15T20:19:04.636Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T20:19:04.656Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T20:19:04.658Z error: Error in handleAlert: Cannot read properties of null (reading 'prepend')
2024-12-15T20:28:04.675Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T20:29:04.442Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T20:29:04.516Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T20:29:04.519Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T20:29:04.542Z error: Error in handleAlert: Cannot read properties of null (reading 'prepend')
2024-12-15T20:29:04.546Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T20:29:04.548Z error: Error in handleAlert: Cannot read properties of null (reading 'prepend')
2024-12-15T20:48:04.596Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T20:59:21.460Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T21:07:07.967Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T21:07:38.694Z error: PAGE ERROR: TypeError: Cannot read properties of undefined (reading 'totalTpTrades')
2024-12-15T21:10:22.704Z error: PAGE ERROR: c: Canceled: Canceled
2024-12-15T21:12:23.861Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T21:36:29.281Z error: PAGE ERROR: U: Unable to read file '\a6a76532-51c4-44cb-89fc-f68102eb0519.pine' (Error: Unable to resolve nonexistent file '\a6a76532-51c4-44cb-89fc-f68102eb0519.pine')
je.restoreReadError (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1926:716)
je.doReadFileStream (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1926:249)
async Me.doRead (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1940:9)
async Me.readStream (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1939:2734)
async n.resolveFromFile (https://static.tradingview.com/static/bundles/33124.e3025845ed510f3bd53f.js:130:1614)
async n.resolve (https://static.tradingview.com/static/bundles/33124.e3025845ed510f3bd53f.js:129:2658)
async de.doResolve (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1938:300)
async I.doCreateReferencedObject (https://static.tradingview.com/static/bundles/monaco.language.services.48437e44eb215ee04098.js:1:2324)
2024-12-15T21:38:11.081Z error: PAGE ERROR: U: Unable to read file '\a6a76532-51c4-44cb-89fc-f68102eb0519.pine' (Error: Unable to resolve nonexistent file '\a6a76532-51c4-44cb-89fc-f68102eb0519.pine')
je.restoreReadError (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1926:716)
je.doReadFileStream (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1926:249)
async Me.doRead (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1940:9)
async Me.readStream (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1939:2734)
async n.resolveFromFile (https://static.tradingview.com/static/bundles/33124.e3025845ed510f3bd53f.js:130:1614)
async n.resolve (https://static.tradingview.com/static/bundles/33124.e3025845ed510f3bd53f.js:129:2658)
async de.doResolve (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1938:300)
async I.doCreateReferencedObject (https://static.tradingview.com/static/bundles/monaco.language.services.48437e44eb215ee04098.js:1:2324)
2024-12-15T21:48:04.850Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T21:51:45.099Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T21:52:04.858Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-15T21:52:04.875Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-16T01:25:02.801Z error: Error reading global DB: C:\Users\huber\Desktop\tbot\db.json: Unexpected end of JSON input
2024-12-16T06:03:03.804Z error: Error reading TP DB: C:\Users\huber\Desktop\tbot\tp.json: Unexpected end of JSON input
2024-12-16T06:40:03.893Z error: Error reading global DB: C:\Users\huber\Desktop\tbot\db.json: Unexpected end of JSON input
2024-12-16T15:11:18.502Z error: Error reading global DB: C:\Users\huber\Desktop\tbot\db.json: Unexpected end of JSON input
2024-12-16T15:11:18.514Z error: Error reading global DB: C:\Users\huber\Desktop\tbot\db.json: Unexpected end of JSON input
2024-12-16T15:11:18.550Z error: Error reading ut_bot DB: C:\Users\huber\Desktop\tbot\utbot.json: Unexpected end of JSON input
2024-12-16T15:11:18.566Z error: Error reading TP DB: C:\Users\huber\Desktop\tbot\tp.json: Unexpected token } in JSON at position 9102
2024-12-16T15:11:18.568Z error: Error reading TP DB: C:\Users\huber\Desktop\tbot\tp.json: Unexpected token } in JSON at position 9102
2024-12-16T15:11:18.578Z error: Error reading TP DB: C:\Users\huber\Desktop\tbot\tp.json: Unexpected end of JSON input
2024-12-16T15:11:43.773Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-16T15:12:51.447Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-16T15:16:03.107Z error: Error in handleAlert: trade is not defined
2024-12-16T15:20:04.821Z error: Error in handleAlert: trade is not defined
2024-12-16T15:26:03.477Z error: Error in handleAlert: trade is not defined
2024-12-16T15:32:04.232Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-16T15:32:04.270Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-16T15:32:04.272Z error: Error in handleAlert: trade is not defined
2024-12-16T15:43:03.124Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-16T15:43:03.148Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-16T15:43:03.150Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-16T15:43:03.161Z error: Error reading global DB: C:\Users\huber\Desktop\tbot\db.json: Unexpected token e in JSON at position 3132
2024-12-16T15:43:03.162Z error: Error reading global DB: C:\Users\huber\Desktop\tbot\db.json: Unexpected token e in JSON at position 3132
2024-12-16T15:43:03.174Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-16T15:43:03.175Z error: Error in handleAlert: trade is not defined
2024-12-16T15:43:03.177Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-16T15:43:03.178Z error: Error in handleAlert: trade is not defined
2024-12-16T15:47:26.290Z error: Error reading global DB: C:\Users\huber\Desktop\tbot\db.json: Unexpected token e in JSON at position 3132
2024-12-16T15:47:26.300Z error: Error updating UI: Cannot set properties of null (setting 'innerText')
2024-12-16T15:48:03.416Z error: Error reading global DB: C:\Users\huber\Desktop\tbot\db.json: Unexpected token e in JSON at position 3132
2024-12-16T15:48:03.420Z error: Error reading global DB: C:\Users\huber\Desktop\tbot\db.json: Unexpected token e in JSON at position 3132
2024-12-16T15:48:03.441Z error: Error in handleAlert: trade is not defined
2024-12-16T15:50:03.693Z error: Error in handleAlert: trade is not defined
2024-12-16T16:01:03.518Z error: Error in handleAlert: trade is not defined
2024-12-16T16:04:04.009Z error: Error in handleAlert: trade is not defined
2024-12-16T16:11:02.326Z error: Error in handleAlert: trade is not defined
2024-12-16T16:11:02.366Z error: Error in handleAlert: trade is not defined
2024-12-16T16:22:01.761Z error: Error in handleAlert: trade is not defined
2024-12-16T16:39:02.044Z error: Error in handleAlert: trade is not defined
2024-12-16T16:44:02.378Z error: Error in handleAlert: trade is not defined
2024-12-16T16:46:01.676Z error: Error in handleAlert: trade is not defined
2024-12-16T16:55:02.213Z error: Error in handleAlert: trade is not defined
2024-12-16T16:57:02.043Z error: Error in handleAlert: trade is not defined
2024-12-16T17:01:02.410Z error: Error in handleAlert: trade is not defined
2024-12-16T17:03:01.717Z error: Error in handleAlert: trade is not defined
2024-12-16T17:07:01.707Z error: Error in handleAlert: trade is not defined
2024-12-16T17:24:01.967Z error: Error in handleAlert: trade is not defined
2024-12-16T17:34:01.802Z error: Error in handleAlert: trade is not defined
2024-12-16T18:02:25.277Z error: Błąd przy aktualizacji UI: Cannot read properties of undefined (reading 'statistics')
2024-12-16T18:05:02.236Z error: Error in handleAlert: uuidv4 is not defined
2024-12-16T18:07:02.208Z error: Error in handleAlert: uuidv4 is not defined
2024-12-16T18:13:47.914Z error: Błąd przy aktualizacji UI: Cannot read properties of undefined (reading 'statistics')
2024-12-16T18:14:02.301Z error: Error in handleAlert: uuidv4 is not defined
2024-12-16T18:15:02.236Z error: Error in handleAlert: uuidv4 is not defined
2024-12-16T18:19:25.010Z error: Błąd przy aktualizacji UI: Cannot read properties of undefined (reading 'statistics')
2024-12-16T18:33:01.978Z error: Błąd przy aktualizacji UI: Cannot read properties of undefined (reading 'statistics')
2024-12-16T18:33:01.985Z error: Błąd przy aktualizacji UI: Cannot read properties of undefined (reading 'statistics')
2024-12-16T18:50:02.405Z error: Błąd przy aktualizacji UI: Cannot read properties of undefined (reading 'statistics')
2024-12-16T18:50:02.425Z error: Błąd przy aktualizacji UI: Cannot read properties of undefined (reading 'statistics')
2024-12-16T18:50:02.426Z error: Błąd przy aktualizacji UI: Cannot read properties of undefined (reading 'statistics')
2024-12-16T18:56:34.025Z error: Błąd przy aktualizacji UI: Cannot read properties of undefined (reading 'statistics')
2024-12-16T19:21:02.070Z error: Błąd przy aktualizacji UI: Cannot read properties of undefined (reading 'statistics')
2024-12-16T19:26:02.087Z error: Błąd przy aktualizacji UI: Cannot read properties of undefined (reading 'statistics')
2024-12-16T19:26:02.112Z error: Błąd przy aktualizacji UI: Cannot read properties of undefined (reading 'statistics')
2024-12-16T22:12:03.049Z error: Error reading global DB: C:\Users\huber\Desktop\tbot\TV\db.json: Unexpected end of JSON input
2024-12-17T06:56:13.985Z error: Error in monitorTradingView: Navigation timeout of 30000 ms exceeded
2024-12-17T06:56:54.744Z error: Error in monitorTradingView: Navigation timeout of 30000 ms exceeded
2024-12-17T06:57:30.860Z error: Error in monitorTradingView: Navigation timeout of 30000 ms exceeded
2024-12-17T10:04:08.598Z error: Error in monitorTradingView: Navigation timeout of 30000 ms exceeded
2024-12-17T10:11:10.735Z error: Error in monitorTradingView: Navigation timeout of 30000 ms exceeded
2024-12-17T10:33:29.117Z error: Error in monitorTradingView: net::ERR_NAME_NOT_RESOLVED at https://www.tradingview.com/
2024-12-17T10:34:10.855Z error: Error in monitorTradingView: net::ERR_NAME_NOT_RESOLVED at https://www.tradingview.com/
2024-12-17T10:34:26.258Z error: Error in monitorTradingView: net::ERR_NAME_NOT_RESOLVED at https://www.tradingview.com/
2024-12-17T10:34:39.721Z error: Error in monitorTradingView: net::ERR_NAME_NOT_RESOLVED at https://www.tradingview.com/
2024-12-17T10:34:57.203Z error: Error in monitorTradingView: net::ERR_NAME_NOT_RESOLVED at https://www.tradingview.com/
2024-12-17T10:37:09.436Z error: Error in monitorTradingView: Navigation timeout of 30000 ms exceeded
2024-12-17T11:47:54.034Z error: PAGE ERROR: Error: Value is null
2024-12-17T12:11:02.545Z error: PAGE ERROR: DOMException: NotAllowedError: play() failed because the user didn't interact with the document first. https://goo.gl/xX8pDD
2024-12-17T13:39:16.556Z error: PAGE ERROR: TypeError: Failed to fetch
2024-12-17T13:49:26.640Z error: PAGE ERROR: TypeError: Failed to fetch
2024-12-17T13:54:26.675Z error: PAGE ERROR: TypeError: Failed to fetch
2024-12-17T13:59:25.136Z error: PAGE ERROR: TypeError: Failed to fetch
2024-12-17T14:04:26.649Z error: PAGE ERROR: TypeError: Failed to fetch
2024-12-17T14:09:26.671Z error: PAGE ERROR: TypeError: Failed to fetch
2024-12-17T14:12:26.815Z error: PAGE ERROR: TypeError: Failed to fetch
2024-12-17T14:29:59.514Z error: PAGE ERROR: TypeError: Failed to fetch
2024-12-17T19:09:42.227Z error: PAGE ERROR: TypeError: Failed to fetch
2024-12-17T19:22:27.046Z error: PAGE ERROR: TypeError: Failed to fetch
2024-12-17T19:27:18.757Z error: PAGE ERROR: TypeError: Failed to fetch
2024-12-17T19:32:27.031Z error: PAGE ERROR: TypeError: Failed to fetch
2024-12-17T19:37:27.086Z error: PAGE ERROR: TypeError: Failed to fetch
2024-12-17T19:41:39.591Z error: PAGE ERROR: TypeError: Failed to fetch
2024-12-17T19:42:07.895Z error: PAGE ERROR: TypeError: Failed to fetch
2024-12-17T20:56:43.044Z error: PAGE ERROR: TypeError: Failed to fetch
2024-12-17T21:57:07.280Z error: PAGE ERROR: TypeError: Failed to fetch
2024-12-18T17:43:02.335Z error: Error reading global DB: C:\Users\huber\Desktop\tbot\TV\db.json: Unexpected end of JSON input
2024-12-18T18:10:38.324Z error: PAGE ERROR: TypeError: Failed to fetch
2024-12-18T18:24:10.922Z error: PAGE ERROR: TypeError: Failed to fetch
2024-12-18T18:29:10.880Z error: PAGE ERROR: TypeError: Failed to fetch
2024-12-18T18:43:51.644Z error: PAGE ERROR: TypeError: Failed to fetch
2024-12-18T18:44:03.593Z error: PAGE ERROR: TypeError: Failed to fetch
2024-12-18T19:47:02.378Z error: Error reading ut_bot DB: C:\Users\huber\Desktop\tbot\TV\utbot.json: Unexpected end of JSON input
2024-12-19T11:12:07.274Z error: Error reading eci_long DB: C:\Users\huber\Desktop\tbot\TV\eci_long.json: Unexpected end of JSON input
2024-12-19T11:22:04.912Z error: Error reading eci_long DB: C:\Users\huber\Desktop\tbot\TV\eci_long.json: Unexpected end of JSON input
2024-12-19T11:25:04.669Z error: Error reading eci_long DB: C:\Users\huber\Desktop\tbot\TV\eci_long.json: Unexpected end of JSON input
2024-12-19T11:25:04.690Z error: Error reading eci_long DB: C:\Users\huber\Desktop\tbot\TV\eci_long.json: Unexpected end of JSON input
2024-12-19T11:25:04.748Z error: Error reading eci_long DB: C:\Users\huber\Desktop\tbot\TV\eci_long.json: Unexpected end of JSON input
2024-12-19T11:32:04.927Z error: Error reading eci_long DB: C:\Users\huber\Desktop\tbot\TV\eci_long.json: Unexpected end of JSON input
2024-12-19T11:34:04.620Z error: Error reading eci_long DB: C:\Users\huber\Desktop\tbot\TV\eci_long.json: Unexpected end of JSON input
2024-12-19T11:34:04.653Z error: Error reading eci_long DB: C:\Users\huber\Desktop\tbot\TV\eci_long.json: Unexpected end of JSON input
2024-12-19T12:34:10.013Z error: Error reading eci_long DB: C:\Users\huber\Desktop\tbot\TV\eci_long.json: Unexpected end of JSON input
2024-12-19T14:10:13.408Z error: Error reading eci_long DB: C:\Users\huber\Desktop\tbot\TV\eci_long.json: Unexpected end of JSON input
2024-12-19T14:14:05.463Z error: Error reading eci_long DB: C:\Users\huber\Desktop\tbot\TV\eci_long.json: Unexpected end of JSON input
2024-12-19T14:14:05.471Z error: Error reading eci_long DB: C:\Users\huber\Desktop\tbot\TV\eci_long.json: Unexpected end of JSON input
2024-12-19T14:33:06.110Z error: Error reading eci_long DB: C:\Users\huber\Desktop\tbot\TV\eci_long.json: Unexpected end of JSON input
2024-12-19T14:35:06.965Z error: Error reading eci_long DB: C:\Users\huber\Desktop\tbot\TV\eci_long.json: Unexpected end of JSON input
2024-12-19T19:16:06.036Z error: Error reading TP DB: C:\Users\huber\Desktop\tbot\TV\tp.json: Unexpected end of JSON input
2024-12-19T20:13:06.227Z error: PAGE ERROR: DOMException: NotAllowedError: play() failed because the user didn't interact with the document first. https://goo.gl/xX8pDD
2024-12-19T21:07:37.998Z error: PAGE ERROR: TypeError: Cannot read properties of null (reading 'toLowerCase')
2024-12-19T21:08:06.358Z error: Error writing ut_bot DB: EPERM: operation not permitted, rename 'C:\Users\huber\Desktop\tbot\TV\utbot.json.tmp' -> 'C:\Users\huber\Desktop\tbot\TV\utbot.json'
2024-12-19T21:21:10.287Z error: PAGE ERROR: TypeError: Cannot read properties of null (reading 'toLowerCase')
2024-12-19T21:27:06.827Z error: Error writing easy_entry DB: EPERM: operation not permitted, rename 'C:\Users\huber\Desktop\tbot\TV\easy.json.tmp' -> 'C:\Users\huber\Desktop\tbot\TV\easy.json'
2024-12-19T21:27:55.822Z error: Unsupported indicator: MA
2024-12-19T21:27:55.822Z error: Unsupported indicator: MA
2024-12-19T22:21:06.648Z error: Error writing ut_bot DB: EPERM: operation not permitted, rename 'C:\Users\huber\Desktop\tbot\TV\utbot.json.tmp' -> 'C:\Users\huber\Desktop\tbot\TV\utbot.json'
2024-12-19T22:48:07.185Z error: Error writing ut_bot DB: ENOENT: no such file or directory, lstat 'C:\Users\huber\Desktop\tbot\TV\utbot.json.tmp'
2024-12-19T23:01:06.761Z error: Error writing easy_entry DB: ENOENT: no such file or directory, lstat 'C:\Users\huber\Desktop\tbot\TV\easy.json.tmp'
2024-12-19T23:05:07.253Z error: Error writing ut_bot DB: ENOENT: no such file or directory, rename 'C:\Users\huber\Desktop\tbot\TV\utbot.json.tmp' -> 'C:\Users\huber\Desktop\tbot\TV\utbot.json'
2024-12-21T19:54:05.510Z error: Error writing ut_bot DB: ENOENT: no such file or directory, rename 'C:\Users\huber\Desktop\tbot\TV\utbot.json.tmp' -> 'C:\Users\huber\Desktop\tbot\TV\utbot.json'
2024-12-21T20:17:06.079Z error: Error in handleAlert: ReferenceError: logTpTrade is not defined
2024-12-21T20:35:05.754Z error: Error writing ut_bot DB: EPERM: operation not permitted, rename 'C:\Users\huber\Desktop\tbot\TV\utbot.json.tmp' -> 'C:\Users\huber\Desktop\tbot\TV\utbot.json'
2024-12-21T21:25:20.624Z error: PAGE ERROR: U: Unable to read file '\fec246f8-7eed-403a-bce6-367dafd48396.pine' (Error: Unable to resolve nonexistent file '\fec246f8-7eed-403a-bce6-367dafd48396.pine')
je.restoreReadError (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1926:716)
je.doReadFileStream (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1926:249)
async Me.doRead (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1940:9)
async Me.readStream (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1939:2734)
async n.resolveFromFile (https://static.tradingview.com/static/bundles/33124.e3025845ed510f3bd53f.js:130:1614)
async n.resolve (https://static.tradingview.com/static/bundles/33124.e3025845ed510f3bd53f.js:129:2658)
async de.doResolve (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1938:300)
async I.doCreateReferencedObject (https://static.tradingview.com/static/bundles/monaco.language.services.48437e44eb215ee04098.js:1:2324)
2024-12-21T21:25:36.397Z error: PAGE ERROR: U: Unable to read file '\fec246f8-7eed-403a-bce6-367dafd48396.pine' (Error: Unable to resolve nonexistent file '\fec246f8-7eed-403a-bce6-367dafd48396.pine')
je.restoreReadError (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1926:716)
je.doReadFileStream (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1926:249)
async Me.doRead (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1940:9)
async Me.readStream (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1939:2734)
async n.resolveFromFile (https://static.tradingview.com/static/bundles/33124.e3025845ed510f3bd53f.js:130:1614)
async n.resolve (https://static.tradingview.com/static/bundles/33124.e3025845ed510f3bd53f.js:129:2658)
async de.doResolve (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1938:300)
async I.doCreateReferencedObject (https://static.tradingview.com/static/bundles/monaco.language.services.48437e44eb215ee04098.js:1:2324)
2024-12-21T21:33:02.425Z error: PAGE ERROR: U: Unable to read file '\fec246f8-7eed-403a-bce6-367dafd48396.pine' (Error: Unable to resolve nonexistent file '\fec246f8-7eed-403a-bce6-367dafd48396.pine')
je.restoreReadError (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1926:716)
je.doReadFileStream (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1926:249)
async Me.doRead (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1940:9)
async Me.readStream (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1939:2734)
async n.resolveFromFile (https://static.tradingview.com/static/bundles/33124.e3025845ed510f3bd53f.js:130:1614)
async n.resolve (https://static.tradingview.com/static/bundles/33124.e3025845ed510f3bd53f.js:129:2658)
async de.doResolve (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1938:300)
async I.doCreateReferencedObject (https://static.tradingview.com/static/bundles/monaco.language.services.48437e44eb215ee04098.js:1:2324)
2024-12-21T21:34:42.256Z error: PAGE ERROR: U: Unable to read file '\fec246f8-7eed-403a-bce6-367dafd48396.pine' (Error: Unable to resolve nonexistent file '\fec246f8-7eed-403a-bce6-367dafd48396.pine')
je.restoreReadError (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1926:716)
je.doReadFileStream (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1926:249)
async Me.doRead (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1940:9)
async Me.readStream (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1939:2734)
async n.resolveFromFile (https://static.tradingview.com/static/bundles/33124.e3025845ed510f3bd53f.js:130:1614)
async n.resolve (https://static.tradingview.com/static/bundles/33124.e3025845ed510f3bd53f.js:129:2658)
async de.doResolve (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1938:300)
async I.doCreateReferencedObject (https://static.tradingview.com/static/bundles/monaco.language.services.48437e44eb215ee04098.js:1:2324)
2024-12-21T21:43:45.194Z error: PAGE ERROR: U: Unable to read file '\fec246f8-7eed-403a-bce6-367dafd48396.pine' (Error: Unable to resolve nonexistent file '\fec246f8-7eed-403a-bce6-367dafd48396.pine')
je.restoreReadError (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1926:716)
je.doReadFileStream (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1926:249)
async Me.doRead (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1940:9)
async Me.readStream (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1939:2734)
async n.resolveFromFile (https://static.tradingview.com/static/bundles/33124.e3025845ed510f3bd53f.js:130:1614)
async n.resolve (https://static.tradingview.com/static/bundles/33124.e3025845ed510f3bd53f.js:129:2658)
async de.doResolve (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1938:300)
async I.doCreateReferencedObject (https://static.tradingview.com/static/bundles/monaco.language.services.48437e44eb215ee04098.js:1:2324)
2024-12-21T21:45:47.501Z error: PAGE ERROR: U: Unable to read file '\fec246f8-7eed-403a-bce6-367dafd48396.pine' (Error: Unable to resolve nonexistent file '\fec246f8-7eed-403a-bce6-367dafd48396.pine')
je.restoreReadError (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1926:716)
je.doReadFileStream (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1926:249)
async Me.doRead (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1940:9)
async Me.readStream (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1939:2734)
async n.resolveFromFile (https://static.tradingview.com/static/bundles/33124.e3025845ed510f3bd53f.js:130:1614)
async n.resolve (https://static.tradingview.com/static/bundles/33124.e3025845ed510f3bd53f.js:129:2658)
async de.doResolve (https://static.tradingview.com/static/bundles/monaco.vscode.services.21f472e0832b2e87adcd.js:1938:300)
async I.doCreateReferencedObject (https://static.tradingview.com/static/bundles/monaco.language.services.48437e44eb215ee04098.js:1:2324)
2024-12-21T21:59:06.200Z error: Error reading global DB: C:\Users\huber\Desktop\tbot\TV\db.json: Unexpected end of JSON input
2024-12-21T21:59:06.276Z error: Error parsing ut_bot DB: Error: ENOENT: no such file or directory, open 'C:\Users\huber\Desktop\tbot\TV\utbot.json'. Reinitializing ut_bot DB.
2024-12-21T21:59:06.284Z error: Error writing ut_bot DB: EPERM: operation not permitted, rename 'C:\Users\huber\Desktop\tbot\TV\utbot.json.tmp' -> 'C:\Users\huber\Desktop\tbot\TV\utbot.json'
2024-12-21T22:04:05.980Z error: Error in handleAlert: ReferenceError: logTpTrade is not defined
2024-12-21T22:19:05.950Z error: Error reading global DB: C:\Users\huber\Desktop\tbot\TV\db.json: Unexpected end of JSON input
2024-12-21T22:19:06.002Z error: Error writing ut_bot DB: EPERM: operation not permitted, rename 'C:\Users\huber\Desktop\tbot\TV\utbot.json.tmp' -> 'C:\Users\huber\Desktop\tbot\TV\utbot.json'
2024-12-21T22:19:06.003Z error: Error reading ut_bot DB: EPERM: operation not permitted, open 'C:\Users\huber\Desktop\tbot\TV\utbot.json'
2024-12-21T22:19:06.013Z error: Error parsing ut_bot DB: Error: ENOENT: no such file or directory, open 'C:\Users\huber\Desktop\tbot\TV\utbot.json'. Reinitializing ut_bot DB.
2024-12-21T22:32:06.463Z error: Error in handleAlert: ReferenceError: logTpTrade is not defined
2024-12-21T22:57:06.662Z error: Error parsing ut_bot DB: Error: EPERM: operation not permitted, open 'C:\Users\huber\Desktop\tbot\TV\utbot.json'. Reinitializing ut_bot DB.
2024-12-21T22:57:06.690Z error: Error writing ut_bot DB: EPERM: operation not permitted, rename 'C:\Users\huber\Desktop\tbot\TV\utbot.json.tmp' -> 'C:\Users\huber\Desktop\tbot\TV\utbot.json'
2024-12-22T22:02:08.075Z error: Error writing ut_bot DB: ENOENT: no such file or directory, rename 'C:\Users\huber\Desktop\tbot\TV\utbot.json.tmp' -> 'C:\Users\huber\Desktop\tbot\TV\utbot.json'
2024-12-22T22:02:09.570Z error: Error writing eci_long DB: ENOENT: no such file or directory, rename 'C:\Users\huber\Desktop\tbot\TV\eci_long.json.tmp' -> 'C:\Users\huber\Desktop\tbot\TV\eci_long.json'
2024-12-22T22:02:09.577Z error: Error writing eci_long DB: ENOENT: no such file or directory, rename 'C:\Users\huber\Desktop\tbot\TV\eci_long.json.tmp' -> 'C:\Users\huber\Desktop\tbot\TV\eci_long.json'
2024-12-22T22:16:08.564Z error: Error writing ut_bot DB: ENOENT: no such file or directory, rename 'C:\Users\huber\Desktop\tbot\TV\utbot.json.tmp' -> 'C:\Users\huber\Desktop\tbot\TV\utbot.json'
2024-12-22T22:16:09.925Z error: Error writing eci_long DB: ENOENT: no such file or directory, lstat 'C:\Users\huber\Desktop\tbot\TV\eci_long.json.tmp'
2024-12-22T22:16:09.934Z error: Error reading global DB: C:\Users\huber\Desktop\tbot\TV\db.json: Unexpected end of JSON input
2024-12-22T23:02:07.908Z error: Error in handleAlert: ReferenceError: logTpTrade is not defined
2024-12-22T23:10:07.903Z error: Error reading eci_longA DB: C:\Users\huber\Desktop\tbot\TV\eci_longA.json: Unexpected end of JSON input
2024-12-22T23:10:07.907Z error: Error reading eci_longC DB: C:\Users\huber\Desktop\tbot\TV\eci_longC.json: Unexpected end of JSON input
2024-12-22T23:10:07.908Z error: Error reading eci_longD DB: C:\Users\huber\Desktop\tbot\TV\eci_longD.json: Unexpected end of JSON input
2024-12-22T23:10:07.917Z error: Błąd przy aktualizacji UI: easyStats is not defined
2024-12-22T23:11:08.316Z error: Błąd przy aktualizacji UI: easyStats is not defined
2024-12-22T23:14:08.571Z error: Error writing ut_bot DB: ENOENT: no such file or directory, rename 'C:\Users\huber\Desktop\tbot\TV\utbot.json.tmp' -> 'C:\Users\huber\Desktop\tbot\TV\utbot.json'
2024-12-22T23:14:08.587Z error: Błąd przy aktualizacji UI: easyStats is not defined
2024-12-22T23:14:08.590Z error: Błąd przy aktualizacji UI: easyStats is not defined
2024-12-23T00:14:53.852Z error: Błąd przy aktualizacji UI: easyStats is not defined
2024-12-23T00:24:21.065Z error: Błąd przy aktualizacji UI: easyStats is not defined
2024-12-23T00:33:01.074Z error: Błąd przy aktualizacji UI: easyStats is not defined
2024-12-23T00:41:21.457Z error: Błąd przy aktualizacji UI: easyStats is not defined
2024-12-23T00:43:24.601Z error: Błąd przy aktualizacji UI: easyStats is not defined
2024-12-23T01:16:52.184Z error: Błąd przy aktualizacji UI: easyStats is not defined
2024-12-23T01:17:24.830Z error: Błąd przy aktualizacji UI: easyStats is not defined
2024-12-23T01:18:49.732Z error: Błąd przy aktualizacji UI: easyStats is not defined
2024-12-23T01:21:43.209Z error: Błąd przy aktualizacji UI: easyStats is not defined
2024-12-23T01:23:31.521Z error: Błąd przy aktualizacji UI: easyStats is not defined
2024-12-23T01:25:52.075Z error: Błąd przy aktualizacji UI: easyStats is not defined
2024-12-23T01:26:48.247Z error: Błąd przy aktualizacji UI: easyStats is not defined
2024-12-23T01:28:35.529Z error: Błąd przy aktualizacji UI: easyStats is not defined
2024-12-23T01:28:47.218Z error: Błąd przy aktualizacji UI: easyStats is not defined
2024-12-23T01:29:59.570Z error: Błąd przy aktualizacji UI: easyStats is not defined
2024-12-23T01:36:58.263Z error: Error in monitorTradingView: ReferenceError: window is not defined
2024-12-23T01:37:27.833Z error: Error in monitorTradingView: ReferenceError: window is not defined
2024-12-23T01:39:17.987Z error: Error in monitorTradingView: ReferenceError: window is not defined
2024-12-23T01:40:13.726Z error: Error in monitorTradingView: ReferenceError: window is not defined
2024-12-23T13:13:31.666Z error: PAGE ERROR: ReferenceError: createEciDetailsWindow is not defined
2024-12-23T13:13:35.215Z error: PAGE ERROR: ReferenceError: createEciDetailsWindow is not defined
2024-12-23T13:52:53.470Z error: Error writing eci_long DB: ENOENT: no such file or directory, rename 'C:\Users\huber\Desktop\tbot\TV\eci_long.json.tmp' -> 'C:\Users\huber\Desktop\tbot\TV\eci_long.json'
2024-12-23T13:53:22.972Z error: Error reading global DB: C:\Users\huber\Desktop\tbot\TV\db.json: Unexpected end of JSON input
2024-12-23T13:56:53.012Z error: Error writing eci_long DB: Source and destination must not be the same.
2024-12-23T14:23:23.286Z error: PAGE ERROR: TypeError: Cannot set properties of null (setting 'innerText')
2024-12-23T14:42:37.143Z error: PAGE ERROR: TypeError: window.updateEasy_entryStats is not a function
2024-12-23T14:44:01.418Z error: PAGE ERROR: TypeError: window.updateEasy_entryStats is not a function
2024-12-23T14:44:01.455Z error: PAGE ERROR: TypeError: window.updateEasy_entryStats is not a function
2024-12-23T14:44:39.610Z error: PAGE ERROR: TypeError: window.updateEasy_entryStats is not a function
2024-12-23T14:44:39.644Z error: PAGE ERROR: TypeError: window.updateEasy_entryStats is not a function
2024-12-23T14:45:44.707Z error: PAGE ERROR: TypeError: window.updateEasy_entryStats is not a function
2024-12-23T14:45:44.735Z error: PAGE ERROR: TypeError: window.updateEasy_entryStats is not a function
2024-12-23T14:47:06.686Z error: PAGE ERROR: TypeError: window.updateEasy_entryStats is not a function
2024-12-23T14:47:06.733Z error: PAGE ERROR: TypeError: window.updateEasy_entryStats is not a function
2024-12-23T14:48:02.036Z error: PAGE ERROR: TypeError: window.updateEasy_entryStats is not a function
2024-12-23T14:48:02.078Z error: PAGE ERROR: TypeError: window.updateEasy_entryStats is not a function
2024-12-23T14:49:02.154Z error: PAGE ERROR: TypeError: window.updateEasy_entryStats is not a function
2024-12-23T14:49:02.180Z error: PAGE ERROR: TypeError: window.updateEasy_entryStats is not a function
2024-12-23T14:49:52.655Z error: PAGE ERROR: TypeError: window.updateEasy_entryStats is not a function
2024-12-23T14:49:52.681Z error: PAGE ERROR: TypeError: window.updateEasy_entryStats is not a function
2024-12-23T14:50:22.692Z error: PAGE ERROR: TypeError: window.updateEasy_entryStats is not a function
2024-12-23T14:50:22.719Z error: PAGE ERROR: TypeError: window.updateEasy_entryStats is not a function
2024-12-23T14:50:22.758Z error: PAGE ERROR: TypeError: window.updateEasy_entryStats is not a function
2024-12-23T14:50:22.782Z error: PAGE ERROR: TypeError: window.updateEasy_entryStats is not a function
2024-12-23T14:50:22.862Z error: PAGE ERROR: TypeError: window.updateEasy_entryStats is not a function
2024-12-23T14:50:22.889Z error: PAGE ERROR: TypeError: window.updateEasy_entryStats is not a function
2024-12-23T14:51:00.661Z error: PAGE ERROR: TypeError: window.updateEasy_entryStats is not a function
2024-12-23T14:51:00.708Z error: PAGE ERROR: TypeError: window.updateEasy_entryStats is not a function
2024-12-23T14:53:06.711Z error: PAGE ERROR: TypeError: window.updateEasy_entryStats is not a function
2024-12-23T14:53:06.739Z error: PAGE ERROR: TypeError: window.updateEasy_entryStats is not a function
2024-12-23T14:54:06.678Z error: PAGE ERROR: TypeError: window.updateEasy_entryStats is not a function
2024-12-23T14:54:06.723Z error: PAGE ERROR: TypeError: window.updateEasy_entryStats is not a function
2024-12-23T14:55:03.196Z error: PAGE ERROR: TypeError: window.updateEasy_entryStats is not a function
2024-12-23T14:55:03.228Z error: PAGE ERROR: TypeError: window.updateEasy_entryStats is not a function
2024-12-23T14:57:08.450Z error: PAGE ERROR: TypeError: window.updateEasy_entryStats is not a function
2024-12-23T14:57:08.477Z error: PAGE ERROR: TypeError: window.updateEasy_entryStats is not a function
2024-12-23T14:57:11.280Z error: PAGE ERROR: TypeError: window.updateEasy_entryStats is not a function
2024-12-23T14:57:11.304Z error: PAGE ERROR: TypeError: window.updateEasy_entryStats is not a function
2024-12-23T14:57:59.680Z error: PAGE ERROR: TypeError: window.updateEasy_entryStats is not a function
2024-12-23T14:57:59.703Z error: PAGE ERROR: TypeError: window.updateEasy_entryStats is not a function
2024-12-23T15:01:06.361Z error: PAGE ERROR: TypeError: window.updateEasy_entryStats is not a function
2024-12-23T15:01:06.387Z error: PAGE ERROR: TypeError: window.updateEasy_entryStats is not a function
2024-12-23T15:01:49.400Z error: PAGE ERROR: TypeError: window.updateEasy_entryStats is not a function
2024-12-23T15:01:49.427Z error: PAGE ERROR: TypeError: window.updateEasy_entryStats is not a function
2024-12-23T15:03:08.893Z error: PAGE ERROR: TypeError: window.updateEasy_entryStats is not a function
2024-12-23T15:03:08.956Z error: PAGE ERROR: TypeError: window.updateEasy_entryStats is not a function
2024-12-23T15:10:54.789Z error: PAGE ERROR: TypeError: window.updateEasy_entryStats is not a function
2024-12-23T15:10:54.818Z error: PAGE ERROR: TypeError: window.updateEasy_entryStats is not a function
2024-12-23T15:12:04.737Z error: PAGE ERROR: TypeError: window.updateEasy_entryStats is not a function
2024-12-23T15:12:04.762Z error: PAGE ERROR: TypeError: window.updateEasy_entryStats is not a function
2024-12-23T15:25:05.485Z error: PAGE ERROR: TypeError: window.updateEasy_entryStats is not a function
2024-12-23T15:25:05.519Z error: PAGE ERROR: TypeError: window.updateEasy_entryStats is not a function
2024-12-23T15:25:22.643Z error: PAGE ERROR: TypeError: window.updateEasy_entryStats is not a function
2024-12-23T15:25:22.668Z error: PAGE ERROR: TypeError: window.updateEasy_entryStats is not a function
2024-12-23T15:26:31.393Z error: PAGE ERROR: TypeError: window.updateEasy_entryStats is not a function
2024-12-23T15:26:31.420Z error: PAGE ERROR: TypeError: window.updateEasy_entryStats is not a function
2024-12-23T15:28:10.247Z error: PAGE ERROR: TypeError: window.updateEasy_entryStats is not a function
2024-12-23T15:28:10.278Z error: PAGE ERROR: TypeError: window.updateEasy_entryStats is not a function
2024-12-23T15:31:51.796Z error: PAGE ERROR: TypeError: window.updateEasy_entryStats is not a function
2024-12-23T15:31:51.821Z error: PAGE ERROR: TypeError: window.updateEasy_entryStats is not a function
2024-12-23T15:32:57.799Z error: PAGE ERROR: TypeError: window.updateEasy_entryStats is not a function
2024-12-23T15:32:57.839Z error: PAGE ERROR: TypeError: window.updateEasy_entryStats is not a function
2024-12-23T15:34:51.643Z error: PAGE ERROR: TypeError: window.updateEasy_entryStats is not a function
2024-12-23T15:34:51.667Z error: PAGE ERROR: TypeError: window.updateEasy_entryStats is not a function
2024-12-23T15:45:07.447Z error: PAGE ERROR: TypeError: window.updateEasy_entryStats is not a function