-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathinfo.log
More file actions
1912 lines (1912 loc) · 231 KB
/
info.log
File metadata and controls
1912 lines (1912 loc) · 231 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
2021-05-28 22:43:51,526 INFO :: Binance Future Client successfully initialized
2021-05-28 22:43:52,849 INFO :: Binance Websocket connection opened
2021-05-28 22:45:14,949 INFO :: Binance Future Client successfully initialized
2021-05-28 22:45:16,305 INFO :: Binance Websocket connection opened
2021-05-28 22:59:19,473 INFO :: Binance Future Client successfully initialized
2021-05-28 22:59:21,717 INFO :: Binance Websocket connection opened
2021-05-28 23:23:35,996 INFO :: Binance Future Client successfully initialized
2021-05-28 23:23:38,245 INFO :: Binance Websocket connection opened
2021-05-29 11:55:43,984 ERROR :: Binance connection error: [WinError 10054] An existing connection was forcibly closed by the remote host
2021-05-29 11:55:43,984 ERROR :: error from callback <bound method BinanceFutureClient._on_close of <connectors.binance_future.BinanceFutureClient object at 0x000001CBE97FDD60>>: _on_close() takes 2 positional arguments but 4 were given
2021-05-29 11:55:46,047 ERROR :: Binance connection error: [Errno 11001] getaddrinfo failed
2021-05-29 11:55:46,047 ERROR :: error from callback <bound method BinanceFutureClient._on_close of <connectors.binance_future.BinanceFutureClient object at 0x000001CBE97FDD60>>: _on_close() takes 2 positional arguments but 4 were given
2021-05-29 11:55:48,828 INFO :: Binance Websocket connection opened
2021-05-29 13:18:41,557 INFO :: Binance Future Client successfully initialized
2021-05-29 13:18:47,610 INFO :: Binance Websocket connection opened
2021-05-29 13:18:47,915 ERROR :: Binance connection error: Invalid close opcode.
2021-05-29 13:18:47,915 ERROR :: error from callback <bound method BinanceFutureClient._on_close of <connectors.binance_future.BinanceFutureClient object at 0x0000021055D41850>>: _on_close() takes 2 positional arguments but 4 were given
2021-05-29 13:18:53,137 INFO :: Binance Websocket connection opened
2021-05-29 13:18:53,535 ERROR :: Binance connection error: Invalid close opcode.
2021-05-29 13:18:53,535 ERROR :: error from callback <bound method BinanceFutureClient._on_close of <connectors.binance_future.BinanceFutureClient object at 0x0000021055D41850>>: _on_close() takes 2 positional arguments but 4 were given
2021-05-29 13:18:56,916 INFO :: Binance Websocket connection opened
2021-05-29 13:18:57,235 ERROR :: Binance connection error: Invalid close opcode.
2021-05-29 13:18:57,237 ERROR :: error from callback <bound method BinanceFutureClient._on_close of <connectors.binance_future.BinanceFutureClient object at 0x0000021055D41850>>: _on_close() takes 2 positional arguments but 4 were given
2021-05-29 13:19:01,433 INFO :: Binance Websocket connection opened
2021-05-29 13:23:26,660 INFO :: Binance Future Client successfully initialized
2021-05-29 13:23:27,975 INFO :: Binance Websocket connection opened
2021-05-29 13:24:19,081 INFO :: Binance Future Client successfully initialized
2021-05-29 13:24:20,404 INFO :: Binance Websocket connection opened
2021-05-29 13:26:22,579 INFO :: Binance Future Client successfully initialized
2021-05-29 13:26:24,002 INFO :: Binance Websocket connection opened
2021-05-29 13:27:04,281 ERROR :: error from callback <bound method BinanceFutureClient._on_message of <connectors.binance_future.BinanceFutureClient object at 0x0000018A50D841F0>>: unbound method dict.items() needs an argument
2021-05-29 13:27:05,618 ERROR :: error from callback <bound method BinanceFutureClient._on_message of <connectors.binance_future.BinanceFutureClient object at 0x0000018A50D841F0>>: unbound method dict.items() needs an argument
2021-05-29 13:27:09,613 ERROR :: error from callback <bound method BinanceFutureClient._on_message of <connectors.binance_future.BinanceFutureClient object at 0x0000018A50D841F0>>: unbound method dict.items() needs an argument
2021-05-29 13:27:09,761 ERROR :: error from callback <bound method BinanceFutureClient._on_message of <connectors.binance_future.BinanceFutureClient object at 0x0000018A50D841F0>>: unbound method dict.items() needs an argument
2021-05-29 13:27:15,516 ERROR :: error from callback <bound method BinanceFutureClient._on_message of <connectors.binance_future.BinanceFutureClient object at 0x0000018A50D841F0>>: unbound method dict.items() needs an argument
2021-05-29 13:27:19,508 ERROR :: error from callback <bound method BinanceFutureClient._on_message of <connectors.binance_future.BinanceFutureClient object at 0x0000018A50D841F0>>: unbound method dict.items() needs an argument
2021-05-29 13:27:19,664 ERROR :: error from callback <bound method BinanceFutureClient._on_message of <connectors.binance_future.BinanceFutureClient object at 0x0000018A50D841F0>>: unbound method dict.items() needs an argument
2021-05-29 13:27:29,555 ERROR :: error from callback <bound method BinanceFutureClient._on_message of <connectors.binance_future.BinanceFutureClient object at 0x0000018A50D841F0>>: unbound method dict.items() needs an argument
2021-05-29 13:28:02,408 ERROR :: error from callback <bound method BinanceFutureClient._on_message of <connectors.binance_future.BinanceFutureClient object at 0x0000018A50D841F0>>: unbound method dict.items() needs an argument
2021-05-29 13:28:13,402 ERROR :: error from callback <bound method BinanceFutureClient._on_message of <connectors.binance_future.BinanceFutureClient object at 0x0000018A50D841F0>>: unbound method dict.items() needs an argument
2021-05-29 13:28:13,571 ERROR :: error from callback <bound method BinanceFutureClient._on_message of <connectors.binance_future.BinanceFutureClient object at 0x0000018A50D841F0>>: unbound method dict.items() needs an argument
2021-05-29 13:28:15,665 ERROR :: error from callback <bound method BinanceFutureClient._on_message of <connectors.binance_future.BinanceFutureClient object at 0x0000018A50D841F0>>: unbound method dict.items() needs an argument
2021-05-29 13:28:17,718 ERROR :: error from callback <bound method BinanceFutureClient._on_message of <connectors.binance_future.BinanceFutureClient object at 0x0000018A50D841F0>>: unbound method dict.items() needs an argument
2021-05-29 13:28:19,283 ERROR :: error from callback <bound method BinanceFutureClient._on_message of <connectors.binance_future.BinanceFutureClient object at 0x0000018A50D841F0>>: unbound method dict.items() needs an argument
2021-05-29 13:28:21,363 ERROR :: error from callback <bound method BinanceFutureClient._on_message of <connectors.binance_future.BinanceFutureClient object at 0x0000018A50D841F0>>: unbound method dict.items() needs an argument
2021-05-29 13:28:25,518 ERROR :: error from callback <bound method BinanceFutureClient._on_message of <connectors.binance_future.BinanceFutureClient object at 0x0000018A50D841F0>>: unbound method dict.items() needs an argument
2021-05-29 13:28:29,745 ERROR :: error from callback <bound method BinanceFutureClient._on_message of <connectors.binance_future.BinanceFutureClient object at 0x0000018A50D841F0>>: unbound method dict.items() needs an argument
2021-05-29 13:28:41,831 ERROR :: error from callback <bound method BinanceFutureClient._on_message of <connectors.binance_future.BinanceFutureClient object at 0x0000018A50D841F0>>: unbound method dict.items() needs an argument
2021-05-29 13:28:43,775 ERROR :: error from callback <bound method BinanceFutureClient._on_message of <connectors.binance_future.BinanceFutureClient object at 0x0000018A50D841F0>>: unbound method dict.items() needs an argument
2021-05-29 13:28:49,308 ERROR :: error from callback <bound method BinanceFutureClient._on_message of <connectors.binance_future.BinanceFutureClient object at 0x0000018A50D841F0>>: unbound method dict.items() needs an argument
2021-05-29 13:28:49,436 ERROR :: error from callback <bound method BinanceFutureClient._on_message of <connectors.binance_future.BinanceFutureClient object at 0x0000018A50D841F0>>: unbound method dict.items() needs an argument
2021-05-29 13:28:55,522 ERROR :: error from callback <bound method BinanceFutureClient._on_message of <connectors.binance_future.BinanceFutureClient object at 0x0000018A50D841F0>>: unbound method dict.items() needs an argument
2021-05-29 13:28:55,653 ERROR :: error from callback <bound method BinanceFutureClient._on_message of <connectors.binance_future.BinanceFutureClient object at 0x0000018A50D841F0>>: unbound method dict.items() needs an argument
2021-05-29 13:29:02,112 ERROR :: error from callback <bound method BinanceFutureClient._on_message of <connectors.binance_future.BinanceFutureClient object at 0x0000018A50D841F0>>: unbound method dict.items() needs an argument
2021-05-29 13:29:05,477 ERROR :: error from callback <bound method BinanceFutureClient._on_message of <connectors.binance_future.BinanceFutureClient object at 0x0000018A50D841F0>>: unbound method dict.items() needs an argument
2021-05-29 13:29:20,016 ERROR :: error from callback <bound method BinanceFutureClient._on_message of <connectors.binance_future.BinanceFutureClient object at 0x0000018A50D841F0>>: unbound method dict.items() needs an argument
2021-05-29 13:29:21,461 ERROR :: error from callback <bound method BinanceFutureClient._on_message of <connectors.binance_future.BinanceFutureClient object at 0x0000018A50D841F0>>: unbound method dict.items() needs an argument
2021-05-29 13:29:21,580 ERROR :: error from callback <bound method BinanceFutureClient._on_message of <connectors.binance_future.BinanceFutureClient object at 0x0000018A50D841F0>>: unbound method dict.items() needs an argument
2021-05-29 13:29:32,937 INFO :: Binance Future Client successfully initialized
2021-05-29 13:29:34,348 INFO :: Binance Websocket connection opened
2021-05-29 13:30:24,224 ERROR :: error from callback <bound method BinanceFutureClient._on_message of <connectors.binance_future.BinanceFutureClient object at 0x0000014FF4AE40D0>>: unbound method dict.items() needs an argument
2021-05-29 13:30:24,224 ERROR :: error from callback <bound method BinanceFutureClient._on_message of <connectors.binance_future.BinanceFutureClient object at 0x0000014FF4AE40D0>>: unbound method dict.items() needs an argument
2021-05-29 13:30:24,224 ERROR :: error from callback <bound method BinanceFutureClient._on_message of <connectors.binance_future.BinanceFutureClient object at 0x0000014FF4AE40D0>>: unbound method dict.items() needs an argument
2021-05-29 13:30:27,506 ERROR :: error from callback <bound method BinanceFutureClient._on_message of <connectors.binance_future.BinanceFutureClient object at 0x0000014FF4AE40D0>>: unbound method dict.items() needs an argument
2021-05-29 13:30:31,728 ERROR :: error from callback <bound method BinanceFutureClient._on_message of <connectors.binance_future.BinanceFutureClient object at 0x0000014FF4AE40D0>>: unbound method dict.items() needs an argument
2021-05-29 13:30:45,831 ERROR :: error from callback <bound method BinanceFutureClient._on_message of <connectors.binance_future.BinanceFutureClient object at 0x0000014FF4AE40D0>>: unbound method dict.items() needs an argument
2021-05-29 13:33:11,770 INFO :: Binance Future Client successfully initialized
2021-05-29 13:33:13,190 INFO :: Binance Websocket connection opened
2021-05-29 13:33:45,736 ERROR :: error from callback <bound method BinanceFutureClient._on_message of <connectors.binance_future.BinanceFutureClient object at 0x000002BC5F9C6100>>: unbound method dict.items() needs an argument
2021-05-29 13:34:18,346 INFO :: Binance Future Client successfully initialized
2021-05-29 13:34:20,466 INFO :: Binance Websocket connection opened
2021-05-29 15:13:53,271 ERROR :: Connection error while making GET request to /fapi/v1/exchangeInfo: HTTPSConnectionPool(host='testnet.binancefuture.com', port=443): Max retries exceeded with url: /fapi/v1/exchangeInfo (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x000001A968FEE7F0>: Failed to establish a new connection: [Errno 11001] getaddrinfo failed'))
2021-05-29 15:13:53,273 ERROR :: Connection error while making GET request to /fapi/v2/account: HTTPSConnectionPool(host='testnet.binancefuture.com', port=443): Max retries exceeded with url: /fapi/v2/account?timestamp=1622281433271&signature=1ae0d313f44a1d7a32c7ba115f222feb54459b786e6153fe16e79bbebc602b48 (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x000001A968FEED90>: Failed to establish a new connection: [Errno 11001] getaddrinfo failed'))
2021-05-29 15:13:53,274 INFO :: Binance Future Client successfully initialized
2021-05-29 15:13:53,275 ERROR :: Binance connection error: [Errno 11001] getaddrinfo failed
2021-05-29 15:13:53,342 ERROR :: error from callback <bound method BinanceFutureClient._on_close of <connectors.binance_future.BinanceFutureClient object at 0x000001A9690067F0>>: _on_close() takes 2 positional arguments but 4 were given
2021-05-29 15:13:55,353 ERROR :: Binance connection error: [Errno 11001] getaddrinfo failed
2021-05-29 15:13:55,353 ERROR :: error from callback <bound method BinanceFutureClient._on_close of <connectors.binance_future.BinanceFutureClient object at 0x000001A9690067F0>>: _on_close() takes 2 positional arguments but 4 were given
2021-05-29 15:13:57,358 ERROR :: Binance connection error: [Errno 11001] getaddrinfo failed
2021-05-29 15:13:57,358 ERROR :: error from callback <bound method BinanceFutureClient._on_close of <connectors.binance_future.BinanceFutureClient object at 0x000001A9690067F0>>: _on_close() takes 2 positional arguments but 4 were given
2021-05-29 15:13:59,359 ERROR :: Binance connection error: [Errno 11001] getaddrinfo failed
2021-05-29 15:13:59,360 ERROR :: error from callback <bound method BinanceFutureClient._on_close of <connectors.binance_future.BinanceFutureClient object at 0x000001A9690067F0>>: _on_close() takes 2 positional arguments but 4 were given
2021-05-29 15:14:01,373 ERROR :: Binance connection error: [Errno 11001] getaddrinfo failed
2021-05-29 15:14:01,374 ERROR :: error from callback <bound method BinanceFutureClient._on_close of <connectors.binance_future.BinanceFutureClient object at 0x000001A9690067F0>>: _on_close() takes 2 positional arguments but 4 were given
2021-05-29 15:14:03,379 ERROR :: Binance connection error: [Errno 11001] getaddrinfo failed
2021-05-29 15:14:03,379 ERROR :: error from callback <bound method BinanceFutureClient._on_close of <connectors.binance_future.BinanceFutureClient object at 0x000001A9690067F0>>: _on_close() takes 2 positional arguments but 4 were given
2021-05-29 15:14:31,542 INFO :: Binance Future Client successfully initialized
2021-05-29 15:14:32,264 INFO :: Binance Websocket connection opened
2021-05-29 15:14:49,608 INFO :: Binance Futures current USDT balance = 10003.00005919, trade size = 0.003
2021-05-29 15:14:49,608 INFO :: short signal on BTCUSDT 5m
2021-05-29 15:14:50,173 INFO :: Sell order placed on Binance | Status: new
2021-05-29 15:14:52,750 INFO :: Binance Order Status: filled
2021-05-29 15:15:03,298 INFO :: Binance New candle for BTCUSDT 5m
2021-05-29 15:20:02,446 INFO :: Binance New candle for BTCUSDT 5m
2021-05-29 15:24:58,226 WARNING :: Binance BTCUSDT: 2408 milliseconds of difference between current time and the trade time
2021-05-29 15:25:05,091 INFO :: Binance New candle for BTCUSDT 5m
2021-05-29 15:30:00,173 INFO :: Binance New candle for BTCUSDT 5m
2021-05-29 15:35:01,655 INFO :: Binance New candle for BTCUSDT 5m
2021-05-29 15:40:00,082 INFO :: Binance New candle for BTCUSDT 5m
2021-05-29 15:45:04,222 INFO :: Binance New candle for BTCUSDT 5m
2021-05-29 15:46:27,842 INFO :: Binance Futures current USDT balance = 10002.9021276, trade size = 0.003
2021-05-29 15:46:27,843 INFO :: short signal on BTCUSDT 15m
2021-05-29 15:46:28,551 INFO :: Sell order placed on Binance | Status: new
2021-05-29 15:46:30,878 INFO :: Binance Order Status: filled
2021-05-29 15:46:43,920 INFO :: Binance Future Client successfully initialized
2021-05-29 15:46:44,775 INFO :: Binance Websocket connection opened
2021-05-29 15:48:48,734 INFO :: Binance Futures current USDT balance = 10002.80419601, trade size = 0.003
2021-05-29 15:48:48,734 INFO :: Short signal on BTCUSDT 5m
2021-05-29 15:48:49,265 INFO :: Sell order placed on Binance | Status: new
2021-05-29 15:48:51,785 INFO :: Binance Order Status: filled
2021-05-29 15:49:36,372 INFO :: Binance Future Client successfully initialized
2021-05-29 15:49:37,372 INFO :: Binance Websocket connection opened
2021-05-29 15:49:57,241 INFO :: Binance Futures current USDT balance = 10002.70386346, trade size = 0.003
2021-05-29 15:49:57,241 INFO :: Short signal on BTCUSDT 30m
2021-05-29 15:49:58,263 INFO :: Sell order placed on Binance | Status: new
2021-05-29 15:50:00,794 INFO :: Binance Order Status: filled
2021-05-29 15:50:30,711 INFO :: Binance Future Client successfully initialized
2021-05-29 15:50:31,533 INFO :: Binance Websocket connection opened
2021-05-29 15:51:04,418 INFO :: Binance Futures current USDT balance = 10002.60353091, trade size = 0.003
2021-05-29 15:51:04,418 INFO :: Short signal on BTCUSDT 30m
2021-05-29 15:51:04,736 INFO :: Sell order placed on Binance | Status: new
2021-05-29 15:51:07,329 INFO :: Binance Order Status: filled
2021-05-29 15:54:29,829 INFO :: Binance Future Client successfully initialized
2021-05-29 15:54:30,748 INFO :: Binance Websocket connection opened
2021-05-29 15:55:05,940 INFO :: Binance Futures current USDT balance = 10002.50719804, trade size = 0.003
2021-05-29 15:55:05,940 INFO :: Short signal on BTCUSDT 30m
2021-05-29 15:55:06,693 INFO :: Sell order placed on Binance | Status: new
2021-05-29 15:55:09,732 INFO :: Binance Order Status: filled
2021-05-29 15:56:48,483 INFO :: Binance Future Client successfully initialized
2021-05-29 15:56:49,287 INFO :: Binance Websocket connection opened
2021-05-29 15:57:09,370 INFO :: Binance New candle for BTCUSDT 1m
2021-05-29 15:57:09,986 INFO :: Binance Futures current USDT balance = 10002.41166549, trade size = 0.003
2021-05-29 15:57:09,986 INFO :: Short signal on BTCUSDT 1m
2021-05-29 15:57:10,647 INFO :: Sell order placed on Binance | Status: new
2021-05-29 15:57:13,227 INFO :: Binance Order Status: filled
2021-05-29 15:57:58,594 INFO :: Binance Future Client successfully initialized
2021-05-29 15:57:59,539 INFO :: Binance Websocket connection opened
2021-05-29 15:58:31,809 INFO :: Binance Futures current USDT balance = 10002.31373198, trade size = 0.003
2021-05-29 15:58:31,809 INFO :: Short signal on BTCUSDT 1m
2021-05-29 15:58:32,356 INFO :: Sell order placed on Binance | Status: new
2021-05-29 15:58:35,076 INFO :: Binance Order Status: filled
2021-05-29 16:00:51,899 INFO :: Binance Future Client successfully initialized
2021-05-29 16:00:52,751 INFO :: Binance Websocket connection opened
2021-05-29 16:01:30,279 INFO :: Binance Futures current USDT balance = 10002.21819943, trade size = 0.003
2021-05-29 16:01:30,280 INFO :: Short signal on BTCUSDT 30m
2021-05-29 16:01:30,807 INFO :: Sell order placed on Binance | Status: new
2021-05-29 16:01:33,337 INFO :: Binance Order Status: filled
2021-05-29 16:09:56,581 WARNING :: Binance BTCUSDT: 12726 milliseconds of difference between current time and the trade time
2021-05-29 16:09:56,595 WARNING :: Binance BTCUSDT: 10673 milliseconds of difference between current time and the trade time
2021-05-29 16:09:56,603 WARNING :: Binance BTCUSDT: 9006 milliseconds of difference between current time and the trade time
2021-05-29 16:10:00,048 WARNING :: Binance BTCUSDT: 8432 milliseconds of difference between current time and the trade time
2021-05-29 16:10:00,192 WARNING :: Binance BTCUSDT: 6501 milliseconds of difference between current time and the trade time
2021-05-29 16:15:24,140 INFO :: Binance Future Client successfully initialized
2021-05-29 16:15:25,053 INFO :: Binance Websocket connection opened
2021-05-29 16:17:29,886 INFO :: Binance Futures current USDT balance = 10002.12026592, trade size = 0.003
2021-05-29 16:17:29,887 INFO :: Short signal on BTCUSDT 5m
2021-05-29 16:17:30,218 INFO :: Sell order placed on Binance | Status: new
2021-05-29 16:17:32,693 INFO :: Binance Order Status: filled
2021-05-29 16:17:41,238 ERROR :: error from callback <bound method BinanceFutureClient._on_message of <connectors.binance_future.BinanceFutureClient object at 0x000001ED9BB9D220>>: unsupported operand type(s) for /: 'str' and 'int'
2021-05-29 16:18:07,464 ERROR :: error from callback <bound method BinanceFutureClient._on_message of <connectors.binance_future.BinanceFutureClient object at 0x000001ED9BB9D220>>: unsupported operand type(s) for /: 'str' and 'int'
2021-05-29 16:18:09,526 ERROR :: error from callback <bound method BinanceFutureClient._on_message of <connectors.binance_future.BinanceFutureClient object at 0x000001ED9BB9D220>>: unsupported operand type(s) for /: 'str' and 'int'
2021-05-29 16:18:15,669 ERROR :: error from callback <bound method BinanceFutureClient._on_message of <connectors.binance_future.BinanceFutureClient object at 0x000001ED9BB9D220>>: unsupported operand type(s) for /: 'str' and 'int'
2021-05-29 16:18:33,967 ERROR :: error from callback <bound method BinanceFutureClient._on_message of <connectors.binance_future.BinanceFutureClient object at 0x000001ED9BB9D220>>: unsupported operand type(s) for /: 'str' and 'int'
2021-05-29 16:18:35,960 ERROR :: error from callback <bound method BinanceFutureClient._on_message of <connectors.binance_future.BinanceFutureClient object at 0x000001ED9BB9D220>>: unsupported operand type(s) for /: 'str' and 'int'
2021-05-29 16:18:39,372 ERROR :: error from callback <bound method BinanceFutureClient._on_message of <connectors.binance_future.BinanceFutureClient object at 0x000001ED9BB9D220>>: unsupported operand type(s) for /: 'str' and 'int'
2021-05-29 16:18:43,697 ERROR :: error from callback <bound method BinanceFutureClient._on_message of <connectors.binance_future.BinanceFutureClient object at 0x000001ED9BB9D220>>: unsupported operand type(s) for /: 'str' and 'int'
2021-05-29 16:18:45,544 ERROR :: error from callback <bound method BinanceFutureClient._on_message of <connectors.binance_future.BinanceFutureClient object at 0x000001ED9BB9D220>>: unsupported operand type(s) for /: 'str' and 'int'
2021-05-29 16:18:57,211 ERROR :: error from callback <bound method BinanceFutureClient._on_message of <connectors.binance_future.BinanceFutureClient object at 0x000001ED9BB9D220>>: unsupported operand type(s) for /: 'str' and 'int'
2021-05-29 16:18:57,357 ERROR :: error from callback <bound method BinanceFutureClient._on_message of <connectors.binance_future.BinanceFutureClient object at 0x000001ED9BB9D220>>: unsupported operand type(s) for /: 'str' and 'int'
2021-05-29 16:19:01,469 ERROR :: error from callback <bound method BinanceFutureClient._on_message of <connectors.binance_future.BinanceFutureClient object at 0x000001ED9BB9D220>>: unsupported operand type(s) for /: 'str' and 'int'
2021-05-29 16:19:01,847 ERROR :: error from callback <bound method BinanceFutureClient._on_message of <connectors.binance_future.BinanceFutureClient object at 0x000001ED9BB9D220>>: unsupported operand type(s) for /: 'str' and 'int'
2021-05-29 16:19:19,941 ERROR :: error from callback <bound method BinanceFutureClient._on_message of <connectors.binance_future.BinanceFutureClient object at 0x000001ED9BB9D220>>: unsupported operand type(s) for /: 'str' and 'int'
2021-05-29 16:19:21,539 ERROR :: error from callback <bound method BinanceFutureClient._on_message of <connectors.binance_future.BinanceFutureClient object at 0x000001ED9BB9D220>>: unsupported operand type(s) for /: 'str' and 'int'
2021-05-29 16:19:25,193 ERROR :: error from callback <bound method BinanceFutureClient._on_message of <connectors.binance_future.BinanceFutureClient object at 0x000001ED9BB9D220>>: unsupported operand type(s) for /: 'str' and 'int'
2021-05-29 16:19:31,328 ERROR :: error from callback <bound method BinanceFutureClient._on_message of <connectors.binance_future.BinanceFutureClient object at 0x000001ED9BB9D220>>: unsupported operand type(s) for /: 'str' and 'int'
2021-05-29 16:19:56,770 ERROR :: error from callback <bound method BinanceFutureClient._on_message of <connectors.binance_future.BinanceFutureClient object at 0x000001ED9BB9D220>>: unsupported operand type(s) for /: 'str' and 'int'
2021-05-29 16:19:56,912 ERROR :: error from callback <bound method BinanceFutureClient._on_message of <connectors.binance_future.BinanceFutureClient object at 0x000001ED9BB9D220>>: unsupported operand type(s) for /: 'str' and 'int'
2021-05-29 16:20:02,025 INFO :: Binance New candle for BTCUSDT 5m
2021-05-29 16:20:03,259 ERROR :: error from callback <bound method BinanceFutureClient._on_message of <connectors.binance_future.BinanceFutureClient object at 0x000001ED9BB9D220>>: unsupported operand type(s) for /: 'str' and 'int'
2021-05-29 16:20:13,205 INFO :: Binance Future Client successfully initialized
2021-05-29 16:20:14,204 INFO :: Binance Websocket connection opened
2021-05-29 16:20:51,868 INFO :: Binance Futures current USDT balance = 10002.02233433, trade size = 0.003
2021-05-29 16:20:51,868 INFO :: Short signal on BTCUSDT 5m
2021-05-29 16:20:52,202 INFO :: Sell order placed on Binance | Status: new
2021-05-29 16:20:54,515 INFO :: Binance Order Status: filled
2021-05-29 16:21:01,506 ERROR :: error from callback <bound method BinanceFutureClient._on_message of <connectors.binance_future.BinanceFutureClient object at 0x000001F8EC8DD190>>: unsupported operand type(s) for /: 'str' and 'int'
2021-05-29 16:21:03,560 ERROR :: error from callback <bound method BinanceFutureClient._on_message of <connectors.binance_future.BinanceFutureClient object at 0x000001F8EC8DD190>>: unsupported operand type(s) for /: 'str' and 'int'
2021-05-29 16:21:11,552 ERROR :: error from callback <bound method BinanceFutureClient._on_message of <connectors.binance_future.BinanceFutureClient object at 0x000001F8EC8DD190>>: unsupported operand type(s) for /: 'str' and 'int'
2021-05-29 16:21:13,414 ERROR :: error from callback <bound method BinanceFutureClient._on_message of <connectors.binance_future.BinanceFutureClient object at 0x000001F8EC8DD190>>: unsupported operand type(s) for /: 'str' and 'int'
2021-05-29 16:21:17,495 ERROR :: error from callback <bound method BinanceFutureClient._on_message of <connectors.binance_future.BinanceFutureClient object at 0x000001F8EC8DD190>>: unsupported operand type(s) for /: 'str' and 'int'
2021-05-29 16:21:17,647 ERROR :: error from callback <bound method BinanceFutureClient._on_message of <connectors.binance_future.BinanceFutureClient object at 0x000001F8EC8DD190>>: unsupported operand type(s) for /: 'str' and 'int'
2021-05-29 16:21:19,218 ERROR :: error from callback <bound method BinanceFutureClient._on_message of <connectors.binance_future.BinanceFutureClient object at 0x000001F8EC8DD190>>: unsupported operand type(s) for /: 'str' and 'int'
2021-05-29 16:21:21,282 ERROR :: error from callback <bound method BinanceFutureClient._on_message of <connectors.binance_future.BinanceFutureClient object at 0x000001F8EC8DD190>>: unsupported operand type(s) for /: 'str' and 'int'
2021-05-29 16:21:22,514 ERROR :: error from callback <bound method BinanceFutureClient._on_message of <connectors.binance_future.BinanceFutureClient object at 0x000001F8EC8DD190>>: unsupported operand type(s) for /: 'str' and 'int'
2021-05-29 16:21:25,413 ERROR :: error from callback <bound method BinanceFutureClient._on_message of <connectors.binance_future.BinanceFutureClient object at 0x000001F8EC8DD190>>: unsupported operand type(s) for /: 'str' and 'int'
2021-05-29 16:21:29,378 ERROR :: error from callback <bound method BinanceFutureClient._on_message of <connectors.binance_future.BinanceFutureClient object at 0x000001F8EC8DD190>>: unsupported operand type(s) for /: 'str' and 'int'
2021-05-29 16:21:29,378 ERROR :: error from callback <bound method BinanceFutureClient._on_message of <connectors.binance_future.BinanceFutureClient object at 0x000001F8EC8DD190>>: unsupported operand type(s) for /: 'str' and 'int'
2021-05-29 16:21:29,378 ERROR :: error from callback <bound method BinanceFutureClient._on_message of <connectors.binance_future.BinanceFutureClient object at 0x000001F8EC8DD190>>: unsupported operand type(s) for /: 'str' and 'int'
2021-05-29 16:21:29,518 ERROR :: error from callback <bound method BinanceFutureClient._on_message of <connectors.binance_future.BinanceFutureClient object at 0x000001F8EC8DD190>>: unsupported operand type(s) for /: 'str' and 'int'
2021-05-29 16:21:33,658 ERROR :: error from callback <bound method BinanceFutureClient._on_message of <connectors.binance_future.BinanceFutureClient object at 0x000001F8EC8DD190>>: unsupported operand type(s) for /: 'str' and 'int'
2021-05-29 16:24:41,069 INFO :: Binance Future Client successfully initialized
2021-05-29 16:24:41,986 INFO :: Binance Websocket connection opened
2021-05-29 16:25:11,262 INFO :: Binance Futures current USDT balance = 10001.97458498, trade size = 0.033
2021-05-29 16:25:11,262 INFO :: Short signal on ETHUSDT 5m
2021-05-29 16:25:11,605 INFO :: Sell order placed on Binance | Status: new
2021-05-29 16:25:14,044 INFO :: Binance Order Status: filled
2021-05-29 16:26:37,608 INFO :: Binance Future Client successfully initialized
2021-05-29 16:26:38,520 INFO :: Binance Websocket connection opened
2021-05-29 16:27:10,080 INFO :: Binance Futures current USDT balance = 10001.93510365, trade size = 0.003
2021-05-29 16:27:10,080 INFO :: Short signal on BTCUSDT 1m
2021-05-29 16:27:10,677 INFO :: Sell order placed on Binance | Status: new
2021-05-29 16:27:13,036 INFO :: Binance Order Status: filled
2021-05-29 16:28:11,094 INFO :: Binance Future Client successfully initialized
2021-05-29 16:28:11,906 INFO :: Binance Websocket connection opened
2021-05-29 16:29:02,452 INFO :: Binance New candle for BTCUSDT 1m
2021-05-29 16:29:02,751 INFO :: Binance Futures current USDT balance = 10001.74222637, trade size = 0.003
2021-05-29 16:29:02,751 INFO :: Short signal on BTCUSDT 1m
2021-05-29 16:29:03,079 INFO :: Sell order placed on Binance | Status: new
2021-05-29 16:29:05,381 INFO :: Binance Order Status: filled
2021-05-29 16:29:19,404 ERROR :: error from callback <bound method BinanceFutureClient._on_message of <connectors.binance_future.BinanceFutureClient object at 0x00000116E969D220>>: unsupported operand type(s) for /: 'str' and 'int'
2021-05-29 16:29:23,537 ERROR :: error from callback <bound method BinanceFutureClient._on_message of <connectors.binance_future.BinanceFutureClient object at 0x00000116E969D220>>: unsupported operand type(s) for /: 'str' and 'int'
2021-05-29 16:29:27,776 ERROR :: error from callback <bound method BinanceFutureClient._on_message of <connectors.binance_future.BinanceFutureClient object at 0x00000116E969D220>>: unsupported operand type(s) for /: 'str' and 'int'
2021-05-29 16:29:29,408 ERROR :: error from callback <bound method BinanceFutureClient._on_message of <connectors.binance_future.BinanceFutureClient object at 0x00000116E969D220>>: unsupported operand type(s) for /: 'str' and 'int'
2021-05-29 16:32:46,511 INFO :: Binance Future Client successfully initialized
2021-05-29 16:32:47,315 INFO :: Binance Websocket connection opened
2021-05-29 16:33:17,879 INFO :: Binance Futures current USDT balance = 10001.64669382, trade size = 0.003
2021-05-29 16:33:17,879 INFO :: Short signal on BTCUSDT 1m
2021-05-29 16:33:18,806 INFO :: Sell order placed on Binance | Status: new
2021-05-29 16:33:21,248 INFO :: Binance Order Status: filled
2021-05-29 16:33:39,459 ERROR :: error from callback <bound method BinanceFutureClient._on_message of <connectors.binance_future.BinanceFutureClient object at 0x0000026E254BD220>>: unsupported operand type(s) for /: 'str' and 'int'
2021-05-29 16:33:41,550 ERROR :: error from callback <bound method BinanceFutureClient._on_message of <connectors.binance_future.BinanceFutureClient object at 0x0000026E254BD220>>: unsupported operand type(s) for /: 'str' and 'int'
2021-05-29 16:33:41,688 ERROR :: error from callback <bound method BinanceFutureClient._on_message of <connectors.binance_future.BinanceFutureClient object at 0x0000026E254BD220>>: unsupported operand type(s) for /: 'str' and 'int'
2021-05-29 16:35:49,444 INFO :: Binance Future Client successfully initialized
2021-05-29 16:35:50,349 INFO :: Binance Websocket connection opened
2021-05-29 16:36:04,390 INFO :: Binance Future Client successfully initialized
2021-05-29 16:36:05,268 INFO :: Binance Websocket connection opened
2021-05-29 16:36:33,914 INFO :: Binance Futures current USDT balance = 10001.54636127, trade size = 0.003
2021-05-29 16:36:33,915 INFO :: Short signal on BTCUSDT 15m
2021-05-29 16:36:34,428 INFO :: Sell order placed on Binance | Status: new
2021-05-29 16:36:37,081 INFO :: Binance Order Status: filled
2021-05-29 16:38:14,403 INFO :: Binance Futures current USDT balance = 10001.49861, trade size = 0.003
2021-05-29 16:38:14,403 INFO :: Short signal on BTCUSDT 1m
2021-05-29 16:38:14,997 INFO :: Sell order placed on Binance | Status: new
2021-05-29 16:38:17,299 INFO :: Binance Order Status: filled
2021-05-29 16:39:04,623 INFO :: Binance New candle for BTCUSDT 1m
2021-05-29 16:40:11,381 INFO :: Binance New candle for BTCUSDT 1m
2021-05-29 16:40:59,234 INFO :: Binance Futures current USDT balance = 10001.45085873, trade size = 0.033
2021-05-29 16:40:59,234 INFO :: Short signal on ETHUSDT 15m
2021-05-29 16:40:59,793 INFO :: Sell order placed on Binance | Status: new
2021-05-29 16:41:01,684 INFO :: Binance New candle for BTCUSDT 1m
2021-05-29 16:41:02,110 INFO :: Binance Order Status: filled
2021-05-29 16:41:04,676 INFO :: Stop loss for ETHUSDT 15m
2021-05-29 16:41:04,971 ERROR :: Error while making POST request to /fapi/v1/order: {'code': -1117, 'msg': 'Invalid side.'}(error code 400)
2021-05-29 16:41:24,505 INFO :: Stop loss for ETHUSDT 15m
2021-05-29 16:41:25,194 ERROR :: Error while making POST request to /fapi/v1/order: {'code': -1117, 'msg': 'Invalid side.'}(error code 400)
2021-05-29 16:41:25,194 INFO :: Take profit for ETHUSDT 15m
2021-05-29 16:41:25,664 ERROR :: Error while making POST request to /fapi/v1/order: {'code': -1117, 'msg': 'Invalid side.'}(error code 400)
2021-05-29 16:41:36,720 INFO :: Stop loss for ETHUSDT 15m
2021-05-29 16:41:37,274 ERROR :: Error while making POST request to /fapi/v1/order: {'code': -1117, 'msg': 'Invalid side.'}(error code 400)
2021-05-29 16:41:37,274 INFO :: Stop loss for ETHUSDT 15m
2021-05-29 16:41:37,793 ERROR :: Error while making POST request to /fapi/v1/order: {'code': -1117, 'msg': 'Invalid side.'}(error code 400)
2021-05-29 16:41:37,794 INFO :: Stop loss for ETHUSDT 15m
2021-05-29 16:41:38,708 ERROR :: Error while making POST request to /fapi/v1/order: {'code': -1117, 'msg': 'Invalid side.'}(error code 400)
2021-05-29 16:42:17,789 INFO :: Binance New candle for BTCUSDT 1m
2021-05-29 16:43:01,373 INFO :: Binance New candle for BTCUSDT 1m
2021-05-29 16:43:36,638 INFO :: Stop loss for ETHUSDT 15m
2021-05-29 16:43:37,458 ERROR :: Error while making POST request to /fapi/v1/order: {'code': -1117, 'msg': 'Invalid side.'}(error code 400)
2021-05-29 16:44:01,458 INFO :: Binance New candle for BTCUSDT 1m
2021-05-29 16:44:24,520 INFO :: Stop loss for ETHUSDT 15m
2021-05-29 16:44:25,035 ERROR :: Error while making POST request to /fapi/v1/order: {'code': -1117, 'msg': 'Invalid side.'}(error code 400)
2021-05-29 16:44:56,733 INFO :: Stop loss for ETHUSDT 15m
2021-05-29 16:44:57,153 ERROR :: Error while making POST request to /fapi/v1/order: {'code': -1117, 'msg': 'Invalid side.'}(error code 400)
2021-05-29 16:45:16,352 INFO :: Binance New candle for ETHUSDT 15m
2021-05-29 16:45:16,521 INFO :: Stop loss for ETHUSDT 15m
2021-05-29 16:45:16,928 ERROR :: Error while making POST request to /fapi/v1/order: {'code': -1117, 'msg': 'Invalid side.'}(error code 400)
2021-05-29 16:45:23,652 INFO :: Binance New candle for BTCUSDT 15m
2021-05-29 16:45:23,652 INFO :: Binance New candle for BTCUSDT 1m
2021-05-29 16:48:29,277 INFO :: Binance Future Client successfully initialized
2021-05-29 16:48:30,152 INFO :: Binance Websocket connection opened
2021-05-29 16:49:15,107 INFO :: Binance Futures current USDT balance = 10001.25634551, trade size = 0.033
2021-05-29 16:49:15,116 INFO :: Short signal on ETHUSDT 5m
2021-05-29 16:49:15,650 INFO :: Sell order placed on Binance | Status: new
2021-05-29 16:49:18,197 INFO :: Binance Order Status: filled
2021-05-29 16:49:22,569 INFO :: Take profit for ETHUSDT 5m
2021-05-29 16:49:23,111 ERROR :: Error while making POST request to /fapi/v1/order: {'code': -1117, 'msg': 'Invalid side.'}(error code 400)
2021-05-29 16:49:54,655 INFO :: Stop loss for ETHUSDT 5m
2021-05-29 16:49:55,317 ERROR :: Error while making POST request to /fapi/v1/order: {'code': -1117, 'msg': 'Invalid side.'}(error code 400)
2021-05-29 16:49:55,317 ERROR :: error from callback <bound method BinanceFutureClient._on_message of <connectors.binance_future.BinanceFutureClient object at 0x0000017C36055220>>: dictionary changed size during iteration
2021-05-29 16:51:29,361 INFO :: Binance Future Client successfully initialized
2021-05-29 16:51:30,264 INFO :: Binance Websocket connection opened
2021-05-29 16:52:03,474 INFO :: Binance New candle for BTCUSDT 1m
2021-05-29 16:52:34,276 INFO :: Binance Futures current USDT balance = 10001.21686418, trade size = 0.003
2021-05-29 16:52:34,276 INFO :: Short signal on BTCUSDT 1m
2021-05-29 16:52:34,795 INFO :: Sell order placed on Binance | Status: new
2021-05-29 16:52:37,438 INFO :: Binance Order Status: filled
2021-05-29 16:52:39,063 INFO :: Binance Futures current USDT balance = 10001.16911387, trade size = 0.033
2021-05-29 16:52:39,064 INFO :: Short signal on ETHUSDT 1m
2021-05-29 16:52:39,389 INFO :: Sell order placed on Binance | Status: new
2021-05-29 16:52:41,894 INFO :: Binance Order Status: filled
2021-05-29 16:53:10,392 INFO :: Binance New candle for BTCUSDT 1m
2021-05-29 16:53:18,908 INFO :: Binance New candle for ETHUSDT 1m
2021-05-29 16:54:00,317 INFO :: Binance New candle for BTCUSDT 1m
2021-05-29 16:54:12,705 INFO :: Binance New candle for ETHUSDT 1m
2021-05-29 16:55:03,577 INFO :: Binance New candle for BTCUSDT 1m
2021-05-29 16:55:22,846 INFO :: Binance New candle for ETHUSDT 1m
2021-05-29 16:56:04,603 INFO :: Binance New candle for ETHUSDT 1m
2021-05-29 16:56:07,050 INFO :: Binance New candle for BTCUSDT 1m
2021-05-29 16:59:01,708 INFO :: Binance Future Client successfully initialized
2021-05-29 16:59:02,525 INFO :: Binance Websocket connection opened
2021-05-29 16:59:28,796 INFO :: Binance Futures current USDT balance = 10000.9594401, trade size = 0.003
2021-05-29 16:59:28,796 INFO :: Short signal on BTCUSDT 1m
2021-05-29 16:59:29,346 INFO :: Sell order placed on Binance | Status: new
2021-05-29 16:59:31,697 INFO :: Binance Order Status: filled
2021-05-29 17:00:02,363 INFO :: Binance New candle for BTCUSDT 1m
2021-05-29 17:01:01,615 INFO :: Binance New candle for BTCUSDT 1m
2021-05-29 17:02:03,503 INFO :: Binance New candle for BTCUSDT 1m
2021-05-29 17:02:59,904 INFO :: Binance New candle for BTCUSDT 1m
2021-05-29 17:03:24,793 INFO :: Binance New candle for ETHUSDT 1m
2021-05-29 17:03:25,536 INFO :: Binance Futures current USDT balance = 10000.91168883, trade size = 0.033
2021-05-29 17:03:25,536 INFO :: Short signal on ETHUSDT 1m
2021-05-29 17:03:26,169 INFO :: Sell order placed on Binance | Status: new
2021-05-29 17:03:28,804 INFO :: Binance Order Status: filled
2021-05-29 17:03:30,552 INFO :: Stop loss for ETHUSDT 1m
2021-05-29 17:03:30,845 INFO :: Exit order on ETHUSDT 1m placed successfully
2021-05-29 17:03:31,154 INFO :: Binance Futures current USDT balance = 10000.80764406, trade size = 0.033
2021-05-29 17:03:31,154 INFO :: Long signal on ETHUSDT 1m
2021-05-29 17:03:31,687 INFO :: Buy order placed on Binance | Status: new
2021-05-29 17:03:34,336 INFO :: Binance Order Status: filled
2021-05-29 22:12:12,651 INFO :: Binance Future Client successfully initialized
2021-05-29 22:12:16,203 INFO :: Binance Websocket connection opened
2021-05-29 22:19:28,309 INFO :: Binance Future Client successfully initialized
2021-05-29 22:19:32,340 INFO :: Binance Websocket connection opened
2021-05-29 22:19:58,318 WARNING :: Binance BTCUSDT: 2693 milliseconds of difference between current time and the trade time
2021-05-29 22:19:59,317 INFO :: Binance Futures current USDT balance = 10000.06087572, trade size = 0.003
2021-05-29 22:19:59,317 INFO :: Short signal on BTCUSDT 5m
2021-05-29 22:20:00,349 INFO :: Sell order placed on Binance | Status: new
2021-05-29 22:20:03,598 INFO :: Binance Order Status: filled
2021-05-29 22:20:04,301 WARNING :: Binance BTCUSDT: 2412 milliseconds of difference between current time and the trade time
2021-05-29 22:20:04,301 INFO :: Binance New candle for BTCUSDT 5m
2021-05-29 22:21:07,857 INFO :: Binance Future Client successfully initialized
2021-05-29 22:21:09,747 INFO :: Binance Websocket connection opened
2021-05-29 22:45:35,290 INFO :: Binance Future Client successfully initialized
2021-05-29 22:45:36,938 INFO :: Binance Websocket connection opened
2021-05-29 22:46:14,796 INFO :: Binance Futures current USDT balance = 10000.01312541, trade size = 0.003
2021-05-29 22:46:14,796 INFO :: Short signal on BTCUSDT 15m
2021-05-29 22:46:15,566 INFO :: Sell order placed on Binance | Status: new
2021-05-29 22:46:18,241 INFO :: Binance Order Status: filled
2021-05-29 22:47:00,743 INFO :: Binance Futures current USDT balance = 9999.96537606, trade size = 0.033
2021-05-29 22:47:00,743 INFO :: Short signal on ETHUSDT 30m
2021-05-29 22:47:01,241 INFO :: Sell order placed on Binance | Status: new
2021-05-29 22:47:05,318 INFO :: Binance Order Status: filled
2021-05-29 22:48:33,097 INFO :: Take profit for BTCUSDT 15m
2021-05-29 22:48:34,260 ERROR :: Error while making POST request to /fapi/v1/order: {'code': -4131, 'msg': "The counterparty's best price does not meet the PERCENT_PRICE filter limit."}(error code 400)
2021-05-29 22:48:34,260 INFO :: Take profit for BTCUSDT 15m
2021-05-29 22:48:35,271 ERROR :: Error while making POST request to /fapi/v1/order: {'code': -4131, 'msg': "The counterparty's best price does not meet the PERCENT_PRICE filter limit."}(error code 400)
2021-05-29 22:48:35,271 WARNING :: Binance BTCUSDT: 2499 milliseconds of difference between current time and the trade time
2021-05-29 22:48:35,271 INFO :: Take profit for BTCUSDT 15m
2021-05-29 22:48:36,179 ERROR :: Error while making POST request to /fapi/v1/order: {'code': -4131, 'msg': "The counterparty's best price does not meet the PERCENT_PRICE filter limit."}(error code 400)
2021-05-29 22:48:37,879 INFO :: Take profit for BTCUSDT 15m
2021-05-29 22:48:39,879 ERROR :: Error while making POST request to /fapi/v1/order: {'code': -4131, 'msg': "The counterparty's best price does not meet the PERCENT_PRICE filter limit."}(error code 400)
2021-05-29 22:48:55,992 INFO :: Take profit for BTCUSDT 15m
2021-05-29 22:48:56,600 ERROR :: Error while making POST request to /fapi/v1/order: {'code': -4131, 'msg': "The counterparty's best price does not meet the PERCENT_PRICE filter limit."}(error code 400)
2021-05-29 22:49:44,478 INFO :: Take profit for BTCUSDT 15m
2021-05-29 22:49:50,369 ERROR :: Error while making POST request to /fapi/v1/order: {'code': -1021, 'msg': 'Timestamp for this request is outside of the recvWindow.'}(error code 400)
2021-05-29 22:49:50,373 WARNING :: Binance BTCUSDT: 2279 milliseconds of difference between current time and the trade time
2021-05-29 22:49:50,374 INFO :: Take profit for BTCUSDT 15m
2021-05-29 22:49:57,520 ERROR :: Error while making POST request to /fapi/v1/order: {'code': -1021, 'msg': 'Timestamp for this request is outside of the recvWindow.'}(error code 400)
2021-05-29 22:50:14,425 INFO :: Take profit for BTCUSDT 15m
2021-05-29 22:50:15,247 ERROR :: Error while making POST request to /fapi/v1/order: {'code': -4131, 'msg': "The counterparty's best price does not meet the PERCENT_PRICE filter limit."}(error code 400)
2021-05-29 22:50:32,163 INFO :: Take profit for BTCUSDT 15m
2021-05-29 22:50:34,050 ERROR :: Error while making POST request to /fapi/v1/order: {'code': -4131, 'msg': "The counterparty's best price does not meet the PERCENT_PRICE filter limit."}(error code 400)
2021-05-29 22:50:34,050 WARNING :: Binance BTCUSDT: 2219 milliseconds of difference between current time and the trade time
2021-05-29 22:50:34,050 INFO :: Take profit for BTCUSDT 15m
2021-05-29 22:50:34,727 ERROR :: Error while making POST request to /fapi/v1/order: {'code': -4131, 'msg': "The counterparty's best price does not meet the PERCENT_PRICE filter limit."}(error code 400)
2021-05-29 22:50:34,961 INFO :: Take profit for BTCUSDT 15m
2021-05-29 22:50:35,372 ERROR :: Error while making POST request to /fapi/v1/order: {'code': -4131, 'msg': "The counterparty's best price does not meet the PERCENT_PRICE filter limit."}(error code 400)
2021-05-29 22:50:59,331 INFO :: Take profit for BTCUSDT 15m
2021-05-29 22:51:06,702 ERROR :: Error while making POST request to /fapi/v1/order: {'code': -1021, 'msg': 'Timestamp for this request is outside of the recvWindow.'}(error code 400)
2021-05-29 22:51:06,702 WARNING :: Binance ETHUSDT: 5704 milliseconds of difference between current time and the trade time
2021-05-29 22:51:06,702 WARNING :: Binance ETHUSDT: 3629 milliseconds of difference between current time and the trade time
2021-05-29 22:51:06,702 WARNING :: Binance BTCUSDT: 2818 milliseconds of difference between current time and the trade time
2021-05-29 22:51:06,702 INFO :: Take profit for BTCUSDT 15m
2021-05-29 22:51:07,446 ERROR :: Error while making POST request to /fapi/v1/order: {'code': -4131, 'msg': "The counterparty's best price does not meet the PERCENT_PRICE filter limit."}(error code 400)
2021-05-29 22:51:07,446 WARNING :: Binance ETHUSDT: 2292 milliseconds of difference between current time and the trade time
2021-05-29 22:51:14,178 INFO :: Take profit for BTCUSDT 15m
2021-05-29 22:51:14,880 ERROR :: Error while making POST request to /fapi/v1/order: {'code': -4131, 'msg': "The counterparty's best price does not meet the PERCENT_PRICE filter limit."}(error code 400)
2021-05-29 22:51:31,097 INFO :: Take profit for BTCUSDT 15m
2021-05-29 22:51:31,824 ERROR :: Error while making POST request to /fapi/v1/order: {'code': -4131, 'msg': "The counterparty's best price does not meet the PERCENT_PRICE filter limit."}(error code 400)
2021-05-29 22:51:32,809 INFO :: Take profit for BTCUSDT 15m
2021-05-29 22:51:33,553 ERROR :: Error while making POST request to /fapi/v1/order: {'code': -4131, 'msg': "The counterparty's best price does not meet the PERCENT_PRICE filter limit."}(error code 400)
2021-05-29 22:51:40,272 INFO :: Take profit for BTCUSDT 15m
2021-05-29 22:51:40,928 ERROR :: Error while making POST request to /fapi/v1/order: {'code': -4131, 'msg': "The counterparty's best price does not meet the PERCENT_PRICE filter limit."}(error code 400)
2021-05-29 22:51:50,325 INFO :: Take profit for BTCUSDT 15m
2021-05-29 22:51:50,952 ERROR :: Error while making POST request to /fapi/v1/order: {'code': -4131, 'msg': "The counterparty's best price does not meet the PERCENT_PRICE filter limit."}(error code 400)
2021-05-29 22:58:40,594 INFO :: Binance Future Client successfully initialized
2021-05-29 22:58:41,976 INFO :: Binance Websocket connection opened
2021-05-29 23:01:23,769 ERROR :: Connection error while making GET request to /fapi/v1/exchangeInfo: HTTPSConnectionPool(host='testnet.binancefuture.com', port=443): Max retries exceeded with url: /fapi/v1/exchangeInfo (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x000001AA056782B0>: Failed to establish a new connection: [Errno 11001] getaddrinfo failed'))
2021-05-29 23:01:23,784 ERROR :: Connection error while making GET request to /fapi/v2/account: HTTPSConnectionPool(host='testnet.binancefuture.com', port=443): Max retries exceeded with url: /fapi/v2/account?timestamp=1622309483769&signature=d08203da6d4156c9e980895e63af78bbf01a445f2d732a3f366325b182640d8c (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x000001AA05678550>: Failed to establish a new connection: [Errno 11001] getaddrinfo failed'))
2021-05-29 23:01:23,784 INFO :: Binance Future Client successfully initialized
2021-05-29 23:01:23,831 ERROR :: Binance connection error: [Errno 11001] getaddrinfo failed
2021-05-29 23:01:23,831 ERROR :: error from callback <bound method BinanceFutureClient._on_close of <connectors.binance_future.BinanceFutureClient object at 0x000001AA05645130>>: _on_close() takes 2 positional arguments but 4 were given
2021-05-29 23:01:25,847 ERROR :: Binance connection error: [Errno 11001] getaddrinfo failed
2021-05-29 23:01:25,847 ERROR :: error from callback <bound method BinanceFutureClient._on_close of <connectors.binance_future.BinanceFutureClient object at 0x000001AA05645130>>: _on_close() takes 2 positional arguments but 4 were given
2021-05-29 23:01:27,862 ERROR :: Binance connection error: [Errno 11001] getaddrinfo failed
2021-05-29 23:01:27,862 ERROR :: error from callback <bound method BinanceFutureClient._on_close of <connectors.binance_future.BinanceFutureClient object at 0x000001AA05645130>>: _on_close() takes 2 positional arguments but 4 were given
2021-05-29 23:01:29,877 ERROR :: Binance connection error: [Errno 11001] getaddrinfo failed
2021-05-29 23:01:29,877 ERROR :: error from callback <bound method BinanceFutureClient._on_close of <connectors.binance_future.BinanceFutureClient object at 0x000001AA05645130>>: _on_close() takes 2 positional arguments but 4 were given
2021-05-29 23:01:31,892 ERROR :: Binance connection error: [Errno 11001] getaddrinfo failed
2021-05-29 23:01:31,892 ERROR :: error from callback <bound method BinanceFutureClient._on_close of <connectors.binance_future.BinanceFutureClient object at 0x000001AA05645130>>: _on_close() takes 2 positional arguments but 4 were given
2021-05-29 23:02:14,391 INFO :: Binance Future Client successfully initialized
2021-05-29 23:02:17,875 INFO :: Binance Websocket connection opened
2021-05-29 23:02:45,601 ERROR :: Binance connection error: [WinError 10054] An existing connection was forcibly closed by the remote host
2021-05-29 23:02:45,601 ERROR :: error from callback <bound method BinanceFutureClient._on_close of <connectors.binance_future.BinanceFutureClient object at 0x000001A608775130>>: _on_close() takes 2 positional arguments but 4 were given
2021-05-29 23:02:49,920 INFO :: Binance Websocket connection opened
2021-05-29 23:03:26,577 ERROR :: Binance connection error: [WinError 10054] An existing connection was forcibly closed by the remote host
2021-05-29 23:03:26,577 ERROR :: error from callback <bound method BinanceFutureClient._on_close of <connectors.binance_future.BinanceFutureClient object at 0x000001A608775130>>: _on_close() takes 2 positional arguments but 4 were given
2021-05-29 23:03:33,235 INFO :: Binance Websocket connection opened
2021-05-29 23:04:12,543 ERROR :: Binance connection error: [WinError 10054] An existing connection was forcibly closed by the remote host
2021-05-29 23:04:12,543 ERROR :: error from callback <bound method BinanceFutureClient._on_close of <connectors.binance_future.BinanceFutureClient object at 0x000001A608775130>>: _on_close() takes 2 positional arguments but 4 were given
2021-05-29 23:04:15,473 INFO :: Binance Websocket connection opened
2021-05-29 23:08:12,196 ERROR :: Binance connection error: [WinError 10054] An existing connection was forcibly closed by the remote host
2021-05-29 23:08:12,198 ERROR :: error from callback <bound method BinanceFutureClient._on_close of <connectors.binance_future.BinanceFutureClient object at 0x000001A608775130>>: _on_close() takes 2 positional arguments but 4 were given
2021-05-30 14:47:27,184 INFO :: Binance Future Client successfully initialized
2021-05-30 14:47:29,144 INFO :: Binance Websocket connection opened
2021-05-30 14:48:26,087 INFO :: Binance Future Client successfully initialized
2021-05-30 14:48:27,409 INFO :: Binance Websocket connection opened
2021-05-30 14:48:44,296 ERROR :: error from callback <bound method BinanceFutureClient._on_message of <connectors.binance_future.BinanceFutureClient object at 0x0000014146A8B220>>: 'BollingerBandStrategy' object has no attribute 'check_trade'
2021-05-30 14:48:46,149 ERROR :: error from callback <bound method BinanceFutureClient._on_message of <connectors.binance_future.BinanceFutureClient object at 0x0000014146A8B220>>: 'BollingerBandStrategy' object has no attribute 'check_trade'
2021-05-30 14:48:53,821 ERROR :: error from callback <bound method BinanceFutureClient._on_message of <connectors.binance_future.BinanceFutureClient object at 0x0000014146A8B220>>: 'BollingerBandStrategy' object has no attribute 'check_trade'
2021-05-30 14:49:27,835 INFO :: Binance Future Client successfully initialized
2021-05-30 14:49:31,409 INFO :: Binance Websocket connection opened
2021-05-30 14:50:36,950 INFO :: Binance Future Client successfully initialized
2021-05-30 14:50:38,268 INFO :: Binance Websocket connection opened
2021-05-30 15:24:21,198 ERROR :: Error while making GET request to /fapi/v2/account: {'code': -2015, 'msg': 'Invalid API-key, IP, or permissions for action, request ip: 1.39.187.135'}(error code 401)
2021-05-30 15:24:21,200 INFO :: Binance Future Client successfully initialized
2021-05-30 15:24:22,099 INFO :: Binance Websocket connection opened
2021-05-30 15:24:49,203 ERROR :: Binance connection error: Connection to remote host was lost.
2021-05-30 15:24:49,203 ERROR :: error from callback <bound method BinanceFutureClient._on_close of <connectors.binance_future.BinanceFutureClient object at 0x000001C5A4EB2340>>: _on_close() takes 2 positional arguments but 4 were given
2021-05-30 15:24:51,932 INFO :: Binance Websocket connection opened
2021-05-30 15:26:17,211 INFO :: Binance Future Client successfully initialized
2021-05-30 15:26:18,531 INFO :: Binance Websocket connection opened
2021-05-30 15:31:12,630 WARNING :: Binance ETHUSDT: 115464 milliseconds of difference between current time and the trade time
2021-05-30 15:31:12,630 INFO :: Binance New candle for ETHUSDT 1m
2021-05-30 15:31:13,276 WARNING :: Binance ETHUSDT: 116097 milliseconds of difference between current time and the trade time
2021-05-30 15:31:14,138 WARNING :: Binance ETHUSDT: 116886 milliseconds of difference between current time and the trade time
2021-05-30 15:31:14,154 WARNING :: Binance ETHUSDT: 116878 milliseconds of difference between current time and the trade time
2021-05-30 15:31:14,155 WARNING :: Binance ETHUSDT: 116879 milliseconds of difference between current time and the trade time
2021-05-30 15:31:14,408 WARNING :: Binance ETHUSDT: 117130 milliseconds of difference between current time and the trade time
2021-05-30 15:31:15,466 WARNING :: Binance ETHUSDT: 118175 milliseconds of difference between current time and the trade time
2021-05-30 15:31:16,954 WARNING :: Binance ETHUSDT: 119540 milliseconds of difference between current time and the trade time
2021-05-30 15:31:17,993 WARNING :: Binance ETHUSDT: 120505 milliseconds of difference between current time and the trade time
2021-05-30 15:31:18,979 WARNING :: Binance ETHUSDT: 121130 milliseconds of difference between current time and the trade time
2021-05-30 15:31:20,007 WARNING :: Binance ETHUSDT: 122032 milliseconds of difference between current time and the trade time
2021-05-30 15:31:20,644 WARNING :: Binance ETHUSDT: 122456 milliseconds of difference between current time and the trade time
2021-05-30 15:31:20,682 WARNING :: Binance ETHUSDT: 122471 milliseconds of difference between current time and the trade time
2021-05-30 15:31:22,265 WARNING :: Binance ETHUSDT: 123975 milliseconds of difference between current time and the trade time
2021-05-30 15:31:25,429 WARNING :: Binance ETHUSDT: 126936 milliseconds of difference between current time and the trade time
2021-05-30 15:31:27,991 WARNING :: Binance ETHUSDT: 129398 milliseconds of difference between current time and the trade time
2021-05-30 15:31:28,909 WARNING :: Binance ETHUSDT: 130104 milliseconds of difference between current time and the trade time
2021-05-30 15:31:30,159 WARNING :: Binance ETHUSDT: 131291 milliseconds of difference between current time and the trade time
2021-05-30 15:31:31,010 WARNING :: Binance ETHUSDT: 132005 milliseconds of difference between current time and the trade time
2021-05-30 15:31:31,042 WARNING :: Binance ETHUSDT: 131920 milliseconds of difference between current time and the trade time
2021-05-30 15:31:31,931 WARNING :: Binance ETHUSDT: 132762 milliseconds of difference between current time and the trade time
2021-05-30 15:31:32,318 WARNING :: Binance ETHUSDT: 132957 milliseconds of difference between current time and the trade time
2021-05-30 15:31:33,880 WARNING :: Binance ETHUSDT: 134506 milliseconds of difference between current time and the trade time
2021-05-30 15:31:36,483 WARNING :: Binance ETHUSDT: 136886 milliseconds of difference between current time and the trade time
2021-05-30 15:31:36,931 WARNING :: Binance ETHUSDT: 137226 milliseconds of difference between current time and the trade time
2021-05-30 15:31:37,527 WARNING :: Binance ETHUSDT: 137735 milliseconds of difference between current time and the trade time
2021-05-30 15:31:37,546 WARNING :: Binance ETHUSDT: 137665 milliseconds of difference between current time and the trade time
2021-05-30 15:31:37,563 WARNING :: Binance ETHUSDT: 137681 milliseconds of difference between current time and the trade time
2021-05-30 15:31:37,578 WARNING :: Binance ETHUSDT: 137686 milliseconds of difference between current time and the trade time
2021-05-30 15:31:38,392 WARNING :: Binance ETHUSDT: 138492 milliseconds of difference between current time and the trade time
2021-05-30 15:31:38,407 WARNING :: Binance ETHUSDT: 138371 milliseconds of difference between current time and the trade time
2021-05-30 15:31:38,704 WARNING :: Binance ETHUSDT: 138668 milliseconds of difference between current time and the trade time
2021-05-30 15:31:39,061 WARNING :: Binance ETHUSDT: 139012 milliseconds of difference between current time and the trade time
2021-05-30 15:31:40,480 WARNING :: Binance ETHUSDT: 140212 milliseconds of difference between current time and the trade time
2021-05-30 15:31:44,557 WARNING :: Binance ETHUSDT: 144069 milliseconds of difference between current time and the trade time
2021-05-30 15:31:46,971 WARNING :: Binance ETHUSDT: 146280 milliseconds of difference between current time and the trade time
2021-05-30 15:31:49,731 WARNING :: Binance ETHUSDT: 148866 milliseconds of difference between current time and the trade time
2021-05-30 15:31:50,848 WARNING :: Binance ETHUSDT: 149725 milliseconds of difference between current time and the trade time
2021-05-30 15:31:51,489 WARNING :: Binance ETHUSDT: 150345 milliseconds of difference between current time and the trade time
2021-05-30 15:31:51,507 WARNING :: Binance ETHUSDT: 150303 milliseconds of difference between current time and the trade time
2021-05-30 15:31:51,524 WARNING :: Binance ETHUSDT: 150320 milliseconds of difference between current time and the trade time
2021-05-30 15:31:51,540 WARNING :: Binance ETHUSDT: 150336 milliseconds of difference between current time and the trade time
2021-05-30 15:31:51,557 WARNING :: Binance ETHUSDT: 150353 milliseconds of difference between current time and the trade time
2021-05-30 15:31:51,567 WARNING :: Binance ETHUSDT: 150363 milliseconds of difference between current time and the trade time
2021-05-30 15:31:51,569 WARNING :: Binance ETHUSDT: 150365 milliseconds of difference between current time and the trade time
2021-05-30 15:31:51,569 WARNING :: Binance ETHUSDT: 150365 milliseconds of difference between current time and the trade time
2021-05-30 15:31:51,585 WARNING :: Binance ETHUSDT: 150381 milliseconds of difference between current time and the trade time
2021-05-30 15:31:51,585 WARNING :: Binance ETHUSDT: 150381 milliseconds of difference between current time and the trade time
2021-05-30 15:31:51,585 WARNING :: Binance ETHUSDT: 150381 milliseconds of difference between current time and the trade time
2021-05-30 15:31:53,077 WARNING :: Binance ETHUSDT: 151873 milliseconds of difference between current time and the trade time
2021-05-30 15:31:53,629 WARNING :: Binance ETHUSDT: 152276 milliseconds of difference between current time and the trade time
2021-05-30 15:31:53,653 WARNING :: Binance ETHUSDT: 152216 milliseconds of difference between current time and the trade time
2021-05-30 15:31:55,010 WARNING :: Binance ETHUSDT: 153562 milliseconds of difference between current time and the trade time
2021-05-30 15:31:56,778 WARNING :: Binance ETHUSDT: 154992 milliseconds of difference between current time and the trade time
2021-05-30 15:31:57,901 WARNING :: Binance ETHUSDT: 156105 milliseconds of difference between current time and the trade time
2021-05-30 15:32:00,545 WARNING :: Binance ETHUSDT: 158666 milliseconds of difference between current time and the trade time
2021-05-30 15:32:01,691 WARNING :: Binance ETHUSDT: 159592 milliseconds of difference between current time and the trade time
2021-05-30 15:32:02,583 WARNING :: Binance ETHUSDT: 160340 milliseconds of difference between current time and the trade time
2021-05-30 15:32:02,598 WARNING :: Binance ETHUSDT: 160313 milliseconds of difference between current time and the trade time
2021-05-30 15:32:03,195 WARNING :: Binance ETHUSDT: 160910 milliseconds of difference between current time and the trade time
2021-05-30 15:32:03,209 WARNING :: Binance ETHUSDT: 160862 milliseconds of difference between current time and the trade time
2021-05-30 15:32:04,211 WARNING :: Binance ETHUSDT: 161864 milliseconds of difference between current time and the trade time
2021-05-30 15:32:04,211 WARNING :: Binance ETHUSDT: 161760 milliseconds of difference between current time and the trade time
2021-05-30 15:32:05,411 WARNING :: Binance ETHUSDT: 162960 milliseconds of difference between current time and the trade time
2021-05-30 15:32:05,442 WARNING :: Binance ETHUSDT: 162798 milliseconds of difference between current time and the trade time
2021-05-30 15:32:05,458 WARNING :: Binance ETHUSDT: 162814 milliseconds of difference between current time and the trade time
2021-05-30 15:32:05,458 WARNING :: Binance ETHUSDT: 162814 milliseconds of difference between current time and the trade time
2021-05-30 15:32:05,473 WARNING :: Binance ETHUSDT: 162829 milliseconds of difference between current time and the trade time
2021-05-30 15:32:05,881 WARNING :: Binance ETHUSDT: 163237 milliseconds of difference between current time and the trade time
2021-05-30 15:32:06,259 WARNING :: Binance ETHUSDT: 163572 milliseconds of difference between current time and the trade time
2021-05-30 15:32:08,153 WARNING :: Binance ETHUSDT: 165433 milliseconds of difference between current time and the trade time
2021-05-30 15:32:11,059 WARNING :: Binance ETHUSDT: 168199 milliseconds of difference between current time and the trade time
2021-05-30 15:32:11,084 WARNING :: Binance ETHUSDT: 168037 milliseconds of difference between current time and the trade time
2021-05-30 15:32:12,309 WARNING :: Binance ETHUSDT: 169262 milliseconds of difference between current time and the trade time
2021-05-30 15:32:14,468 WARNING :: Binance ETHUSDT: 171174 milliseconds of difference between current time and the trade time
2021-05-30 15:32:14,482 WARNING :: Binance ETHUSDT: 171142 milliseconds of difference between current time and the trade time
2021-05-30 15:32:14,542 WARNING :: Binance ETHUSDT: 171190 milliseconds of difference between current time and the trade time
2021-05-30 15:32:15,047 WARNING :: Binance ETHUSDT: 171680 milliseconds of difference between current time and the trade time
2021-05-30 15:32:16,927 WARNING :: Binance ETHUSDT: 173509 milliseconds of difference between current time and the trade time
2021-05-30 15:32:16,958 WARNING :: Binance ETHUSDT: 173352 milliseconds of difference between current time and the trade time
2021-05-30 15:32:17,269 WARNING :: Binance ETHUSDT: 173663 milliseconds of difference between current time and the trade time
2021-05-30 15:32:17,634 WARNING :: Binance ETHUSDT: 174028 milliseconds of difference between current time and the trade time
2021-05-30 15:32:18,453 WARNING :: Binance ETHUSDT: 174786 milliseconds of difference between current time and the trade time
2021-05-30 15:32:19,559 WARNING :: Binance ETHUSDT: 175861 milliseconds of difference between current time and the trade time
2021-05-30 15:32:21,394 WARNING :: Binance ETHUSDT: 177561 milliseconds of difference between current time and the trade time
2021-05-30 15:32:22,766 WARNING :: Binance ETHUSDT: 178765 milliseconds of difference between current time and the trade time
2021-05-30 15:32:22,783 WARNING :: Binance ETHUSDT: 178681 milliseconds of difference between current time and the trade time
2021-05-30 15:32:23,237 WARNING :: Binance ETHUSDT: 179133 milliseconds of difference between current time and the trade time
2021-05-30 15:32:24,038 WARNING :: Binance ETHUSDT: 179843 milliseconds of difference between current time and the trade time
2021-05-30 15:32:24,773 WARNING :: Binance ETHUSDT: 180421 milliseconds of difference between current time and the trade time
2021-05-30 15:32:26,182 WARNING :: Binance ETHUSDT: 181723 milliseconds of difference between current time and the trade time
2021-05-30 15:32:26,795 WARNING :: Binance ETHUSDT: 182187 milliseconds of difference between current time and the trade time
2021-05-30 15:32:27,830 WARNING :: Binance ETHUSDT: 183099 milliseconds of difference between current time and the trade time
2021-05-30 15:32:27,858 WARNING :: Binance ETHUSDT: 182954 milliseconds of difference between current time and the trade time
2021-05-30 15:32:28,392 WARNING :: Binance ETHUSDT: 183477 milliseconds of difference between current time and the trade time
2021-05-30 15:32:28,410 WARNING :: Binance ETHUSDT: 183464 milliseconds of difference between current time and the trade time
2021-05-30 15:32:28,711 WARNING :: Binance ETHUSDT: 183750 milliseconds of difference between current time and the trade time
2021-05-30 15:32:29,510 WARNING :: Binance ETHUSDT: 184453 milliseconds of difference between current time and the trade time
2021-05-30 15:32:29,784 WARNING :: Binance ETHUSDT: 184592 milliseconds of difference between current time and the trade time
2021-05-30 15:32:30,663 WARNING :: Binance ETHUSDT: 185352 milliseconds of difference between current time and the trade time
2021-05-30 15:32:31,911 WARNING :: Binance ETHUSDT: 186367 milliseconds of difference between current time and the trade time
2021-05-30 15:32:32,347 WARNING :: Binance ETHUSDT: 186681 milliseconds of difference between current time and the trade time
2021-05-30 15:32:32,814 WARNING :: Binance ETHUSDT: 187034 milliseconds of difference between current time and the trade time
2021-05-30 15:32:32,814 WARNING :: Binance ETHUSDT: 186942 milliseconds of difference between current time and the trade time
2021-05-30 15:32:33,484 WARNING :: Binance ETHUSDT: 187612 milliseconds of difference between current time and the trade time
2021-05-30 15:32:36,908 WARNING :: Binance ETHUSDT: 190727 milliseconds of difference between current time and the trade time
2021-05-30 15:32:45,275 WARNING :: Binance ETHUSDT: 198471 milliseconds of difference between current time and the trade time
2021-05-30 15:32:45,326 WARNING :: Binance ETHUSDT: 198342 milliseconds of difference between current time and the trade time
2021-05-30 15:32:45,326 WARNING :: Binance ETHUSDT: 198327 milliseconds of difference between current time and the trade time
2021-05-30 15:32:46,123 WARNING :: Binance ETHUSDT: 199124 milliseconds of difference between current time and the trade time
2021-05-30 15:32:46,397 WARNING :: Binance ETHUSDT: 199277 milliseconds of difference between current time and the trade time
2021-05-30 15:32:46,957 WARNING :: Binance ETHUSDT: 199724 milliseconds of difference between current time and the trade time
2021-05-30 15:32:47,201 WARNING :: Binance ETHUSDT: 199852 milliseconds of difference between current time and the trade time
2021-05-30 15:32:47,463 WARNING :: Binance ETHUSDT: 200033 milliseconds of difference between current time and the trade time
2021-05-30 15:32:47,817 WARNING :: Binance ETHUSDT: 200186 milliseconds of difference between current time and the trade time
2021-05-30 15:32:48,054 WARNING :: Binance ETHUSDT: 200248 milliseconds of difference between current time and the trade time
2021-05-30 15:32:48,592 WARNING :: Binance ETHUSDT: 200275 milliseconds of difference between current time and the trade time
2021-05-30 15:32:48,649 WARNING :: Binance ETHUSDT: 200202 milliseconds of difference between current time and the trade time
2021-05-30 15:32:48,669 WARNING :: Binance ETHUSDT: 200167 milliseconds of difference between current time and the trade time
2021-05-30 15:32:48,678 WARNING :: Binance ETHUSDT: 200043 milliseconds of difference between current time and the trade time
2021-05-30 15:32:48,936 WARNING :: Binance ETHUSDT: 200301 milliseconds of difference between current time and the trade time
2021-05-30 15:32:48,950 WARNING :: Binance ETHUSDT: 200150 milliseconds of difference between current time and the trade time
2021-05-30 15:32:48,964 WARNING :: Binance ETHUSDT: 200164 milliseconds of difference between current time and the trade time
2021-05-30 15:32:48,979 WARNING :: Binance ETHUSDT: 200164 milliseconds of difference between current time and the trade time
2021-05-30 15:32:48,995 WARNING :: Binance ETHUSDT: 200180 milliseconds of difference between current time and the trade time
2021-05-30 15:32:49,034 WARNING :: Binance ETHUSDT: 200207 milliseconds of difference between current time and the trade time
2021-05-30 15:32:49,049 WARNING :: Binance ETHUSDT: 200080 milliseconds of difference between current time and the trade time
2021-05-30 15:32:49,092 WARNING :: Binance ETHUSDT: 200123 milliseconds of difference between current time and the trade time
2021-05-30 15:32:49,120 WARNING :: Binance ETHUSDT: 200062 milliseconds of difference between current time and the trade time
2021-05-30 15:32:49,380 WARNING :: Binance ETHUSDT: 200297 milliseconds of difference between current time and the trade time
2021-05-30 15:32:49,426 WARNING :: Binance ETHUSDT: 200226 milliseconds of difference between current time and the trade time
2021-05-30 15:32:49,635 WARNING :: Binance ETHUSDT: 200132 milliseconds of difference between current time and the trade time
2021-05-30 15:32:49,648 WARNING :: Binance ETHUSDT: 200055 milliseconds of difference between current time and the trade time
2021-05-30 15:32:49,662 WARNING :: Binance ETHUSDT: 200069 milliseconds of difference between current time and the trade time
2021-05-30 15:32:49,685 WARNING :: Binance ETHUSDT: 200092 milliseconds of difference between current time and the trade time
2021-05-30 15:32:49,703 WARNING :: Binance ETHUSDT: 200074 milliseconds of difference between current time and the trade time
2021-05-30 15:32:49,753 WARNING :: Binance ETHUSDT: 200118 milliseconds of difference between current time and the trade time
2021-05-30 15:32:49,794 WARNING :: Binance ETHUSDT: 199992 milliseconds of difference between current time and the trade time
2021-05-30 15:32:49,950 WARNING :: Binance ETHUSDT: 199866 milliseconds of difference between current time and the trade time
2021-05-30 15:32:50,336 WARNING :: Binance ETHUSDT: 162884 milliseconds of difference between current time and the trade time
2021-05-30 15:32:50,336 INFO :: Binance New candle for ETHUSDT 1m
2021-05-30 15:32:50,360 WARNING :: Binance ETHUSDT: 162847 milliseconds of difference between current time and the trade time
2021-05-30 15:32:50,377 WARNING :: Binance ETHUSDT: 162832 milliseconds of difference between current time and the trade time
2021-05-30 15:32:50,406 WARNING :: Binance ETHUSDT: 162809 milliseconds of difference between current time and the trade time
2021-05-30 15:32:50,464 WARNING :: Binance ETHUSDT: 162834 milliseconds of difference between current time and the trade time
2021-05-30 15:32:50,553 WARNING :: Binance ETHUSDT: 162804 milliseconds of difference between current time and the trade time
2021-05-30 15:32:50,571 WARNING :: Binance ETHUSDT: 162651 milliseconds of difference between current time and the trade time
2021-05-30 15:32:50,600 WARNING :: Binance ETHUSDT: 162673 milliseconds of difference between current time and the trade time
2021-05-30 15:32:50,717 WARNING :: Binance ETHUSDT: 162398 milliseconds of difference between current time and the trade time
2021-05-30 15:32:50,736 WARNING :: Binance ETHUSDT: 162417 milliseconds of difference between current time and the trade time
2021-05-30 15:32:50,743 WARNING :: Binance ETHUSDT: 162409 milliseconds of difference between current time and the trade time
2021-05-30 15:32:50,762 WARNING :: Binance ETHUSDT: 162426 milliseconds of difference between current time and the trade time
2021-05-30 15:32:50,782 WARNING :: Binance ETHUSDT: 162446 milliseconds of difference between current time and the trade time
2021-05-30 15:32:50,847 WARNING :: Binance ETHUSDT: 162494 milliseconds of difference between current time and the trade time
2021-05-30 15:32:50,936 WARNING :: Binance ETHUSDT: 162470 milliseconds of difference between current time and the trade time
2021-05-30 15:32:50,966 WARNING :: Binance ETHUSDT: 162302 milliseconds of difference between current time and the trade time
2021-05-30 15:32:50,992 WARNING :: Binance ETHUSDT: 162313 milliseconds of difference between current time and the trade time
2021-05-30 15:32:51,013 WARNING :: Binance ETHUSDT: 162253 milliseconds of difference between current time and the trade time
2021-05-30 15:32:51,021 WARNING :: Binance ETHUSDT: 162181 milliseconds of difference between current time and the trade time
2021-05-30 15:32:51,038 WARNING :: Binance ETHUSDT: 162198 milliseconds of difference between current time and the trade time
2021-05-30 15:32:51,058 WARNING :: Binance ETHUSDT: 162218 milliseconds of difference between current time and the trade time
2021-05-30 15:32:51,069 WARNING :: Binance ETHUSDT: 162193 milliseconds of difference between current time and the trade time
2021-05-30 15:32:51,111 WARNING :: Binance ETHUSDT: 162189 milliseconds of difference between current time and the trade time
2021-05-30 15:32:51,207 WARNING :: Binance ETHUSDT: 162083 milliseconds of difference between current time and the trade time
2021-05-30 15:32:51,461 WARNING :: Binance ETHUSDT: 162035 milliseconds of difference between current time and the trade time
2021-05-30 15:32:51,479 WARNING :: Binance ETHUSDT: 161905 milliseconds of difference between current time and the trade time
2021-05-30 15:32:51,556 WARNING :: Binance ETHUSDT: 161982 milliseconds of difference between current time and the trade time
2021-05-30 15:32:51,585 WARNING :: Binance ETHUSDT: 161940 milliseconds of difference between current time and the trade time
2021-05-30 15:32:51,675 WARNING :: Binance ETHUSDT: 162010 milliseconds of difference between current time and the trade time
2021-05-30 15:32:51,726 WARNING :: Binance ETHUSDT: 161860 milliseconds of difference between current time and the trade time
2021-05-30 15:32:51,789 WARNING :: Binance ETHUSDT: 161669 milliseconds of difference between current time and the trade time
2021-05-30 15:32:51,835 WARNING :: Binance ETHUSDT: 161678 milliseconds of difference between current time and the trade time
2021-05-30 15:32:51,856 WARNING :: Binance ETHUSDT: 161577 milliseconds of difference between current time and the trade time
2021-05-30 15:32:51,865 WARNING :: Binance ETHUSDT: 161511 milliseconds of difference between current time and the trade time
2021-05-30 15:32:51,913 WARNING :: Binance ETHUSDT: 161552 milliseconds of difference between current time and the trade time
2021-05-30 15:32:51,928 WARNING :: Binance ETHUSDT: 161441 milliseconds of difference between current time and the trade time
2021-05-30 15:32:51,945 WARNING :: Binance ETHUSDT: 161458 milliseconds of difference between current time and the trade time
2021-05-30 15:32:52,014 WARNING :: Binance ETHUSDT: 161525 milliseconds of difference between current time and the trade time
2021-05-30 15:32:52,036 WARNING :: Binance ETHUSDT: 161371 milliseconds of difference between current time and the trade time
2021-05-30 15:32:52,055 WARNING :: Binance ETHUSDT: 161390 milliseconds of difference between current time and the trade time
2021-05-30 15:32:52,078 WARNING :: Binance ETHUSDT: 161413 milliseconds of difference between current time and the trade time
2021-05-30 15:32:52,086 WARNING :: Binance ETHUSDT: 161394 milliseconds of difference between current time and the trade time
2021-05-30 15:32:52,145 WARNING :: Binance ETHUSDT: 161453 milliseconds of difference between current time and the trade time
2021-05-30 15:32:52,228 WARNING :: Binance ETHUSDT: 161294 milliseconds of difference between current time and the trade time
2021-05-30 15:32:52,259 WARNING :: Binance ETHUSDT: 161130 milliseconds of difference between current time and the trade time
2021-05-30 15:32:52,360 WARNING :: Binance ETHUSDT: 161226 milliseconds of difference between current time and the trade time
2021-05-30 15:32:52,434 WARNING :: Binance ETHUSDT: 161033 milliseconds of difference between current time and the trade time
2021-05-30 15:32:52,451 WARNING :: Binance ETHUSDT: 161038 milliseconds of difference between current time and the trade time
2021-05-30 15:32:52,461 WARNING :: Binance ETHUSDT: 161035 milliseconds of difference between current time and the trade time
2021-05-30 15:32:52,469 WARNING :: Binance ETHUSDT: 161043 milliseconds of difference between current time and the trade time
2021-05-30 15:32:52,509 WARNING :: Binance ETHUSDT: 161083 milliseconds of difference between current time and the trade time
2021-05-30 15:32:52,535 WARNING :: Binance ETHUSDT: 161082 milliseconds of difference between current time and the trade time
2021-05-30 15:32:52,546 WARNING :: Binance ETHUSDT: 161093 milliseconds of difference between current time and the trade time
2021-05-30 15:32:52,598 WARNING :: Binance ETHUSDT: 161145 milliseconds of difference between current time and the trade time
2021-05-30 15:32:52,614 WARNING :: Binance ETHUSDT: 161100 milliseconds of difference between current time and the trade time
2021-05-30 15:32:52,627 WARNING :: Binance ETHUSDT: 161112 milliseconds of difference between current time and the trade time
2021-05-30 15:32:52,639 WARNING :: Binance ETHUSDT: 161124 milliseconds of difference between current time and the trade time
2021-05-30 15:32:52,661 WARNING :: Binance ETHUSDT: 161146 milliseconds of difference between current time and the trade time
2021-05-30 15:32:52,678 WARNING :: Binance ETHUSDT: 161157 milliseconds of difference between current time and the trade time
2021-05-30 15:32:52,696 WARNING :: Binance ETHUSDT: 161175 milliseconds of difference between current time and the trade time
2021-05-30 15:32:52,706 WARNING :: Binance ETHUSDT: 161185 milliseconds of difference between current time and the trade time
2021-05-30 15:32:52,744 WARNING :: Binance ETHUSDT: 161223 milliseconds of difference between current time and the trade time
2021-05-30 15:32:52,763 WARNING :: Binance ETHUSDT: 161117 milliseconds of difference between current time and the trade time
2021-05-30 15:32:52,763 WARNING :: Binance ETHUSDT: 161117 milliseconds of difference between current time and the trade time
2021-05-30 15:32:52,776 WARNING :: Binance ETHUSDT: 161130 milliseconds of difference between current time and the trade time
2021-05-30 15:32:52,802 WARNING :: Binance ETHUSDT: 161156 milliseconds of difference between current time and the trade time
2021-05-30 15:32:52,929 WARNING :: Binance ETHUSDT: 160980 milliseconds of difference between current time and the trade time
2021-05-30 15:32:52,946 WARNING :: Binance ETHUSDT: 160925 milliseconds of difference between current time and the trade time
2021-05-30 15:32:52,971 WARNING :: Binance ETHUSDT: 160899 milliseconds of difference between current time and the trade time
2021-05-30 15:32:52,988 WARNING :: Binance ETHUSDT: 160866 milliseconds of difference between current time and the trade time
2021-05-30 15:32:53,063 WARNING :: Binance ETHUSDT: 160941 milliseconds of difference between current time and the trade time
2021-05-30 15:32:53,094 WARNING :: Binance ETHUSDT: 160911 milliseconds of difference between current time and the trade time
2021-05-30 15:32:53,154 WARNING :: Binance ETHUSDT: 160862 milliseconds of difference between current time and the trade time
2021-05-30 15:32:53,284 WARNING :: Binance ETHUSDT: 146178 milliseconds of difference between current time and the trade time
2021-05-30 15:32:53,323 WARNING :: Binance ETHUSDT: 145925 milliseconds of difference between current time and the trade time
2021-05-30 15:32:53,364 WARNING :: Binance ETHUSDT: 145914 milliseconds of difference between current time and the trade time
2021-05-30 15:32:53,413 WARNING :: Binance ETHUSDT: 145745 milliseconds of difference between current time and the trade time
2021-05-30 15:32:53,447 WARNING :: Binance ETHUSDT: 145667 milliseconds of difference between current time and the trade time
2021-05-30 15:32:53,547 WARNING :: Binance ETHUSDT: 145726 milliseconds of difference between current time and the trade time
2021-05-30 15:32:53,585 WARNING :: Binance ETHUSDT: 145550 milliseconds of difference between current time and the trade time
2021-05-30 15:32:53,647 WARNING :: Binance ETHUSDT: 145612 milliseconds of difference between current time and the trade time
2021-05-30 15:32:53,659 WARNING :: Binance ETHUSDT: 145501 milliseconds of difference between current time and the trade time
2021-05-30 15:32:53,700 WARNING :: Binance ETHUSDT: 145542 milliseconds of difference between current time and the trade time
2021-05-30 15:32:53,713 WARNING :: Binance ETHUSDT: 145515 milliseconds of difference between current time and the trade time
2021-05-30 15:32:53,729 WARNING :: Binance ETHUSDT: 145531 milliseconds of difference between current time and the trade time
2021-05-30 15:32:53,778 WARNING :: Binance ETHUSDT: 145580 milliseconds of difference between current time and the trade time
2021-05-30 15:32:53,794 WARNING :: Binance ETHUSDT: 145497 milliseconds of difference between current time and the trade time
2021-05-30 15:32:53,808 WARNING :: Binance ETHUSDT: 145511 milliseconds of difference between current time and the trade time
2021-05-30 15:32:53,840 WARNING :: Binance ETHUSDT: 145543 milliseconds of difference between current time and the trade time
2021-05-30 15:32:53,859 WARNING :: Binance ETHUSDT: 145451 milliseconds of difference between current time and the trade time
2021-05-30 15:32:53,891 WARNING :: Binance ETHUSDT: 145401 milliseconds of difference between current time and the trade time
2021-05-30 15:32:53,959 WARNING :: Binance ETHUSDT: 145430 milliseconds of difference between current time and the trade time
2021-05-30 15:32:53,961 WARNING :: Binance ETHUSDT: 145316 milliseconds of difference between current time and the trade time
2021-05-30 15:32:53,995 WARNING :: Binance ETHUSDT: 145350 milliseconds of difference between current time and the trade time
2021-05-30 15:32:54,067 WARNING :: Binance ETHUSDT: 145422 milliseconds of difference between current time and the trade time
2021-05-30 15:32:54,096 WARNING :: Binance ETHUSDT: 145250 milliseconds of difference between current time and the trade time
2021-05-30 15:32:54,111 WARNING :: Binance ETHUSDT: 145265 milliseconds of difference between current time and the trade time
2021-05-30 15:32:54,116 WARNING :: Binance ETHUSDT: 145242 milliseconds of difference between current time and the trade time
2021-05-30 15:32:54,137 WARNING :: Binance ETHUSDT: 145234 milliseconds of difference between current time and the trade time
2021-05-30 15:32:54,163 WARNING :: Binance ETHUSDT: 145218 milliseconds of difference between current time and the trade time
2021-05-30 15:32:54,310 WARNING :: Binance ETHUSDT: 145076 milliseconds of difference between current time and the trade time
2021-05-30 15:32:54,377 WARNING :: Binance ETHUSDT: 144768 milliseconds of difference between current time and the trade time
2021-05-30 15:32:54,397 WARNING :: Binance ETHUSDT: 144788 milliseconds of difference between current time and the trade time
2021-05-30 15:32:54,428 WARNING :: Binance ETHUSDT: 144819 milliseconds of difference between current time and the trade time
2021-05-30 15:32:54,469 WARNING :: Binance ETHUSDT: 144796 milliseconds of difference between current time and the trade time
2021-05-30 15:32:54,476 WARNING :: Binance ETHUSDT: 144660 milliseconds of difference between current time and the trade time
2021-05-30 15:32:54,484 WARNING :: Binance ETHUSDT: 144668 milliseconds of difference between current time and the trade time
2021-05-30 15:32:54,506 WARNING :: Binance ETHUSDT: 144690 milliseconds of difference between current time and the trade time
2021-05-30 15:32:54,520 WARNING :: Binance ETHUSDT: 144459 milliseconds of difference between current time and the trade time
2021-05-30 15:32:54,535 WARNING :: Binance ETHUSDT: 144474 milliseconds of difference between current time and the trade time
2021-05-30 15:32:54,542 WARNING :: Binance ETHUSDT: 144428 milliseconds of difference between current time and the trade time
2021-05-30 15:32:54,550 WARNING :: Binance ETHUSDT: 144436 milliseconds of difference between current time and the trade time
2021-05-30 15:32:54,635 WARNING :: Binance ETHUSDT: 144521 milliseconds of difference between current time and the trade time
2021-05-30 15:32:54,673 WARNING :: Binance ETHUSDT: 144282 milliseconds of difference between current time and the trade time
2021-05-30 15:32:54,734 WARNING :: Binance ETHUSDT: 144343 milliseconds of difference between current time and the trade time
2021-05-30 15:32:54,794 WARNING :: Binance ETHUSDT: 144254 milliseconds of difference between current time and the trade time
2021-05-30 15:32:54,878 WARNING :: Binance ETHUSDT: 143947 milliseconds of difference between current time and the trade time
2021-05-30 15:32:54,884 WARNING :: Binance ETHUSDT: 143953 milliseconds of difference between current time and the trade time
2021-05-30 15:32:54,908 WARNING :: Binance ETHUSDT: 143977 milliseconds of difference between current time and the trade time
2021-05-30 15:32:54,928 WARNING :: Binance ETHUSDT: 143923 milliseconds of difference between current time and the trade time
2021-05-30 15:32:54,990 WARNING :: Binance ETHUSDT: 143873 milliseconds of difference between current time and the trade time
2021-05-30 15:32:55,037 WARNING :: Binance ETHUSDT: 143800 milliseconds of difference between current time and the trade time
2021-05-30 15:32:55,145 WARNING :: Binance ETHUSDT: 143486 milliseconds of difference between current time and the trade time
2021-05-30 15:32:55,180 WARNING :: Binance ETHUSDT: 143285 milliseconds of difference between current time and the trade time
2021-05-30 15:32:55,273 WARNING :: Binance ETHUSDT: 143080 milliseconds of difference between current time and the trade time
2021-05-30 15:32:55,353 WARNING :: Binance ETHUSDT: 142955 milliseconds of difference between current time and the trade time
2021-05-30 15:32:55,373 WARNING :: Binance ETHUSDT: 142868 milliseconds of difference between current time and the trade time
2021-05-30 15:32:55,444 WARNING :: Binance ETHUSDT: 142933 milliseconds of difference between current time and the trade time
2021-05-30 15:32:55,552 WARNING :: Binance ETHUSDT: 142766 milliseconds of difference between current time and the trade time
2021-05-30 15:32:55,677 WARNING :: Binance ETHUSDT: 142321 milliseconds of difference between current time and the trade time
2021-05-30 15:32:55,731 WARNING :: Binance ETHUSDT: 142261 milliseconds of difference between current time and the trade time
2021-05-30 15:32:55,793 WARNING :: Binance ETHUSDT: 142093 milliseconds of difference between current time and the trade time
2021-05-30 15:32:55,823 WARNING :: Binance ETHUSDT: 142005 milliseconds of difference between current time and the trade time
2021-05-30 15:32:55,830 WARNING :: Binance ETHUSDT: 141914 milliseconds of difference between current time and the trade time
2021-05-30 15:32:55,842 WARNING :: Binance ETHUSDT: 141926 milliseconds of difference between current time and the trade time
2021-05-30 15:32:55,847 WARNING :: Binance ETHUSDT: 141931 milliseconds of difference between current time and the trade time
2021-05-30 15:32:55,859 WARNING :: Binance ETHUSDT: 141943 milliseconds of difference between current time and the trade time
2021-05-30 15:32:55,869 WARNING :: Binance ETHUSDT: 141953 milliseconds of difference between current time and the trade time
2021-05-30 15:32:55,883 WARNING :: Binance ETHUSDT: 141967 milliseconds of difference between current time and the trade time
2021-05-30 15:32:55,884 WARNING :: Binance ETHUSDT: 141968 milliseconds of difference between current time and the trade time
2021-05-30 15:32:55,901 WARNING :: Binance ETHUSDT: 141985 milliseconds of difference between current time and the trade time
2021-05-30 15:32:55,910 WARNING :: Binance ETHUSDT: 141994 milliseconds of difference between current time and the trade time
2021-05-30 15:32:55,930 WARNING :: Binance ETHUSDT: 142014 milliseconds of difference between current time and the trade time
2021-05-30 15:32:55,944 WARNING :: Binance ETHUSDT: 142028 milliseconds of difference between current time and the trade time
2021-05-30 15:32:55,959 WARNING :: Binance ETHUSDT: 142043 milliseconds of difference between current time and the trade time
2021-05-30 15:32:55,961 WARNING :: Binance ETHUSDT: 142045 milliseconds of difference between current time and the trade time
2021-05-30 15:32:55,978 WARNING :: Binance ETHUSDT: 142062 milliseconds of difference between current time and the trade time
2021-05-30 15:32:55,998 WARNING :: Binance ETHUSDT: 142082 milliseconds of difference between current time and the trade time
2021-05-30 15:32:56,010 WARNING :: Binance ETHUSDT: 142094 milliseconds of difference between current time and the trade time
2021-05-30 15:32:56,027 WARNING :: Binance ETHUSDT: 142111 milliseconds of difference between current time and the trade time
2021-05-30 15:32:56,027 WARNING :: Binance ETHUSDT: 142111 milliseconds of difference between current time and the trade time
2021-05-30 15:32:56,043 WARNING :: Binance ETHUSDT: 142127 milliseconds of difference between current time and the trade time
2021-05-30 15:32:56,050 WARNING :: Binance ETHUSDT: 142134 milliseconds of difference between current time and the trade time
2021-05-30 15:32:56,056 WARNING :: Binance ETHUSDT: 142140 milliseconds of difference between current time and the trade time
2021-05-30 15:32:56,067 WARNING :: Binance ETHUSDT: 142151 milliseconds of difference between current time and the trade time
2021-05-30 15:32:56,078 WARNING :: Binance ETHUSDT: 142162 milliseconds of difference between current time and the trade time
2021-05-30 15:32:56,087 WARNING :: Binance ETHUSDT: 142171 milliseconds of difference between current time and the trade time
2021-05-30 15:32:56,097 WARNING :: Binance ETHUSDT: 142181 milliseconds of difference between current time and the trade time
2021-05-30 15:32:56,097 WARNING :: Binance ETHUSDT: 142181 milliseconds of difference between current time and the trade time
2021-05-30 15:32:56,110 WARNING :: Binance ETHUSDT: 142194 milliseconds of difference between current time and the trade time
2021-05-30 15:32:56,118 WARNING :: Binance ETHUSDT: 142202 milliseconds of difference between current time and the trade time
2021-05-30 15:32:56,134 WARNING :: Binance ETHUSDT: 142218 milliseconds of difference between current time and the trade time
2021-05-30 15:32:56,146 WARNING :: Binance ETHUSDT: 142230 milliseconds of difference between current time and the trade time
2021-05-30 15:32:56,161 WARNING :: Binance ETHUSDT: 142245 milliseconds of difference between current time and the trade time
2021-05-30 15:32:56,171 WARNING :: Binance ETHUSDT: 142255 milliseconds of difference between current time and the trade time
2021-05-30 15:32:56,189 WARNING :: Binance ETHUSDT: 142273 milliseconds of difference between current time and the trade time
2021-05-30 15:32:56,204 WARNING :: Binance ETHUSDT: 142278 milliseconds of difference between current time and the trade time
2021-05-30 15:32:56,245 WARNING :: Binance ETHUSDT: 142319 milliseconds of difference between current time and the trade time
2021-05-30 15:32:56,258 WARNING :: Binance ETHUSDT: 142273 milliseconds of difference between current time and the trade time
2021-05-30 15:32:56,262 WARNING :: Binance ETHUSDT: 142276 milliseconds of difference between current time and the trade time
2021-05-30 15:32:56,282 WARNING :: Binance ETHUSDT: 142296 milliseconds of difference between current time and the trade time
2021-05-30 15:32:56,347 WARNING :: Binance ETHUSDT: 142321 milliseconds of difference between current time and the trade time
2021-05-30 15:32:56,400 WARNING :: Binance ETHUSDT: 142134 milliseconds of difference between current time and the trade time
2021-05-30 15:32:56,425 WARNING :: Binance ETHUSDT: 142049 milliseconds of difference between current time and the trade time
2021-05-30 15:32:56,458 WARNING :: Binance ETHUSDT: 141820 milliseconds of difference between current time and the trade time
2021-05-30 15:32:56,523 WARNING :: Binance ETHUSDT: 141864 milliseconds of difference between current time and the trade time
2021-05-30 15:32:56,564 WARNING :: Binance ETHUSDT: 141776 milliseconds of difference between current time and the trade time
2021-05-30 15:32:56,604 WARNING :: Binance ETHUSDT: 141775 milliseconds of difference between current time and the trade time
2021-05-30 15:32:56,743 WARNING :: Binance ETHUSDT: 141888 milliseconds of difference between current time and the trade time
2021-05-30 15:32:56,767 WARNING :: Binance ETHUSDT: 141780 milliseconds of difference between current time and the trade time
2021-05-30 15:32:56,786 WARNING :: Binance ETHUSDT: 141792 milliseconds of difference between current time and the trade time
2021-05-30 15:32:56,810 WARNING :: Binance ETHUSDT: 141816 milliseconds of difference between current time and the trade time
2021-05-30 15:32:56,875 WARNING :: Binance ETHUSDT: 141865 milliseconds of difference between current time and the trade time
2021-05-30 15:32:56,894 WARNING :: Binance ETHUSDT: 141742 milliseconds of difference between current time and the trade time
2021-05-30 15:32:56,963 WARNING :: Binance ETHUSDT: 141794 milliseconds of difference between current time and the trade time
2021-05-30 15:32:57,064 WARNING :: Binance ETHUSDT: 141789 milliseconds of difference between current time and the trade time
2021-05-30 15:32:57,153 WARNING :: Binance ETHUSDT: 141776 milliseconds of difference between current time and the trade time
2021-05-30 15:32:57,188 WARNING :: Binance ETHUSDT: 141606 milliseconds of difference between current time and the trade time
2021-05-30 15:32:57,204 WARNING :: Binance ETHUSDT: 141508 milliseconds of difference between current time and the trade time
2021-05-30 15:32:57,213 WARNING :: Binance ETHUSDT: 141495 milliseconds of difference between current time and the trade time
2021-05-30 15:32:57,220 WARNING :: Binance ETHUSDT: 141502 milliseconds of difference between current time and the trade time
2021-05-30 15:32:57,230 WARNING :: Binance ETHUSDT: 141512 milliseconds of difference between current time and the trade time
2021-05-30 15:32:57,246 WARNING :: Binance ETHUSDT: 141528 milliseconds of difference between current time and the trade time
2021-05-30 15:32:57,272 WARNING :: Binance ETHUSDT: 141499 milliseconds of difference between current time and the trade time
2021-05-30 15:32:57,357 WARNING :: Binance ETHUSDT: 141490 milliseconds of difference between current time and the trade time
2021-05-30 15:32:57,578 WARNING :: Binance ETHUSDT: 141224 milliseconds of difference between current time and the trade time
2021-05-30 15:32:57,622 WARNING :: Binance ETHUSDT: 141238 milliseconds of difference between current time and the trade time
2021-05-30 15:32:57,677 WARNING :: Binance ETHUSDT: 141212 milliseconds of difference between current time and the trade time
2021-05-30 15:32:57,690 WARNING :: Binance ETHUSDT: 141102 milliseconds of difference between current time and the trade time
2021-05-30 15:32:57,704 WARNING :: Binance ETHUSDT: 141116 milliseconds of difference between current time and the trade time
2021-05-30 15:32:57,718 WARNING :: Binance ETHUSDT: 141130 milliseconds of difference between current time and the trade time
2021-05-30 15:32:57,732 WARNING :: Binance ETHUSDT: 141144 milliseconds of difference between current time and the trade time
2021-05-30 15:32:57,743 WARNING :: Binance ETHUSDT: 141155 milliseconds of difference between current time and the trade time
2021-05-30 15:32:57,753 WARNING :: Binance ETHUSDT: 141164 milliseconds of difference between current time and the trade time
2021-05-30 15:32:57,784 WARNING :: Binance ETHUSDT: 141196 milliseconds of difference between current time and the trade time
2021-05-30 15:32:57,793 WARNING :: Binance ETHUSDT: 141080 milliseconds of difference between current time and the trade time
2021-05-30 15:32:57,808 WARNING :: Binance ETHUSDT: 141095 milliseconds of difference between current time and the trade time
2021-05-30 15:32:57,879 WARNING :: Binance ETHUSDT: 141166 milliseconds of difference between current time and the trade time
2021-05-30 15:32:57,971 WARNING :: Binance ETHUSDT: 141123 milliseconds of difference between current time and the trade time
2021-05-30 15:32:58,066 WARNING :: Binance ETHUSDT: 140969 milliseconds of difference between current time and the trade time
2021-05-30 15:32:58,129 WARNING :: Binance ETHUSDT: 140669 milliseconds of difference between current time and the trade time
2021-05-30 15:32:58,162 WARNING :: Binance ETHUSDT: 140702 milliseconds of difference between current time and the trade time
2021-05-30 15:32:58,170 WARNING :: Binance ETHUSDT: 140710 milliseconds of difference between current time and the trade time
2021-05-30 15:32:58,233 WARNING :: Binance ETHUSDT: 140773 milliseconds of difference between current time and the trade time
2021-05-30 15:32:58,342 WARNING :: Binance ETHUSDT: 140628 milliseconds of difference between current time and the trade time
2021-05-30 15:32:58,418 WARNING :: Binance ETHUSDT: 140485 milliseconds of difference between current time and the trade time
2021-05-30 15:32:58,445 WARNING :: Binance ETHUSDT: 140348 milliseconds of difference between current time and the trade time
2021-05-30 15:32:58,510 WARNING :: Binance ETHUSDT: 140399 milliseconds of difference between current time and the trade time
2021-05-30 15:32:58,537 WARNING :: Binance ETHUSDT: 140257 milliseconds of difference between current time and the trade time
2021-05-30 15:32:58,544 WARNING :: Binance ETHUSDT: 140264 milliseconds of difference between current time and the trade time
2021-05-30 15:32:58,583 WARNING :: Binance ETHUSDT: 140303 milliseconds of difference between current time and the trade time
2021-05-30 15:32:58,607 WARNING :: Binance ETHUSDT: 140286 milliseconds of difference between current time and the trade time
2021-05-30 15:32:58,633 WARNING :: Binance ETHUSDT: 140262 milliseconds of difference between current time and the trade time
2021-05-30 15:32:58,657 WARNING :: Binance ETHUSDT: 140160 milliseconds of difference between current time and the trade time
2021-05-30 15:32:58,694 WARNING :: Binance ETHUSDT: 140025 milliseconds of difference between current time and the trade time
2021-05-30 15:32:58,795 WARNING :: Binance ETHUSDT: 139637 milliseconds of difference between current time and the trade time
2021-05-30 15:32:58,801 WARNING :: Binance ETHUSDT: 139620 milliseconds of difference between current time and the trade time
2021-05-30 15:32:58,828 WARNING :: Binance ETHUSDT: 139647 milliseconds of difference between current time and the trade time
2021-05-30 15:32:58,834 WARNING :: Binance ETHUSDT: 139563 milliseconds of difference between current time and the trade time
2021-05-30 15:32:58,841 WARNING :: Binance ETHUSDT: 139570 milliseconds of difference between current time and the trade time
2021-05-30 15:32:58,846 WARNING :: Binance ETHUSDT: 139575 milliseconds of difference between current time and the trade time
2021-05-30 15:32:58,861 WARNING :: Binance ETHUSDT: 139590 milliseconds of difference between current time and the trade time
2021-05-30 15:32:58,869 WARNING :: Binance ETHUSDT: 139598 milliseconds of difference between current time and the trade time
2021-05-30 15:32:58,875 WARNING :: Binance ETHUSDT: 139604 milliseconds of difference between current time and the trade time
2021-05-30 15:32:58,885 WARNING :: Binance ETHUSDT: 139614 milliseconds of difference between current time and the trade time
2021-05-30 15:32:58,894 WARNING :: Binance ETHUSDT: 139623 milliseconds of difference between current time and the trade time
2021-05-30 15:32:58,910 WARNING :: Binance ETHUSDT: 139639 milliseconds of difference between current time and the trade time
2021-05-30 15:32:58,919 WARNING :: Binance ETHUSDT: 139648 milliseconds of difference between current time and the trade time
2021-05-30 15:32:58,927 WARNING :: Binance ETHUSDT: 139656 milliseconds of difference between current time and the trade time
2021-05-30 15:32:58,950 WARNING :: Binance ETHUSDT: 139679 milliseconds of difference between current time and the trade time
2021-05-30 15:32:58,956 WARNING :: Binance ETHUSDT: 139685 milliseconds of difference between current time and the trade time
2021-05-30 15:32:58,972 WARNING :: Binance ETHUSDT: 139701 milliseconds of difference between current time and the trade time
2021-05-30 15:32:58,989 WARNING :: Binance ETHUSDT: 139718 milliseconds of difference between current time and the trade time
2021-05-30 15:32:59,002 WARNING :: Binance ETHUSDT: 139731 milliseconds of difference between current time and the trade time
2021-05-30 15:32:59,026 WARNING :: Binance ETHUSDT: 139755 milliseconds of difference between current time and the trade time
2021-05-30 15:32:59,066 WARNING :: Binance ETHUSDT: 139795 milliseconds of difference between current time and the trade time
2021-05-30 15:32:59,076 WARNING :: Binance ETHUSDT: 139688 milliseconds of difference between current time and the trade time
2021-05-30 15:32:59,077 WARNING :: Binance ETHUSDT: 139689 milliseconds of difference between current time and the trade time
2021-05-30 15:32:59,102 WARNING :: Binance ETHUSDT: 139714 milliseconds of difference between current time and the trade time
2021-05-30 15:32:59,102 WARNING :: Binance ETHUSDT: 139614 milliseconds of difference between current time and the trade time
2021-05-30 15:32:59,127 WARNING :: Binance ETHUSDT: 139638 milliseconds of difference between current time and the trade time
2021-05-30 15:32:59,143 WARNING :: Binance ETHUSDT: 139580 milliseconds of difference between current time and the trade time
2021-05-30 15:32:59,159 WARNING :: Binance ETHUSDT: 139577 milliseconds of difference between current time and the trade time
2021-05-30 15:32:59,178 WARNING :: Binance ETHUSDT: 139596 milliseconds of difference between current time and the trade time
2021-05-30 15:32:59,208 WARNING :: Binance ETHUSDT: 139578 milliseconds of difference between current time and the trade time
2021-05-30 15:32:59,219 WARNING :: Binance ETHUSDT: 139572 milliseconds of difference between current time and the trade time
2021-05-30 15:32:59,227 WARNING :: Binance ETHUSDT: 139580 milliseconds of difference between current time and the trade time
2021-05-30 15:32:59,235 WARNING :: Binance ETHUSDT: 139588 milliseconds of difference between current time and the trade time
2021-05-30 15:32:59,261 WARNING :: Binance ETHUSDT: 139611 milliseconds of difference between current time and the trade time
2021-05-30 15:32:59,268 WARNING :: Binance ETHUSDT: 139492 milliseconds of difference between current time and the trade time
2021-05-30 15:32:59,283 WARNING :: Binance ETHUSDT: 139507 milliseconds of difference between current time and the trade time
2021-05-30 15:32:59,297 WARNING :: Binance ETHUSDT: 139521 milliseconds of difference between current time and the trade time
2021-05-30 15:32:59,322 WARNING :: Binance ETHUSDT: 139546 milliseconds of difference between current time and the trade time
2021-05-30 15:32:59,335 WARNING :: Binance ETHUSDT: 139476 milliseconds of difference between current time and the trade time
2021-05-30 15:32:59,360 WARNING :: Binance ETHUSDT: 139453 milliseconds of difference between current time and the trade time
2021-05-30 15:32:59,394 WARNING :: Binance ETHUSDT: 139380 milliseconds of difference between current time and the trade time
2021-05-30 15:32:59,414 WARNING :: Binance ETHUSDT: 139214 milliseconds of difference between current time and the trade time
2021-05-30 15:32:59,434 WARNING :: Binance ETHUSDT: 139220 milliseconds of difference between current time and the trade time
2021-05-30 15:32:59,442 WARNING :: Binance ETHUSDT: 139144 milliseconds of difference between current time and the trade time
2021-05-30 15:32:59,456 WARNING :: Binance ETHUSDT: 139158 milliseconds of difference between current time and the trade time
2021-05-30 15:32:59,470 WARNING :: Binance ETHUSDT: 139172 milliseconds of difference between current time and the trade time
2021-05-30 15:32:59,509 WARNING :: Binance ETHUSDT: 139211 milliseconds of difference between current time and the trade time
2021-05-30 15:32:59,542 WARNING :: Binance ETHUSDT: 139152 milliseconds of difference between current time and the trade time
2021-05-30 15:32:59,556 WARNING :: Binance ETHUSDT: 139076 milliseconds of difference between current time and the trade time
2021-05-30 15:32:59,569 WARNING :: Binance ETHUSDT: 139089 milliseconds of difference between current time and the trade time
2021-05-30 15:32:59,582 WARNING :: Binance ETHUSDT: 139102 milliseconds of difference between current time and the trade time
2021-05-30 15:32:59,619 WARNING :: Binance ETHUSDT: 139134 milliseconds of difference between current time and the trade time
2021-05-30 15:32:59,646 WARNING :: Binance ETHUSDT: 138943 milliseconds of difference between current time and the trade time
2021-05-30 15:32:59,695 WARNING :: Binance ETHUSDT: 138982 milliseconds of difference between current time and the trade time
2021-05-30 15:32:59,737 WARNING :: Binance ETHUSDT: 138839 milliseconds of difference between current time and the trade time
2021-05-30 15:32:59,764 WARNING :: Binance ETHUSDT: 138803 milliseconds of difference between current time and the trade time
2021-05-30 15:32:59,806 WARNING :: Binance ETHUSDT: 138828 milliseconds of difference between current time and the trade time
2021-05-30 15:32:59,819 WARNING :: Binance ETHUSDT: 138688 milliseconds of difference between current time and the trade time
2021-05-30 15:32:59,838 WARNING :: Binance ETHUSDT: 138707 milliseconds of difference between current time and the trade time
2021-05-30 15:32:59,853 WARNING :: Binance ETHUSDT: 138712 milliseconds of difference between current time and the trade time
2021-05-30 15:32:59,878 WARNING :: Binance ETHUSDT: 138715 milliseconds of difference between current time and the trade time
2021-05-30 15:32:59,914 WARNING :: Binance ETHUSDT: 138620 milliseconds of difference between current time and the trade time
2021-05-30 15:32:59,930 WARNING :: Binance ETHUSDT: 138559 milliseconds of difference between current time and the trade time
2021-05-30 15:32:59,965 WARNING :: Binance ETHUSDT: 138594 milliseconds of difference between current time and the trade time
2021-05-30 15:32:59,983 WARNING :: Binance ETHUSDT: 138536 milliseconds of difference between current time and the trade time
2021-05-30 15:32:59,996 WARNING :: Binance ETHUSDT: 138549 milliseconds of difference between current time and the trade time
2021-05-30 15:33:00,010 WARNING :: Binance ETHUSDT: 138563 milliseconds of difference between current time and the trade time
2021-05-30 15:33:00,030 WARNING :: Binance ETHUSDT: 138583 milliseconds of difference between current time and the trade time
2021-05-30 15:33:00,062 WARNING :: Binance ETHUSDT: 138580 milliseconds of difference between current time and the trade time
2021-05-30 15:33:00,091 WARNING :: Binance ETHUSDT: 138430 milliseconds of difference between current time and the trade time
2021-05-30 15:33:00,115 WARNING :: Binance ETHUSDT: 138236 milliseconds of difference between current time and the trade time
2021-05-30 15:33:00,126 WARNING :: Binance ETHUSDT: 138246 milliseconds of difference between current time and the trade time
2021-05-30 15:33:00,139 WARNING :: Binance ETHUSDT: 138259 milliseconds of difference between current time and the trade time
2021-05-30 15:33:00,152 WARNING :: Binance ETHUSDT: 138272 milliseconds of difference between current time and the trade time
2021-05-30 15:33:00,164 WARNING :: Binance ETHUSDT: 138284 milliseconds of difference between current time and the trade time
2021-05-30 15:33:00,173 WARNING :: Binance ETHUSDT: 138293 milliseconds of difference between current time and the trade time
2021-05-30 15:33:00,184 WARNING :: Binance ETHUSDT: 138304 milliseconds of difference between current time and the trade time
2021-05-30 15:33:00,190 WARNING :: Binance ETHUSDT: 138310 milliseconds of difference between current time and the trade time
2021-05-30 15:33:00,204 WARNING :: Binance ETHUSDT: 138324 milliseconds of difference between current time and the trade time
2021-05-30 15:33:00,214 WARNING :: Binance ETHUSDT: 138334 milliseconds of difference between current time and the trade time
2021-05-30 15:33:00,222 WARNING :: Binance ETHUSDT: 138342 milliseconds of difference between current time and the trade time
2021-05-30 15:33:00,231 WARNING :: Binance ETHUSDT: 138351 milliseconds of difference between current time and the trade time
2021-05-30 15:33:00,238 WARNING :: Binance ETHUSDT: 138358 milliseconds of difference between current time and the trade time
2021-05-30 15:33:00,246 WARNING :: Binance ETHUSDT: 138366 milliseconds of difference between current time and the trade time
2021-05-30 15:33:00,254 WARNING :: Binance ETHUSDT: 138374 milliseconds of difference between current time and the trade time
2021-05-30 15:33:00,266 WARNING :: Binance ETHUSDT: 138386 milliseconds of difference between current time and the trade time
2021-05-30 15:33:00,273 WARNING :: Binance ETHUSDT: 138393 milliseconds of difference between current time and the trade time
2021-05-30 15:33:00,282 WARNING :: Binance ETHUSDT: 138402 milliseconds of difference between current time and the trade time
2021-05-30 15:33:00,291 WARNING :: Binance ETHUSDT: 138411 milliseconds of difference between current time and the trade time
2021-05-30 15:33:00,300 WARNING :: Binance ETHUSDT: 138420 milliseconds of difference between current time and the trade time
2021-05-30 15:33:00,311 WARNING :: Binance ETHUSDT: 138431 milliseconds of difference between current time and the trade time
2021-05-30 15:33:00,329 WARNING :: Binance ETHUSDT: 138449 milliseconds of difference between current time and the trade time
2021-05-30 15:33:00,361 WARNING :: Binance ETHUSDT: 138448 milliseconds of difference between current time and the trade time
2021-05-30 15:33:00,375 WARNING :: Binance ETHUSDT: 138275 milliseconds of difference between current time and the trade time
2021-05-30 15:33:00,465 WARNING :: Binance ETHUSDT: 138365 milliseconds of difference between current time and the trade time
2021-05-30 15:33:00,496 WARNING :: Binance ETHUSDT: 138172 milliseconds of difference between current time and the trade time
2021-05-30 15:33:00,513 WARNING :: Binance ETHUSDT: 138180 milliseconds of difference between current time and the trade time
2021-05-30 15:33:00,526 WARNING :: Binance ETHUSDT: 138193 milliseconds of difference between current time and the trade time
2021-05-30 15:33:00,539 WARNING :: Binance ETHUSDT: 138206 milliseconds of difference between current time and the trade time
2021-05-30 15:33:00,547 WARNING :: Binance ETHUSDT: 138214 milliseconds of difference between current time and the trade time
2021-05-30 15:33:00,612 WARNING :: Binance ETHUSDT: 138278 milliseconds of difference between current time and the trade time
2021-05-30 15:33:00,710 WARNING :: Binance ETHUSDT: 137977 milliseconds of difference between current time and the trade time
2021-05-30 15:33:00,736 WARNING :: Binance ETHUSDT: 137761 milliseconds of difference between current time and the trade time
2021-05-30 15:33:00,805 WARNING :: Binance ETHUSDT: 137619 milliseconds of difference between current time and the trade time
2021-05-30 15:33:00,830 WARNING :: Binance ETHUSDT: 137644 milliseconds of difference between current time and the trade time
2021-05-30 15:33:00,855 WARNING :: Binance ETHUSDT: 137661 milliseconds of difference between current time and the trade time
2021-05-30 15:33:00,881 WARNING :: Binance ETHUSDT: 137677 milliseconds of difference between current time and the trade time
2021-05-30 15:33:00,894 WARNING :: Binance ETHUSDT: 137674 milliseconds of difference between current time and the trade time
2021-05-30 15:33:00,901 WARNING :: Binance ETHUSDT: 137674 milliseconds of difference between current time and the trade time
2021-05-30 15:33:00,912 WARNING :: Binance ETHUSDT: 137685 milliseconds of difference between current time and the trade time
2021-05-30 15:33:00,919 WARNING :: Binance ETHUSDT: 137685 milliseconds of difference between current time and the trade time
2021-05-30 15:33:00,930 WARNING :: Binance ETHUSDT: 137696 milliseconds of difference between current time and the trade time
2021-05-30 15:33:00,945 WARNING :: Binance ETHUSDT: 137707 milliseconds of difference between current time and the trade time
2021-05-30 15:33:00,970 WARNING :: Binance ETHUSDT: 137723 milliseconds of difference between current time and the trade time
2021-05-30 15:33:00,980 WARNING :: Binance ETHUSDT: 137707 milliseconds of difference between current time and the trade time
2021-05-30 15:33:00,993 WARNING :: Binance ETHUSDT: 137718 milliseconds of difference between current time and the trade time
2021-05-30 15:33:01,006 WARNING :: Binance ETHUSDT: 137720 milliseconds of difference between current time and the trade time
2021-05-30 15:33:01,017 WARNING :: Binance ETHUSDT: 137728 milliseconds of difference between current time and the trade time
2021-05-30 15:33:01,033 WARNING :: Binance ETHUSDT: 137741 milliseconds of difference between current time and the trade time
2021-05-30 15:33:01,064 WARNING :: Binance ETHUSDT: 137772 milliseconds of difference between current time and the trade time
2021-05-30 15:33:01,094 WARNING :: Binance ETHUSDT: 137774 milliseconds of difference between current time and the trade time
2021-05-30 15:33:01,152 WARNING :: Binance ETHUSDT: 110278 milliseconds of difference between current time and the trade time
2021-05-30 15:33:01,152 INFO :: Binance New candle for ETHUSDT 1m
2021-05-30 15:33:01,161 WARNING :: Binance ETHUSDT: 110186 milliseconds of difference between current time and the trade time
2021-05-30 15:33:01,210 WARNING :: Binance ETHUSDT: 110230 milliseconds of difference between current time and the trade time
2021-05-30 15:33:01,279 WARNING :: Binance ETHUSDT: 110155 milliseconds of difference between current time and the trade time
2021-05-30 15:33:01,316 WARNING :: Binance ETHUSDT: 110024 milliseconds of difference between current time and the trade time
2021-05-30 15:33:01,344 WARNING :: Binance ETHUSDT: 110007 milliseconds of difference between current time and the trade time
2021-05-30 15:33:01,376 WARNING :: Binance ETHUSDT: 110012 milliseconds of difference between current time and the trade time
2021-05-30 15:33:01,426 WARNING :: Binance ETHUSDT: 110017 milliseconds of difference between current time and the trade time
2021-05-30 15:33:01,442 WARNING :: Binance ETHUSDT: 109919 milliseconds of difference between current time and the trade time
2021-05-30 15:33:01,452 WARNING :: Binance ETHUSDT: 109929 milliseconds of difference between current time and the trade time
2021-05-30 15:33:01,462 WARNING :: Binance ETHUSDT: 109939 milliseconds of difference between current time and the trade time
2021-05-30 15:33:01,470 WARNING :: Binance ETHUSDT: 109947 milliseconds of difference between current time and the trade time
2021-05-30 15:33:01,478 WARNING :: Binance ETHUSDT: 109955 milliseconds of difference between current time and the trade time
2021-05-30 15:33:01,488 WARNING :: Binance ETHUSDT: 109965 milliseconds of difference between current time and the trade time
2021-05-30 15:33:01,510 WARNING :: Binance ETHUSDT: 109987 milliseconds of difference between current time and the trade time
2021-05-30 15:33:01,548 WARNING :: Binance ETHUSDT: 110009 milliseconds of difference between current time and the trade time
2021-05-30 15:33:01,564 WARNING :: Binance ETHUSDT: 109857 milliseconds of difference between current time and the trade time
2021-05-30 15:33:01,598 WARNING :: Binance ETHUSDT: 109881 milliseconds of difference between current time and the trade time
2021-05-30 15:33:01,632 WARNING :: Binance ETHUSDT: 109712 milliseconds of difference between current time and the trade time
2021-05-30 15:33:01,686 WARNING :: Binance ETHUSDT: 109428 milliseconds of difference between current time and the trade time
2021-05-30 15:33:01,719 WARNING :: Binance ETHUSDT: 109335 milliseconds of difference between current time and the trade time
2021-05-30 15:33:01,737 WARNING :: Binance ETHUSDT: 109231 milliseconds of difference between current time and the trade time
2021-05-30 15:33:01,750 WARNING :: Binance ETHUSDT: 109244 milliseconds of difference between current time and the trade time
2021-05-30 15:33:01,784 WARNING :: Binance ETHUSDT: 109278 milliseconds of difference between current time and the trade time
2021-05-30 15:33:01,792 WARNING :: Binance ETHUSDT: 109137 milliseconds of difference between current time and the trade time
2021-05-30 15:33:01,818 WARNING :: Binance ETHUSDT: 109163 milliseconds of difference between current time and the trade time
2021-05-30 15:33:01,833 WARNING :: Binance ETHUSDT: 109043 milliseconds of difference between current time and the trade time
2021-05-30 15:33:01,846 WARNING :: Binance ETHUSDT: 109056 milliseconds of difference between current time and the trade time
2021-05-30 15:33:01,860 WARNING :: Binance ETHUSDT: 109070 milliseconds of difference between current time and the trade time
2021-05-30 15:33:01,875 WARNING :: Binance ETHUSDT: 109070 milliseconds of difference between current time and the trade time
2021-05-30 15:33:01,902 WARNING :: Binance ETHUSDT: 109063 milliseconds of difference between current time and the trade time
2021-05-30 15:33:01,917 WARNING :: Binance ETHUSDT: 108873 milliseconds of difference between current time and the trade time
2021-05-30 15:33:01,968 WARNING :: Binance ETHUSDT: 108905 milliseconds of difference between current time and the trade time
2021-05-30 15:33:02,007 WARNING :: Binance ETHUSDT: 108763 milliseconds of difference between current time and the trade time
2021-05-30 15:33:02,042 WARNING :: Binance ETHUSDT: 108608 milliseconds of difference between current time and the trade time
2021-05-30 15:33:02,069 WARNING :: Binance ETHUSDT: 108496 milliseconds of difference between current time and the trade time
2021-05-30 15:33:02,083 WARNING :: Binance ETHUSDT: 108381 milliseconds of difference between current time and the trade time
2021-05-30 15:33:02,088 WARNING :: Binance ETHUSDT: 108337 milliseconds of difference between current time and the trade time
2021-05-30 15:33:02,114 WARNING :: Binance ETHUSDT: 108363 milliseconds of difference between current time and the trade time
2021-05-30 15:33:02,123 WARNING :: Binance ETHUSDT: 108242 milliseconds of difference between current time and the trade time
2021-05-30 15:33:02,186 WARNING :: Binance ETHUSDT: 108298 milliseconds of difference between current time and the trade time
2021-05-30 15:33:02,236 WARNING :: Binance ETHUSDT: 108131 milliseconds of difference between current time and the trade time
2021-05-30 15:33:02,245 WARNING :: Binance ETHUSDT: 108107 milliseconds of difference between current time and the trade time
2021-05-30 15:33:02,279 WARNING :: Binance ETHUSDT: 108141 milliseconds of difference between current time and the trade time
2021-05-30 15:33:02,344 WARNING :: Binance ETHUSDT: 108038 milliseconds of difference between current time and the trade time
2021-05-30 15:33:02,403 WARNING :: Binance ETHUSDT: 107992 milliseconds of difference between current time and the trade time
2021-05-30 15:33:02,442 WARNING :: Binance ETHUSDT: 107910 milliseconds of difference between current time and the trade time
2021-05-30 15:33:02,462 WARNING :: Binance ETHUSDT: 107671 milliseconds of difference between current time and the trade time
2021-05-30 15:33:02,480 WARNING :: Binance ETHUSDT: 107689 milliseconds of difference between current time and the trade time
2021-05-30 15:33:02,515 WARNING :: Binance ETHUSDT: 107670 milliseconds of difference between current time and the trade time
2021-05-30 15:33:02,532 WARNING :: Binance ETHUSDT: 107591 milliseconds of difference between current time and the trade time
2021-05-30 15:33:02,547 WARNING :: Binance ETHUSDT: 107601 milliseconds of difference between current time and the trade time
2021-05-30 15:33:02,563 WARNING :: Binance ETHUSDT: 107605 milliseconds of difference between current time and the trade time
2021-05-30 15:33:02,608 WARNING :: Binance ETHUSDT: 107650 milliseconds of difference between current time and the trade time
2021-05-30 15:33:02,643 WARNING :: Binance ETHUSDT: 107409 milliseconds of difference between current time and the trade time
2021-05-30 15:33:02,688 WARNING :: Binance ETHUSDT: 107454 milliseconds of difference between current time and the trade time
2021-05-30 15:33:02,762 WARNING :: Binance ETHUSDT: 107138 milliseconds of difference between current time and the trade time
2021-05-30 15:33:02,809 WARNING :: Binance ETHUSDT: 107023 milliseconds of difference between current time and the trade time
2021-05-30 15:33:02,847 WARNING :: Binance ETHUSDT: 106817 milliseconds of difference between current time and the trade time
2021-05-30 15:33:02,866 WARNING :: Binance ETHUSDT: 106836 milliseconds of difference between current time and the trade time
2021-05-30 15:33:02,904 WARNING :: Binance ETHUSDT: 106874 milliseconds of difference between current time and the trade time
2021-05-30 15:33:02,913 WARNING :: Binance ETHUSDT: 106800 milliseconds of difference between current time and the trade time
2021-05-30 15:33:02,964 WARNING :: Binance ETHUSDT: 106851 milliseconds of difference between current time and the trade time
2021-05-30 15:33:03,016 WARNING :: Binance ETHUSDT: 106789 milliseconds of difference between current time and the trade time
2021-05-30 15:33:03,129 WARNING :: Binance ETHUSDT: 106744 milliseconds of difference between current time and the trade time
2021-05-30 15:33:03,169 WARNING :: Binance ETHUSDT: 106655 milliseconds of difference between current time and the trade time
2021-05-30 15:33:03,204 WARNING :: Binance ETHUSDT: 106652 milliseconds of difference between current time and the trade time
2021-05-30 15:33:03,219 WARNING :: Binance ETHUSDT: 106615 milliseconds of difference between current time and the trade time
2021-05-30 15:33:03,235 WARNING :: Binance ETHUSDT: 106631 milliseconds of difference between current time and the trade time
2021-05-30 15:33:03,282 WARNING :: Binance ETHUSDT: 106670 milliseconds of difference between current time and the trade time
2021-05-30 15:33:03,302 WARNING :: Binance ETHUSDT: 106604 milliseconds of difference between current time and the trade time