-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathinfo.log
2840 lines (2840 loc) · 289 KB
/
info.log
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
2022-12-23 19:39:23,043 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 14:32:23,446 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 14:40:45,205 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 14:40:46,065 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/exchangeInfo HTTP/1.1" 200 None
2022-12-24 14:40:46,081 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 14:40:46,787 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/account?timestamp=1671880246078&signature=b982d2facf86bddcc85d153ffa05a468b9e354bb3bbc5eb7359394683913d9cf HTTP/1.1" 200 None
2022-12-24 14:40:46,818 INFO :: Binance Futures Client successfully initialized
2022-12-24 14:40:46,921 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-24 14:40:47,435 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/instrument/active HTTP/1.1" 400 59
2022-12-24 14:40:47,439 ERROR :: Error while making GET request to /api/v1/instrument/active: {'error': {'message': 'Missing API key.', 'name': 'HTTPError'}} (error code 400)
2022-12-24 14:40:47,441 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-24 14:40:47,716 ERROR :: Binance connection error: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:992)
2022-12-24 14:40:47,716 WARNING :: Binance Websocket connection closed
2022-12-24 14:40:47,945 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/user/margin?currency=all HTTP/1.1" 400 59
2022-12-24 14:40:47,950 ERROR :: Error while making GET request to /api/v1/user/margin: {'error': {'message': 'Missing API key.', 'name': 'HTTPError'}} (error code 400)
2022-12-24 14:40:47,951 INFO :: Bitmex Client successfully initialized
2022-12-24 14:40:49,096 ERROR :: Bitmex connection error: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:992)
2022-12-24 14:40:49,098 WARNING :: Bitmex Websocket connection closed
2022-12-24 14:40:50,419 ERROR :: Binance connection error: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:992)
2022-12-24 14:40:50,420 WARNING :: Binance Websocket connection closed
2022-12-24 14:40:51,475 ERROR :: Bitmex connection error: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:992)
2022-12-24 14:40:51,475 WARNING :: Bitmex Websocket connection closed
2022-12-24 14:40:53,105 ERROR :: Binance connection error: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:992)
2022-12-24 14:40:53,105 WARNING :: Binance Websocket connection closed
2022-12-24 14:40:53,755 ERROR :: Bitmex connection error: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:992)
2022-12-24 14:40:53,755 WARNING :: Bitmex Websocket connection closed
2022-12-24 14:40:55,918 ERROR :: Binance connection error: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:992)
2022-12-24 14:40:55,919 WARNING :: Binance Websocket connection closed
2022-12-24 14:40:56,036 ERROR :: Bitmex connection error: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:992)
2022-12-24 14:40:56,036 WARNING :: Bitmex Websocket connection closed
2022-12-24 14:40:58,334 ERROR :: Bitmex connection error: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:992)
2022-12-24 14:40:58,335 WARNING :: Bitmex Websocket connection closed
2022-12-24 14:40:58,564 ERROR :: Binance connection error: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:992)
2022-12-24 14:40:58,565 WARNING :: Binance Websocket connection closed
2022-12-24 14:41:00,634 ERROR :: Bitmex connection error: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:992)
2022-12-24 14:41:00,635 WARNING :: Bitmex Websocket connection closed
2022-12-24 14:41:01,257 ERROR :: Binance connection error: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:992)
2022-12-24 14:41:01,257 WARNING :: Binance Websocket connection closed
2022-12-24 14:41:02,914 ERROR :: Bitmex connection error: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:992)
2022-12-24 14:41:02,915 WARNING :: Bitmex Websocket connection closed
2022-12-24 14:41:03,934 ERROR :: Binance connection error: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:992)
2022-12-24 14:41:03,934 WARNING :: Binance Websocket connection closed
2022-12-24 14:41:05,215 ERROR :: Bitmex connection error: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:992)
2022-12-24 14:41:05,215 WARNING :: Bitmex Websocket connection closed
2022-12-24 14:41:06,786 ERROR :: Binance connection error: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:992)
2022-12-24 14:41:06,787 WARNING :: Binance Websocket connection closed
2022-12-24 14:41:07,516 ERROR :: Bitmex connection error: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:992)
2022-12-24 14:41:07,516 WARNING :: Bitmex Websocket connection closed
2022-12-24 14:41:09,528 ERROR :: Binance connection error: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:992)
2022-12-24 14:41:09,562 WARNING :: Binance Websocket connection closed
2022-12-24 14:41:09,775 ERROR :: Bitmex connection error: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:992)
2022-12-24 14:41:09,775 WARNING :: Bitmex Websocket connection closed
2022-12-24 14:41:12,068 ERROR :: Bitmex connection error: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:992)
2022-12-24 14:41:12,069 WARNING :: Bitmex Websocket connection closed
2022-12-24 14:41:12,272 ERROR :: Binance connection error: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:992)
2022-12-24 14:41:12,273 WARNING :: Binance Websocket connection closed
2022-12-24 14:41:14,353 ERROR :: Bitmex connection error: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:992)
2022-12-24 14:41:14,354 WARNING :: Bitmex Websocket connection closed
2022-12-24 14:41:14,977 ERROR :: Binance connection error: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:992)
2022-12-24 14:41:14,977 WARNING :: Binance Websocket connection closed
2022-12-24 14:41:16,643 ERROR :: Bitmex connection error: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:992)
2022-12-24 14:41:16,644 WARNING :: Bitmex Websocket connection closed
2022-12-24 14:41:17,673 ERROR :: Binance connection error: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:992)
2022-12-24 14:41:17,673 WARNING :: Binance Websocket connection closed
2022-12-24 14:41:18,933 ERROR :: Bitmex connection error: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:992)
2022-12-24 14:41:18,934 WARNING :: Bitmex Websocket connection closed
2022-12-24 14:41:20,364 ERROR :: Binance connection error: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:992)
2022-12-24 14:41:20,364 WARNING :: Binance Websocket connection closed
2022-12-24 14:41:21,503 ERROR :: Bitmex connection error: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:992)
2022-12-24 14:41:21,504 WARNING :: Bitmex Websocket connection closed
2022-12-24 14:41:23,812 ERROR :: Binance connection error: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:992)
2022-12-24 14:41:23,812 WARNING :: Binance Websocket connection closed
2022-12-24 14:41:23,979 ERROR :: Bitmex connection error: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:992)
2022-12-24 14:41:23,979 WARNING :: Bitmex Websocket connection closed
2022-12-24 15:06:18,403 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 15:06:19,638 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/exchangeInfo HTTP/1.1" 200 None
2022-12-24 15:06:19,647 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 15:06:20,354 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/account?timestamp=1671881779645&signature=5e3235701f4069c0c13aefacd7422aac52af2b683c2e1df37df746e188d409cc HTTP/1.1" 200 None
2022-12-24 15:06:20,359 INFO :: Binance Futures Client successfully initialized
2022-12-24 15:06:20,404 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-24 15:06:21,962 INFO :: Binance connection opened
2022-12-24 15:06:21,962 INFO :: Binance: subscribing to: btcusdt@bookTicker
2022-12-24 15:08:04,589 ERROR :: Connection error while making GET request to /api/v1/instrument/active: ('Connection aborted.', RemoteDisconnected('Remote end closed connection without response'))
2022-12-24 15:08:04,663 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-24 15:08:05,182 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/user/margin?currency=all HTTP/1.1" 400 59
2022-12-24 15:08:05,186 ERROR :: Error while making GET request to /api/v1/user/margin: {'error': {'message': 'Missing API key.', 'name': 'HTTPError'}} (error code 400)
2022-12-24 15:08:05,187 INFO :: Bitmex Client successfully initialized
2022-12-24 15:08:06,209 INFO :: Bitmex connection opened
2022-12-24 15:08:31,529 WARNING :: Binance Websocket connection closed
2022-12-24 15:08:31,658 WARNING :: Bitmex Websocket connection closed
2022-12-24 15:26:46,654 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 15:26:47,797 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/exchangeInfo HTTP/1.1" 200 None
2022-12-24 15:26:47,805 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 15:27:07,618 ERROR :: Connection error while making GET request to /fapi/v1/account: ('Connection aborted.', ConnectionResetError(54, 'Connection reset by peer'))
2022-12-24 15:27:07,619 INFO :: Binance Futures Client successfully initialized
2022-12-24 15:27:07,622 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-24 15:27:09,856 INFO :: Binance connection opened
2022-12-24 15:27:09,866 INFO :: Binance: subscribing to: btcusdt@bookTicker
2022-12-24 15:27:28,123 ERROR :: Connection error while making GET request to /api/v1/instrument/active: ('Connection aborted.', ConnectionResetError(54, 'Connection reset by peer'))
2022-12-24 15:27:28,125 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-24 15:27:28,636 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/user/margin?currency=all HTTP/1.1" 403 None
2022-12-24 15:29:48,371 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 15:35:36,283 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 15:35:37,411 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/exchangeInfo HTTP/1.1" 200 None
2022-12-24 15:35:37,422 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 15:35:38,084 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/account?timestamp=1671883537420&signature=59480e9b5d8f6ebbe8610cdca2d559243f87eeb9647ff7dd756c79388b47acdb HTTP/1.1" 200 None
2022-12-24 15:35:38,096 INFO :: Binance Futures Client successfully initialized
2022-12-24 15:35:38,157 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-24 15:35:38,701 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/instrument/active HTTP/1.1" 400 59
2022-12-24 15:35:38,705 ERROR :: Error while making GET request to /api/v1/instrument/active: {'error': {'message': 'Missing API key.', 'name': 'HTTPError'}} (error code 400)
2022-12-24 15:35:38,708 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-24 15:35:39,151 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/user/margin?currency=all HTTP/1.1" 400 59
2022-12-24 15:35:39,156 ERROR :: Error while making GET request to /api/v1/user/margin: {'error': {'message': 'Missing API key.', 'name': 'HTTPError'}} (error code 400)
2022-12-24 15:35:39,156 INFO :: Bitmex Client successfully initialized
2022-12-24 15:35:39,851 INFO :: Binance connection opened
2022-12-24 15:35:39,852 INFO :: Binance: subscribing to: btcusdt@bookTicker
2022-12-24 15:35:40,084 INFO :: Bitmex connection opened
2022-12-24 15:37:22,604 WARNING :: Binance Websocket connection closed
2022-12-24 15:37:22,760 WARNING :: Bitmex Websocket connection closed
2022-12-24 15:37:45,539 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 15:37:46,443 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/exchangeInfo HTTP/1.1" 200 None
2022-12-24 15:37:46,453 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 15:37:47,112 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/account?timestamp=1671883666451&signature=cf3f351ff8e3193329292e68768dbac14890a7ecb66995ec42d907b5c350a7ce HTTP/1.1" 200 None
2022-12-24 15:37:47,117 INFO :: Binance Futures Client successfully initialized
2022-12-24 15:37:47,171 DEBUG :: Starting new HTTPS connection (1): www.bitmex.com:443
2022-12-24 15:37:47,750 DEBUG :: https://www.bitmex.com:443 "GET /api/v1/instrument/active HTTP/1.1" 400 59
2022-12-24 15:37:47,754 ERROR :: Error while making GET request to /api/v1/instrument/active: {'error': {'message': 'Missing API key.', 'name': 'HTTPError'}} (error code 400)
2022-12-24 15:37:47,756 DEBUG :: Starting new HTTPS connection (1): www.bitmex.com:443
2022-12-24 15:37:48,189 DEBUG :: https://www.bitmex.com:443 "GET /api/v1/user/margin?currency=all HTTP/1.1" 400 59
2022-12-24 15:37:48,193 ERROR :: Error while making GET request to /api/v1/user/margin: {'error': {'message': 'Missing API key.', 'name': 'HTTPError'}} (error code 400)
2022-12-24 15:37:48,194 INFO :: Bitmex Client successfully initialized
2022-12-24 15:37:48,909 INFO :: Binance connection opened
2022-12-24 15:37:48,910 INFO :: Binance: subscribing to: btcusdt@bookTicker
2022-12-24 15:37:49,170 INFO :: Bitmex connection opened
2022-12-24 16:43:02,908 ERROR :: Bitmex connection error: Connection is already closed.
2022-12-24 16:43:02,913 WARNING :: Bitmex Websocket connection closed
2022-12-24 16:43:38,526 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 16:43:39,713 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/exchangeInfo HTTP/1.1" 200 None
2022-12-24 16:43:39,724 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 16:43:40,522 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/account?timestamp=1671887619722&signature=0d4a3c084bc22a0326a840d5bf87f45abcd2007e0686f875213af8a52cf1012e HTTP/1.1" 200 None
2022-12-24 16:43:40,527 INFO :: Binance Futures Client successfully initialized
2022-12-24 16:43:40,585 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-24 16:43:42,103 INFO :: Binance connection opened
2022-12-24 16:43:42,104 INFO :: Binance: subscribing to: btcusdt@bookTicker
2022-12-24 16:43:55,893 ERROR :: Connection error while making GET request to /api/v1/instrument/active: ('Connection aborted.', RemoteDisconnected('Remote end closed connection without response'))
2022-12-24 16:43:55,896 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-24 16:45:41,192 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 16:45:41,881 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/exchangeInfo HTTP/1.1" 200 None
2022-12-24 16:45:41,893 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 16:45:42,582 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/account?timestamp=1671887741888&signature=d2f3bdc6d7d53890b6db963877a366b89b515c218716b088a6dd03d1e9be6e70 HTTP/1.1" 200 None
2022-12-24 16:45:42,587 INFO :: Binance Futures Client successfully initialized
2022-12-24 16:45:42,664 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-24 16:45:43,202 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/instrument/active HTTP/1.1" 200 None
2022-12-24 16:45:43,334 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-24 16:45:43,831 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/user/margin?currency=all HTTP/1.1" 200 None
2022-12-24 16:45:43,836 INFO :: Bitmex Client successfully initialized
2022-12-24 16:45:44,256 INFO :: Binance connection opened
2022-12-24 16:45:44,257 INFO :: Binance: subscribing to: btcusdt@bookTicker
2022-12-24 16:45:44,813 INFO :: Bitmex connection opened
2022-12-24 16:46:39,350 WARNING :: Binance Websocket connection closed
2022-12-24 16:46:39,831 WARNING :: Bitmex Websocket connection closed
2022-12-24 16:46:54,880 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 16:46:56,112 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/exchangeInfo HTTP/1.1" 200 None
2022-12-24 16:46:56,123 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 16:46:57,191 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/account?timestamp=1671887816120&signature=f427a492e98befe6c4f30413aedc4dbe61413fbd6af076bfdd746241712ed5c7 HTTP/1.1" 200 None
2022-12-24 16:46:57,196 INFO :: Binance Futures Client successfully initialized
2022-12-24 16:46:57,199 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-24 16:46:57,784 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/instrument/active HTTP/1.1" 200 None
2022-12-24 16:46:57,953 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-24 16:46:58,416 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/user/margin?currency=all HTTP/1.1" 200 None
2022-12-24 16:46:58,421 INFO :: Bitmex Client successfully initialized
2022-12-24 16:46:58,858 INFO :: Binance connection opened
2022-12-24 16:46:58,858 INFO :: Binance: subscribing to: btcusdt@bookTicker
2022-12-24 16:46:59,427 INFO :: Bitmex connection opened
2022-12-24 16:49:18,362 WARNING :: Binance Websocket connection closed
2022-12-24 16:49:18,518 WARNING :: Bitmex Websocket connection closed
2022-12-24 17:34:48,231 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 17:34:48,971 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/exchangeInfo HTTP/1.1" 200 None
2022-12-24 17:34:48,982 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 17:34:49,892 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/account?timestamp=1671890688980&signature=cb61196bf4956c6806e2915951caddacd86eee3c304844fc62d7d48a70a1ed18 HTTP/1.1" 200 None
2022-12-24 17:34:49,903 INFO :: Binance Futures Client successfully initialized
2022-12-24 17:34:50,056 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-24 17:34:50,581 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/instrument/active HTTP/1.1" 200 None
2022-12-24 17:34:50,747 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-24 17:34:51,159 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/user/margin?currency=all HTTP/1.1" 200 None
2022-12-24 17:34:51,163 INFO :: Bitmex Client successfully initialized
2022-12-24 17:34:51,651 INFO :: Binance connection opened
2022-12-24 17:34:51,653 INFO :: Binance: subscribing to: btcusdt@bookTicker
2022-12-24 17:34:52,230 INFO :: Bitmex connection opened
2022-12-24 17:35:02,299 WARNING :: Binance Websocket connection closed
2022-12-24 17:35:02,437 WARNING :: Bitmex Websocket connection closed
2022-12-24 17:47:44,779 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 17:47:46,007 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/exchangeInfo HTTP/1.1" 200 None
2022-12-24 17:47:46,018 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 17:47:46,722 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/account?timestamp=1671891466015&signature=7a61a1a28bf8d63b5424571c2dad5310256413abefbbf983f9815bc4526ff5ea HTTP/1.1" 200 None
2022-12-24 17:47:46,727 INFO :: Binance Futures Client successfully initialized
2022-12-24 17:47:46,779 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-24 17:47:48,326 INFO :: Binance connection opened
2022-12-24 17:47:48,327 INFO :: Binance: subscribing to: btcusdt@bookTicker
2022-12-24 17:49:46,160 ERROR :: Connection error while making GET request to /api/v1/instrument/active: ('Connection aborted.', RemoteDisconnected('Remote end closed connection without response'))
2022-12-24 17:49:46,255 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-24 17:49:46,764 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/user/margin?currency=all HTTP/1.1" 200 None
2022-12-24 17:49:46,784 INFO :: Bitmex Client successfully initialized
2022-12-24 17:49:48,079 INFO :: Bitmex connection opened
2022-12-24 17:55:23,800 WARNING :: Binance Websocket connection closed
2022-12-24 17:55:23,959 WARNING :: Bitmex Websocket connection closed
2022-12-24 17:56:41,669 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 17:56:42,808 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/exchangeInfo HTTP/1.1" 200 None
2022-12-24 17:56:42,818 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 17:56:43,500 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/account?timestamp=1671892002816&signature=2c04ded5c023c50500089970aa2ff039852772030f49ded4909081b4d66c4d73 HTTP/1.1" 200 None
2022-12-24 17:56:43,505 INFO :: Binance Futures Client successfully initialized
2022-12-24 17:56:43,569 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-24 17:56:44,057 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/instrument/active HTTP/1.1" 200 None
2022-12-24 17:56:44,186 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-24 17:56:44,670 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/user/margin?currency=all HTTP/1.1" 200 None
2022-12-24 17:56:44,674 INFO :: Bitmex Client successfully initialized
2022-12-24 17:56:45,419 INFO :: Binance connection opened
2022-12-24 17:56:45,421 INFO :: Binance: subscribing to: btcusdt@bookTicker
2022-12-24 17:56:45,650 INFO :: Bitmex connection opened
2022-12-24 17:57:00,861 WARNING :: Binance Websocket connection closed
2022-12-24 17:57:01,017 WARNING :: Bitmex Websocket connection closed
2022-12-24 17:57:09,817 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 17:57:11,199 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/exchangeInfo HTTP/1.1" 200 None
2022-12-24 17:57:11,210 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 17:57:12,265 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/account?timestamp=1671892031207&signature=4b04e4a2911e7ce80826b074a44750bebb409285e4230a63b52b545ae98baf5c HTTP/1.1" 200 None
2022-12-24 17:57:12,272 INFO :: Binance Futures Client successfully initialized
2022-12-24 17:57:12,278 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-24 17:57:12,767 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/instrument/active HTTP/1.1" 200 None
2022-12-24 17:57:12,896 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-24 17:57:13,337 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/user/margin?currency=all HTTP/1.1" 200 None
2022-12-24 17:57:13,342 INFO :: Bitmex Client successfully initialized
2022-12-24 17:57:13,713 INFO :: Binance connection opened
2022-12-24 17:57:13,713 INFO :: Binance: subscribing to: btcusdt@bookTicker
2022-12-24 17:57:14,280 INFO :: Bitmex connection opened
2022-12-24 17:57:59,407 WARNING :: Binance Websocket connection closed
2022-12-24 17:57:59,566 WARNING :: Bitmex Websocket connection closed
2022-12-24 18:00:26,383 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 18:00:27,523 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/exchangeInfo HTTP/1.1" 200 None
2022-12-24 18:00:27,533 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 18:00:28,698 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/account?timestamp=1671892227531&signature=dc0dc6c1a2be0c9e1cb062e9a1bf84fdcc035b81e3ffacbacc03f86ddaff37e2 HTTP/1.1" 200 None
2022-12-24 18:00:28,703 INFO :: Binance Futures Client successfully initialized
2022-12-24 18:00:28,787 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-24 18:00:29,288 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/instrument/active HTTP/1.1" 200 None
2022-12-24 18:00:29,442 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-24 18:00:29,955 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/user/margin?currency=all HTTP/1.1" 200 None
2022-12-24 18:00:29,960 INFO :: Bitmex Client successfully initialized
2022-12-24 18:00:30,388 INFO :: Binance connection opened
2022-12-24 18:00:30,389 INFO :: Binance: subscribing to: btcusdt@bookTicker
2022-12-24 18:00:31,001 INFO :: Bitmex connection opened
2022-12-24 18:00:40,972 INFO :: Binance: subscribing to: ethusdt@bookTicker
2022-12-24 18:00:40,976 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 18:00:42,063 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/ticker/bookTicker?symbol=ETHUSDT HTTP/1.1" 200 None
2022-12-24 18:03:17,611 WARNING :: Binance Websocket connection closed
2022-12-24 18:03:17,929 WARNING :: Bitmex Websocket connection closed
2022-12-24 18:18:22,660 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 18:18:49,381 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 18:19:58,288 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 18:19:59,446 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/exchangeInfo HTTP/1.1" 200 None
2022-12-24 18:19:59,465 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 18:20:00,144 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/account?timestamp=1671893399462&signature=887ebc5df8d2b7b6ed7fc512f28ffae57c72d830b54d8f3dabb8b3de90e4a164 HTTP/1.1" 200 None
2022-12-24 18:20:00,149 INFO :: Binance Futures Client successfully initialized
2022-12-24 18:20:00,208 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-24 18:20:00,716 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/instrument/active HTTP/1.1" 200 None
2022-12-24 18:20:00,873 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-24 18:20:01,357 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/user/margin?currency=all HTTP/1.1" 200 None
2022-12-24 18:20:01,361 INFO :: Bitmex Client successfully initialized
2022-12-24 18:20:02,158 INFO :: Binance connection opened
2022-12-24 18:20:02,159 INFO :: Binance: subscribing to: btcusdt@bookTicker
2022-12-24 18:20:02,434 INFO :: Bitmex connection opened
2022-12-24 18:21:25,700 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 18:22:00,494 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 18:23:50,868 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 18:23:52,083 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/exchangeInfo HTTP/1.1" 200 None
2022-12-24 18:23:52,094 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 18:23:53,234 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/account?timestamp=1671893632091&signature=e8fae1ceba16d6094b3cd4ed9f4d36438e00aa638deeff9078ec82e4b5d31882 HTTP/1.1" 200 None
2022-12-24 18:23:53,249 INFO :: Binance Futures Client successfully initialized
2022-12-24 18:23:53,327 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-24 18:23:53,803 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/instrument/active HTTP/1.1" 200 None
2022-12-24 18:23:53,941 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-24 18:23:54,413 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/user/margin?currency=all HTTP/1.1" 200 None
2022-12-24 18:23:54,418 INFO :: Bitmex Client successfully initialized
2022-12-24 18:23:55,103 INFO :: Binance connection opened
2022-12-24 18:23:55,103 INFO :: Binance: subscribing to: btcusdt@bookTicker
2022-12-24 18:23:55,281 INFO :: Bitmex connection opened
2022-12-24 18:25:32,642 INFO :: Binance: subscribing to: ethusdt@bookTicker
2022-12-24 18:25:32,723 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 18:25:33,452 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/ticker/bookTicker?symbol=ETHUSDT HTTP/1.1" 200 None
2022-12-24 18:25:49,595 WARNING :: Binance Websocket connection closed
2022-12-24 18:25:49,741 WARNING :: Bitmex Websocket connection closed
2022-12-24 18:34:06,071 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 18:34:57,106 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 18:35:06,030 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 18:35:16,395 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 18:35:28,405 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 18:35:29,093 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/exchangeInfo HTTP/1.1" 200 None
2022-12-24 18:35:29,102 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 18:35:29,784 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/account?timestamp=1671894329100&signature=e2d511bb00756b4d0e9c32d1f08ec940d3f427ffc7a24c7646fa6b4b43829ee0 HTTP/1.1" 200 None
2022-12-24 18:35:29,789 INFO :: Binance Futures Client successfully initialized
2022-12-24 18:35:29,885 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-24 18:35:30,466 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/instrument/active HTTP/1.1" 200 None
2022-12-24 18:35:30,603 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-24 18:35:31,103 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/user/margin?currency=all HTTP/1.1" 200 None
2022-12-24 18:35:31,108 INFO :: Bitmex Client successfully initialized
2022-12-24 18:35:31,586 INFO :: Binance connection opened
2022-12-24 18:35:31,587 INFO :: Binance: subscribing to: btcusdt@bookTicker
2022-12-24 18:35:32,139 INFO :: Bitmex connection opened
2022-12-24 18:37:30,223 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 18:37:31,114 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/exchangeInfo HTTP/1.1" 200 None
2022-12-24 18:37:31,233 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 18:37:31,887 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/account?timestamp=1671894451231&signature=3ff3c99be8875ddd061fa289674f6f6d84130ddc9ed26b06c93add6c42c177db HTTP/1.1" 200 None
2022-12-24 18:37:31,894 INFO :: Binance Futures Client successfully initialized
2022-12-24 18:37:31,954 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-24 18:37:32,519 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/instrument/active HTTP/1.1" 200 None
2022-12-24 18:37:32,662 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-24 18:37:33,142 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/user/margin?currency=all HTTP/1.1" 200 None
2022-12-24 18:37:33,147 INFO :: Bitmex Client successfully initialized
2022-12-24 18:37:33,615 INFO :: Binance connection opened
2022-12-24 18:37:33,616 INFO :: Binance: subscribing to: btcusdt@bookTicker
2022-12-24 18:37:34,176 INFO :: Bitmex connection opened
2022-12-24 18:41:07,300 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 18:41:08,109 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/exchangeInfo HTTP/1.1" 200 None
2022-12-24 18:41:08,120 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 18:41:08,767 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/account?timestamp=1671894668117&signature=1f0ca8e26d0711c36030655abb04dc27b6f78a479a48659a5cfacba002d925d9 HTTP/1.1" 200 None
2022-12-24 18:41:08,773 INFO :: Binance Futures Client successfully initialized
2022-12-24 18:41:08,830 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-24 18:41:09,379 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/instrument/active HTTP/1.1" 200 None
2022-12-24 18:41:09,542 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-24 18:41:10,038 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/user/margin?currency=all HTTP/1.1" 200 None
2022-12-24 18:41:10,044 INFO :: Bitmex Client successfully initialized
2022-12-24 18:41:10,605 INFO :: Binance connection opened
2022-12-24 18:41:10,606 INFO :: Binance: subscribing to: btcusdt@bookTicker
2022-12-24 18:41:11,166 INFO :: Bitmex connection opened
2022-12-24 18:41:54,572 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 18:41:55,297 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/exchangeInfo HTTP/1.1" 200 None
2022-12-24 18:41:55,308 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 18:41:55,943 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/account?timestamp=1671894715305&signature=34989b05a03d07f90277b3afc1a565500a09e9af8ee37235529bbfff693622e6 HTTP/1.1" 200 None
2022-12-24 18:41:55,949 INFO :: Binance Futures Client successfully initialized
2022-12-24 18:41:55,952 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-24 18:41:56,463 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/instrument/active HTTP/1.1" 200 None
2022-12-24 18:41:56,604 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-24 18:41:57,057 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/user/margin?currency=all HTTP/1.1" 200 None
2022-12-24 18:41:57,063 INFO :: Bitmex Client successfully initialized
2022-12-24 18:41:57,626 INFO :: Binance connection opened
2022-12-24 18:41:57,627 INFO :: Binance: subscribing to: btcusdt@bookTicker
2022-12-24 18:41:58,282 INFO :: Bitmex connection opened
2022-12-24 18:47:34,443 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 18:47:35,591 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/exchangeInfo HTTP/1.1" 200 None
2022-12-24 18:47:35,604 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 18:47:36,743 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/account?timestamp=1671895055600&signature=8350d0cba3c44b1ad9be23ed543d64043a80d36a7d3237d438f755541e784559 HTTP/1.1" 200 None
2022-12-24 18:47:36,750 INFO :: Binance Futures Client successfully initialized
2022-12-24 18:47:36,832 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-24 18:47:37,401 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/instrument/active HTTP/1.1" 200 None
2022-12-24 18:47:37,558 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-24 18:47:38,091 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/user/margin?currency=all HTTP/1.1" 200 None
2022-12-24 18:47:38,096 INFO :: Bitmex Client successfully initialized
2022-12-24 18:47:38,630 INFO :: Binance connection opened
2022-12-24 18:47:38,630 INFO :: Binance: subscribing to: btcusdt@bookTicker
2022-12-24 18:47:39,207 INFO :: Bitmex connection opened
2022-12-24 18:49:19,398 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 18:49:44,656 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 18:51:52,751 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 18:51:54,010 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/exchangeInfo HTTP/1.1" 200 None
2022-12-24 18:51:54,021 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 18:51:54,660 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/account?timestamp=1671895314018&signature=9070d3a336fe008731f544383c67d698c60694e174043857afb923bb3df18da1 HTTP/1.1" 200 None
2022-12-24 18:51:54,666 INFO :: Binance Futures Client successfully initialized
2022-12-24 18:51:54,731 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-24 18:51:55,259 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/instrument/active HTTP/1.1" 200 None
2022-12-24 18:51:55,417 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-24 18:51:55,859 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/user/margin?currency=all HTTP/1.1" 200 None
2022-12-24 18:51:55,863 INFO :: Bitmex Client successfully initialized
2022-12-24 18:51:56,643 INFO :: Binance connection opened
2022-12-24 18:51:56,643 INFO :: Binance: subscribing to: btcusdt@bookTicker
2022-12-24 18:51:56,919 INFO :: Bitmex connection opened
2022-12-24 18:54:11,987 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 18:54:38,648 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 18:55:01,230 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 18:55:58,469 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 18:56:13,968 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 18:56:18,018 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 18:58:02,246 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 18:58:03,396 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/exchangeInfo HTTP/1.1" 200 None
2022-12-24 18:58:03,407 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 18:58:04,070 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/account?timestamp=1671895683405&signature=926eb54864c2d191bd187976212fb46dc122b40241782a65c207c224f34a2f87 HTTP/1.1" 200 None
2022-12-24 18:58:04,076 INFO :: Binance Futures Client successfully initialized
2022-12-24 18:58:04,125 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-24 18:58:04,692 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/instrument/active HTTP/1.1" 200 None
2022-12-24 18:58:04,832 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-24 18:58:05,411 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/user/margin?currency=all HTTP/1.1" 200 None
2022-12-24 18:58:05,416 INFO :: Bitmex Client successfully initialized
2022-12-24 18:58:05,816 INFO :: Binance connection opened
2022-12-24 18:58:05,817 INFO :: Binance: subscribing to: btcusdt@bookTicker
2022-12-24 18:58:06,337 INFO :: Bitmex connection opened
2022-12-24 18:58:51,215 WARNING :: Binance Websocket connection closed
2022-12-24 18:58:51,364 WARNING :: Bitmex Websocket connection closed
2022-12-24 18:59:38,483 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 18:59:39,653 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/exchangeInfo HTTP/1.1" 200 None
2022-12-24 18:59:39,663 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 18:59:40,342 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/account?timestamp=1671895779661&signature=c97016681dc1ef488f128d02fbf73ff5b972649de825ad1d869574c49f9b7b56 HTTP/1.1" 200 None
2022-12-24 18:59:40,348 INFO :: Binance Futures Client successfully initialized
2022-12-24 18:59:40,403 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-24 18:59:40,862 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/instrument/active HTTP/1.1" 200 None
2022-12-24 18:59:41,004 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-24 18:59:41,493 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/user/margin?currency=all HTTP/1.1" 200 None
2022-12-24 18:59:41,498 INFO :: Bitmex Client successfully initialized
2022-12-24 18:59:42,261 INFO :: Binance connection opened
2022-12-24 18:59:42,262 INFO :: Binance: subscribing to: btcusdt@bookTicker
2022-12-24 18:59:42,454 INFO :: Bitmex connection opened
2022-12-24 19:02:10,999 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 19:02:12,086 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/exchangeInfo HTTP/1.1" 200 None
2022-12-24 19:02:12,096 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 19:02:13,227 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/account?timestamp=1671895932094&signature=509625cad2dfc7d7ad87d4901cb4b8a1fd11c2179d728aff2a802c8835e63dc0 HTTP/1.1" 200 None
2022-12-24 19:02:13,232 INFO :: Binance Futures Client successfully initialized
2022-12-24 19:02:13,299 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-24 19:02:13,761 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/instrument/active HTTP/1.1" 200 None
2022-12-24 19:02:13,906 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-24 19:02:14,379 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/user/margin?currency=all HTTP/1.1" 200 None
2022-12-24 19:02:14,383 INFO :: Bitmex Client successfully initialized
2022-12-24 19:02:15,088 INFO :: Binance connection opened
2022-12-24 19:02:15,089 INFO :: Binance: subscribing to: btcusdt@bookTicker
2022-12-24 19:02:15,270 INFO :: Bitmex connection opened
2022-12-24 20:41:15,181 WARNING :: Binance Websocket connection closed
2022-12-24 20:41:15,228 WARNING :: Bitmex Websocket connection closed
2022-12-24 20:41:46,457 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 20:41:47,624 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/exchangeInfo HTTP/1.1" 200 None
2022-12-24 20:41:47,642 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 20:41:48,853 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/account?timestamp=1671901907640&signature=f7ccfdd1c9b324f321f7965deac555aba6242483fabe662b31fa76d4e5aa9bc8 HTTP/1.1" 200 None
2022-12-24 20:41:48,858 INFO :: Binance Futures Client successfully initialized
2022-12-24 20:41:48,927 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-24 20:41:49,445 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/instrument/active HTTP/1.1" 200 None
2022-12-24 20:41:49,593 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-24 20:41:50,065 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/user/margin?currency=all HTTP/1.1" 200 None
2022-12-24 20:41:50,069 INFO :: Bitmex Client successfully initialized
2022-12-24 20:41:50,835 INFO :: Binance connection opened
2022-12-24 20:41:50,837 INFO :: Binance: subscribing to: btcusdt@bookTicker
2022-12-24 20:41:51,087 INFO :: Bitmex connection opened
2022-12-24 20:42:24,357 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 20:42:25,011 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/exchangeInfo HTTP/1.1" 200 None
2022-12-24 20:42:25,034 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 20:42:25,678 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/account?timestamp=1671901945023&signature=9b54b4a19a6cf67f319be950bea65ffcbd67f48254b472e1dd0894526058bbf3 HTTP/1.1" 200 None
2022-12-24 20:42:25,684 INFO :: Binance Futures Client successfully initialized
2022-12-24 20:42:25,687 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-24 20:42:26,225 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/instrument/active HTTP/1.1" 200 None
2022-12-24 20:42:26,402 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-24 20:42:26,874 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/user/margin?currency=all HTTP/1.1" 200 None
2022-12-24 20:42:26,878 INFO :: Bitmex Client successfully initialized
2022-12-24 20:42:27,252 INFO :: Binance connection opened
2022-12-24 20:42:27,253 INFO :: Binance: subscribing to: btcusdt@bookTicker
2022-12-24 20:42:27,866 INFO :: Bitmex connection opened
2022-12-24 20:42:44,144 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 20:42:45,271 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/exchangeInfo HTTP/1.1" 200 None
2022-12-24 20:42:45,283 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 20:42:46,353 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/account?timestamp=1671901965281&signature=27428fba5e5f5fdd553c569315cd9797372608821788185783b02927a128ea5d HTTP/1.1" 200 None
2022-12-24 20:42:46,358 INFO :: Binance Futures Client successfully initialized
2022-12-24 20:42:46,361 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-24 20:42:46,910 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/instrument/active HTTP/1.1" 200 None
2022-12-24 20:42:47,062 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-24 20:42:47,583 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/user/margin?currency=all HTTP/1.1" 200 None
2022-12-24 20:42:47,588 INFO :: Bitmex Client successfully initialized
2022-12-24 20:42:47,950 INFO :: Binance connection opened
2022-12-24 20:42:47,951 INFO :: Binance: subscribing to: btcusdt@bookTicker
2022-12-24 20:42:48,506 INFO :: Bitmex connection opened
2022-12-24 20:42:58,960 WARNING :: Binance Websocket connection closed
2022-12-24 20:42:59,133 WARNING :: Bitmex Websocket connection closed
2022-12-24 20:43:08,355 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 20:43:09,053 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/exchangeInfo HTTP/1.1" 200 None
2022-12-24 20:43:09,064 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 20:43:10,260 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/account?timestamp=1671901989061&signature=bd7f5f5f08f9231d91edcea6c436e28204059f61d720b8bf6ce0832d01c7b9fb HTTP/1.1" 200 None
2022-12-24 20:43:10,265 INFO :: Binance Futures Client successfully initialized
2022-12-24 20:43:10,346 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-24 20:43:10,893 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/instrument/active HTTP/1.1" 200 None
2022-12-24 20:43:11,071 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-24 20:43:11,563 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/user/margin?currency=all HTTP/1.1" 200 None
2022-12-24 20:43:11,567 INFO :: Bitmex Client successfully initialized
2022-12-24 20:43:11,934 INFO :: Binance connection opened
2022-12-24 20:43:11,934 INFO :: Binance: subscribing to: btcusdt@bookTicker
2022-12-24 20:43:12,503 INFO :: Bitmex connection opened
2022-12-24 20:44:31,585 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 20:44:32,711 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/exchangeInfo HTTP/1.1" 200 None
2022-12-24 20:44:32,721 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 20:44:33,829 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/account?timestamp=1671902072719&signature=785d623617e1fbd75c1924d0284a99af891e0cada00e5d2158f46d7ad9a4564a HTTP/1.1" 200 None
2022-12-24 20:44:33,834 INFO :: Binance Futures Client successfully initialized
2022-12-24 20:44:33,903 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-24 20:44:34,390 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/instrument/active HTTP/1.1" 200 None
2022-12-24 20:44:34,554 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-24 20:44:35,014 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/user/margin?currency=all HTTP/1.1" 200 None
2022-12-24 20:44:35,018 INFO :: Bitmex Client successfully initialized
2022-12-24 20:44:35,392 INFO :: Binance connection opened
2022-12-24 20:44:35,393 INFO :: Binance: subscribing to: btcusdt@bookTicker
2022-12-24 20:44:35,953 INFO :: Bitmex connection opened
2022-12-24 20:44:57,320 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 20:44:58,441 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/exchangeInfo HTTP/1.1" 200 None
2022-12-24 20:44:58,452 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 20:44:59,106 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/account?timestamp=1671902098450&signature=e1081db5c5aed70a8534ee1a9b3bdfde3d3899e83a94b1a2e61565cef555daef HTTP/1.1" 200 None
2022-12-24 20:44:59,111 INFO :: Binance Futures Client successfully initialized
2022-12-24 20:44:59,113 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-24 20:44:59,661 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/instrument/active HTTP/1.1" 200 None
2022-12-24 20:44:59,803 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-24 20:45:00,300 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/user/margin?currency=all HTTP/1.1" 200 None
2022-12-24 20:45:00,305 INFO :: Bitmex Client successfully initialized
2022-12-24 20:45:00,616 INFO :: Binance connection opened
2022-12-24 20:45:00,617 INFO :: Binance: subscribing to: btcusdt@bookTicker
2022-12-24 20:45:01,173 INFO :: Bitmex connection opened
2022-12-24 20:45:20,764 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 20:45:21,929 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/exchangeInfo HTTP/1.1" 200 None
2022-12-24 20:45:21,940 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 20:45:23,067 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/account?timestamp=1671902121938&signature=7331d7db4fce2c2931440f4425e0d9af9ffec691991f896efa8665e0c6df4d53 HTTP/1.1" 200 None
2022-12-24 20:45:23,071 INFO :: Binance Futures Client successfully initialized
2022-12-24 20:45:23,074 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-24 20:45:23,578 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/instrument/active HTTP/1.1" 200 None
2022-12-24 20:45:23,718 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-24 20:45:24,169 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/user/margin?currency=all HTTP/1.1" 200 None
2022-12-24 20:45:24,174 INFO :: Bitmex Client successfully initialized
2022-12-24 20:45:24,679 INFO :: Binance connection opened
2022-12-24 20:45:24,680 INFO :: Binance: subscribing to: btcusdt@bookTicker
2022-12-24 20:45:25,212 INFO :: Bitmex connection opened
2022-12-24 20:45:53,453 INFO :: Binance: subscribing to: ethusdt@bookTicker
2022-12-24 20:45:53,541 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 20:45:54,689 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/ticker/bookTicker?symbol=ETHUSDT HTTP/1.1" 200 None
2022-12-24 20:48:42,176 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 20:48:42,895 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/exchangeInfo HTTP/1.1" 200 None
2022-12-24 20:48:42,908 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 20:48:43,664 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/account?timestamp=1671902322905&signature=272e39d53878b76dffd7d3b9a4f1650fcb2bfb386ac0d34b263f9423b4a6e283 HTTP/1.1" 200 None
2022-12-24 20:48:43,671 INFO :: Binance Futures Client successfully initialized
2022-12-24 20:48:43,759 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-24 20:48:44,274 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/instrument/active HTTP/1.1" 200 None
2022-12-24 20:48:44,436 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-24 20:48:44,894 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/user/margin?currency=all HTTP/1.1" 200 None
2022-12-24 20:48:44,908 INFO :: Bitmex Client successfully initialized
2022-12-24 20:48:45,356 INFO :: Binance connection opened
2022-12-24 20:48:45,357 INFO :: Binance: subscribing to: btcusdt@bookTicker
2022-12-24 20:48:45,944 INFO :: Bitmex connection opened
2022-12-24 20:49:49,500 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 20:49:50,293 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/exchangeInfo HTTP/1.1" 200 None
2022-12-24 20:49:50,309 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 20:49:50,990 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/account?timestamp=1671902390303&signature=cc42f225bf1b366a8789379136bbadf8cc3303bc3e02ba159093b160ad4e807d HTTP/1.1" 200 None
2022-12-24 20:49:50,996 INFO :: Binance Futures Client successfully initialized
2022-12-24 20:49:50,999 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-24 20:49:51,571 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/instrument/active HTTP/1.1" 200 None
2022-12-24 20:49:51,711 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-24 20:49:52,243 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/user/margin?currency=all HTTP/1.1" 200 None
2022-12-24 20:49:52,246 INFO :: Bitmex Client successfully initialized
2022-12-24 20:49:52,670 INFO :: Binance connection opened
2022-12-24 20:49:52,670 INFO :: Binance: subscribing to: btcusdt@bookTicker
2022-12-24 20:49:53,231 INFO :: Bitmex connection opened
2022-12-24 20:50:46,453 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 20:50:47,671 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/exchangeInfo HTTP/1.1" 200 None
2022-12-24 20:50:47,685 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 20:50:48,799 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/account?timestamp=1671902447682&signature=9db5ba855549a80fc7433e1dcb04618b42c23f9cf1cbe094ab3d6d0c4fb982de HTTP/1.1" 200 None
2022-12-24 20:50:48,805 INFO :: Binance Futures Client successfully initialized
2022-12-24 20:50:48,887 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-24 20:50:49,415 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/instrument/active HTTP/1.1" 200 None
2022-12-24 20:50:49,559 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-24 20:50:49,989 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/user/margin?currency=all HTTP/1.1" 200 None
2022-12-24 20:50:49,992 INFO :: Bitmex Client successfully initialized
2022-12-24 20:50:50,702 INFO :: Binance connection opened
2022-12-24 20:50:50,703 INFO :: Binance: subscribing to: btcusdt@bookTicker
2022-12-24 20:50:50,949 INFO :: Bitmex connection opened
2022-12-24 20:51:16,804 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 20:51:17,521 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/exchangeInfo HTTP/1.1" 200 None
2022-12-24 20:51:17,532 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 20:51:18,592 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/account?timestamp=1671902477530&signature=372305eadec3a70d1b3f531c99dd5833a130abd220dad384ef034f0b03d46d90 HTTP/1.1" 200 None
2022-12-24 20:51:18,598 INFO :: Binance Futures Client successfully initialized
2022-12-24 20:51:18,603 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-24 20:51:19,130 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/instrument/active HTTP/1.1" 200 None
2022-12-24 20:51:19,274 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-24 20:51:19,707 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/user/margin?currency=all HTTP/1.1" 200 None
2022-12-24 20:51:19,712 INFO :: Bitmex Client successfully initialized
2022-12-24 20:51:20,393 INFO :: Binance connection opened
2022-12-24 20:51:20,393 INFO :: Binance: subscribing to: btcusdt@bookTicker
2022-12-24 20:51:20,573 INFO :: Bitmex connection opened
2022-12-24 20:52:15,942 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 20:52:17,172 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/exchangeInfo HTTP/1.1" 200 None
2022-12-24 20:52:17,190 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 20:52:18,273 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/account?timestamp=1671902537187&signature=20ee7c799914ed798477c66092b68f9873085466f9e4e20e34f5cfb24456aa79 HTTP/1.1" 200 None
2022-12-24 20:52:18,286 INFO :: Binance Futures Client successfully initialized
2022-12-24 20:52:18,396 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-24 20:52:18,924 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/instrument/active HTTP/1.1" 200 None
2022-12-24 20:52:19,104 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-24 20:52:19,607 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/user/margin?currency=all HTTP/1.1" 200 None
2022-12-24 20:52:19,615 INFO :: Bitmex Client successfully initialized
2022-12-24 20:52:19,971 INFO :: Binance connection opened
2022-12-24 20:52:19,972 INFO :: Binance: subscribing to: btcusdt@bookTicker
2022-12-24 20:52:20,526 INFO :: Bitmex connection opened
2022-12-24 20:53:48,079 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 20:54:57,257 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 20:55:00,472 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 20:57:00,993 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 20:57:02,178 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/exchangeInfo HTTP/1.1" 200 None
2022-12-24 20:57:02,188 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 20:57:02,841 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/account?timestamp=1671902822186&signature=c34931ea36f2950665784d0bff1c4a75f8ad8b4419f04e268e493c00d6dc616c HTTP/1.1" 200 None
2022-12-24 20:57:02,846 INFO :: Binance Futures Client successfully initialized
2022-12-24 20:57:02,894 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-24 20:57:03,382 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/instrument/active HTTP/1.1" 200 None
2022-12-24 20:57:03,520 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-24 20:57:04,393 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/user/margin?currency=all HTTP/1.1" 200 None
2022-12-24 20:57:04,398 INFO :: Bitmex Client successfully initialized
2022-12-24 20:57:04,791 INFO :: Binance connection opened
2022-12-24 20:57:04,792 INFO :: Binance: subscribing to: btcusdt@bookTicker
2022-12-24 20:57:05,308 INFO :: Bitmex connection opened
2022-12-24 20:57:27,667 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 20:57:28,810 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/exchangeInfo HTTP/1.1" 200 None
2022-12-24 20:57:28,825 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 20:57:29,533 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/account?timestamp=1671902848821&signature=74189a087a30c0ac22b65f5d50b3f87cace66a0c57478bc3a74217087f7947b7 HTTP/1.1" 200 None
2022-12-24 20:57:29,539 INFO :: Binance Futures Client successfully initialized
2022-12-24 20:57:29,545 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-24 20:57:30,021 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/instrument/active HTTP/1.1" 200 None
2022-12-24 20:57:30,169 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-24 20:57:30,710 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/user/margin?currency=all HTTP/1.1" 200 None
2022-12-24 20:57:30,718 INFO :: Bitmex Client successfully initialized
2022-12-24 20:57:31,143 INFO :: Binance connection opened
2022-12-24 20:57:31,143 INFO :: Binance: subscribing to: btcusdt@bookTicker
2022-12-24 20:57:31,693 INFO :: Bitmex connection opened
2022-12-24 20:57:43,091 WARNING :: Binance Websocket connection closed
2022-12-24 20:57:43,216 WARNING :: Bitmex Websocket connection closed
2022-12-24 21:08:58,946 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 21:08:59,705 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/exchangeInfo HTTP/1.1" 200 None
2022-12-24 21:08:59,735 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 21:09:00,432 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/account?timestamp=1671903539732&signature=16b0e29d1f68e39ea13633f61096858e887b4269b434cfcb591e8dceb6180cb2 HTTP/1.1" 200 None
2022-12-24 21:09:00,444 INFO :: Binance Futures Client successfully initialized
2022-12-24 21:09:00,524 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-24 21:09:02,183 INFO :: Binance connection opened
2022-12-24 21:09:02,184 INFO :: Binance: subscribing to: btcusdt@bookTicker
2022-12-24 21:10:49,585 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 21:10:50,332 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/exchangeInfo HTTP/1.1" 200 None
2022-12-24 21:10:50,343 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 21:10:51,143 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/account?timestamp=1671903650340&signature=0a6a2c66feba7d3b2efa81ea39247d94ba50ab6062a9a09bb021070f86731d6a HTTP/1.1" 200 None
2022-12-24 21:10:51,148 INFO :: Binance Futures Client successfully initialized
2022-12-24 21:10:51,203 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-24 21:10:51,746 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/instrument/active HTTP/1.1" 200 None
2022-12-24 21:10:51,929 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-24 21:10:52,412 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/user/margin?currency=all HTTP/1.1" 200 None
2022-12-24 21:10:52,417 INFO :: Bitmex Client successfully initialized
2022-12-24 21:10:52,863 INFO :: Binance connection opened
2022-12-24 21:10:52,863 INFO :: Binance: subscribing to: btcusdt@bookTicker
2022-12-24 21:10:53,485 INFO :: Bitmex connection opened
2022-12-24 21:11:11,713 WARNING :: Binance Websocket connection closed
2022-12-24 21:11:11,863 WARNING :: Bitmex Websocket connection closed
2022-12-24 21:11:54,632 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 21:11:55,860 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/exchangeInfo HTTP/1.1" 200 None
2022-12-24 21:11:55,872 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 21:11:56,972 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/account?timestamp=1671903715870&signature=9f41c63a6f384f5f7281e8489f84378739da6bc08bff7607e3f9646f924a7260 HTTP/1.1" 200 None
2022-12-24 21:11:56,978 INFO :: Binance Futures Client successfully initialized
2022-12-24 21:11:56,985 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-24 21:11:57,520 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/instrument/active HTTP/1.1" 200 None
2022-12-24 21:11:57,688 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-24 21:11:58,136 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/user/margin?currency=all HTTP/1.1" 200 None
2022-12-24 21:11:58,142 INFO :: Bitmex Client successfully initialized
2022-12-24 21:11:58,531 INFO :: Binance connection opened
2022-12-24 21:11:58,532 INFO :: Binance: subscribing to: btcusdt@bookTicker
2022-12-24 21:11:59,496 INFO :: Bitmex connection opened
2022-12-24 21:12:57,243 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 21:12:58,518 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/exchangeInfo HTTP/1.1" 200 None
2022-12-24 21:12:58,528 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 21:12:59,627 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/account?timestamp=1671903778525&signature=b8e7b6d957fe481144630780152493d503c5edd563087d2d057f29711847b91d HTTP/1.1" 200 None
2022-12-24 21:12:59,632 INFO :: Binance Futures Client successfully initialized
2022-12-24 21:12:59,711 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-24 21:13:00,226 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/instrument/active HTTP/1.1" 200 None
2022-12-24 21:13:00,368 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-24 21:13:00,799 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/user/margin?currency=all HTTP/1.1" 200 None
2022-12-24 21:13:00,804 INFO :: Bitmex Client successfully initialized
2022-12-24 21:13:01,551 INFO :: Binance connection opened
2022-12-24 21:13:01,551 INFO :: Binance: subscribing to: btcusdt@bookTicker
2022-12-24 21:13:01,792 INFO :: Bitmex connection opened
2022-12-24 21:38:06,550 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 21:38:42,011 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 21:39:51,288 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 21:39:52,397 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/exchangeInfo HTTP/1.1" 200 None
2022-12-24 21:39:52,408 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 21:39:53,726 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/account?timestamp=1671905392406&signature=66a1afc7b80239251e32b2ac810171235782c5dc4a7b28a8cef6dc7556981352 HTTP/1.1" 200 None
2022-12-24 21:39:53,732 INFO :: Binance Futures Client successfully initialized
2022-12-24 21:39:53,808 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-24 21:39:54,345 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/instrument/active HTTP/1.1" 200 None
2022-12-24 21:39:54,485 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-24 21:39:54,946 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/user/margin?currency=all HTTP/1.1" 200 None
2022-12-24 21:39:54,951 INFO :: Bitmex Client successfully initialized
2022-12-24 21:39:55,687 INFO :: Binance connection opened
2022-12-24 21:39:55,687 INFO :: Binance: subscribing to: btcusdt@bookTicker
2022-12-24 21:39:55,892 INFO :: Bitmex connection opened
2022-12-24 21:44:11,603 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 21:44:12,497 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/exchangeInfo HTTP/1.1" 200 None
2022-12-24 21:44:12,506 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 21:44:13,135 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/account?timestamp=1671905652503&signature=5d5eab61a5aa52049f2c233fae700df67ddb06bd64f679871a83c205fa0eee90 HTTP/1.1" 200 None
2022-12-24 21:44:13,145 INFO :: Binance Futures Client successfully initialized
2022-12-24 21:44:13,202 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-24 21:44:13,724 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/instrument/active HTTP/1.1" 200 None
2022-12-24 21:44:13,862 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-24 21:44:14,285 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/user/margin?currency=all HTTP/1.1" 200 None
2022-12-24 21:44:14,289 INFO :: Bitmex Client successfully initialized
2022-12-24 21:44:15,085 INFO :: Binance connection opened
2022-12-24 21:44:15,086 INFO :: Binance: subscribing to: btcusdt@bookTicker
2022-12-24 21:44:15,359 INFO :: Bitmex connection opened
2022-12-24 22:00:53,373 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 22:00:54,513 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/exchangeInfo HTTP/1.1" 200 None
2022-12-24 22:00:54,523 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-24 22:00:55,192 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/account?timestamp=1671906654521&signature=008eeface965ac6bb57b7c2d13715d08159eaca4495b6a178a108c7699662018 HTTP/1.1" 200 None
2022-12-24 22:00:55,197 INFO :: Binance Futures Client successfully initialized
2022-12-24 22:00:55,253 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-24 22:00:55,751 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/instrument/active HTTP/1.1" 200 None
2022-12-24 22:00:55,900 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-24 22:00:56,451 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/user/margin?currency=all HTTP/1.1" 200 None
2022-12-24 22:00:56,456 INFO :: Bitmex Client successfully initialized
2022-12-24 22:00:56,872 INFO :: Binance connection opened
2022-12-24 22:00:56,873 INFO :: Binance: subscribing to: btcusdt@bookTicker
2022-12-24 22:00:57,453 INFO :: Bitmex connection opened
2022-12-24 22:08:11,882 ERROR :: Bitmex connection error: Connection is already closed.
2022-12-24 22:08:11,884 WARNING :: Bitmex Websocket connection closed
2022-12-24 22:08:14,843 INFO :: Bitmex connection opened
2022-12-25 10:35:35,124 ERROR :: Bitmex connection error: Connection is already closed.
2022-12-25 10:35:35,185 WARNING :: Bitmex Websocket connection closed
2022-12-25 10:35:38,100 INFO :: Bitmex connection opened
2022-12-25 11:06:02,888 ERROR :: Binance connection error: Connection is already closed.
2022-12-25 11:06:02,894 WARNING :: Binance Websocket connection closed
2022-12-25 11:06:06,931 INFO :: Binance connection opened
2022-12-25 11:06:06,941 INFO :: Binance: subscribing to: btcusdt@bookTicker
2022-12-25 12:03:28,188 ERROR :: Bitmex connection error: Connection is already closed.
2022-12-25 12:03:28,194 WARNING :: Bitmex Websocket connection closed
2022-12-25 12:03:30,825 INFO :: Bitmex connection opened
2022-12-25 13:03:57,838 ERROR :: Bitmex connection error: Connection is already closed.
2022-12-25 13:03:57,850 WARNING :: Bitmex Websocket connection closed
2022-12-25 13:04:00,449 INFO :: Bitmex connection opened
2022-12-25 14:38:42,239 WARNING :: Binance Websocket connection closed
2022-12-25 14:38:42,393 WARNING :: Bitmex Websocket connection closed
2022-12-25 14:38:55,085 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-25 14:38:55,793 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/exchangeInfo HTTP/1.1" 200 None
2022-12-25 14:38:55,805 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-25 14:38:56,858 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/account?timestamp=1671966535802&signature=ccb871b85d7cf258b4788243c4728354fa2d8316b8559c31e8b47f084e992c01 HTTP/1.1" 200 None
2022-12-25 14:38:56,864 INFO :: Binance Futures Client successfully initialized
2022-12-25 14:38:56,934 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-25 14:38:57,414 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/instrument/active HTTP/1.1" 200 None
2022-12-25 14:38:57,551 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-25 14:38:58,062 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/user/margin?currency=all HTTP/1.1" 200 None
2022-12-25 14:38:58,067 INFO :: Bitmex Client successfully initialized
2022-12-25 14:38:58,832 INFO :: Binance connection opened
2022-12-25 14:38:58,834 INFO :: Binance: subscribing to: btcusdt@bookTicker
2022-12-25 14:38:59,046 INFO :: Bitmex connection opened
2022-12-25 14:41:07,662 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-25 14:41:08,400 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/exchangeInfo HTTP/1.1" 200 None
2022-12-25 14:41:08,413 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-25 14:41:09,090 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/account?timestamp=1671966668410&signature=9cbbad8118a981e45d97f7dd08ac7038270629aefaeebaa6e0073b546668d5b6 HTTP/1.1" 200 None
2022-12-25 14:41:09,096 INFO :: Binance Futures Client successfully initialized
2022-12-25 14:41:09,152 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-25 14:41:09,680 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/instrument/active HTTP/1.1" 200 None
2022-12-25 14:41:09,839 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-25 14:41:10,330 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/user/margin?currency=all HTTP/1.1" 200 None
2022-12-25 14:41:10,334 INFO :: Bitmex Client successfully initialized
2022-12-25 14:41:10,728 INFO :: Binance connection opened
2022-12-25 14:41:10,728 INFO :: Binance: subscribing to: btcusdt@bookTicker
2022-12-25 14:41:11,364 INFO :: Bitmex connection opened
2022-12-25 14:42:36,092 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-25 14:42:36,831 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/exchangeInfo HTTP/1.1" 200 None
2022-12-25 14:42:36,843 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-25 14:42:37,494 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/account?timestamp=1671966756841&signature=eee6ec4ea38642380697ae85041feee8a6840ef5cec1e2658ccb88ffea9edf45 HTTP/1.1" 200 None
2022-12-25 14:42:37,499 INFO :: Binance Futures Client successfully initialized
2022-12-25 14:42:37,576 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-25 14:42:38,101 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/instrument/active HTTP/1.1" 200 None
2022-12-25 14:42:38,239 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-25 14:42:38,721 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/user/margin?currency=all HTTP/1.1" 200 None
2022-12-25 14:42:38,725 INFO :: Bitmex Client successfully initialized
2022-12-25 14:42:39,122 INFO :: Binance connection opened
2022-12-25 14:42:39,123 INFO :: Binance: subscribing to: btcusdt@bookTicker
2022-12-25 14:42:39,644 INFO :: Bitmex connection opened
2022-12-25 14:42:59,837 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-25 14:43:00,540 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/exchangeInfo HTTP/1.1" 200 None
2022-12-25 14:43:00,556 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-25 14:43:01,230 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/account?timestamp=1671966780547&signature=2b3808d110240fe7365341c6ec46616179a770f11558d0e54dab1eab489471bf HTTP/1.1" 200 None
2022-12-25 14:43:01,236 INFO :: Binance Futures Client successfully initialized
2022-12-25 14:43:01,238 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-25 14:43:01,691 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/instrument/active HTTP/1.1" 200 None
2022-12-25 14:43:01,819 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-25 14:43:02,371 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/user/margin?currency=all HTTP/1.1" 200 None
2022-12-25 14:43:02,375 INFO :: Bitmex Client successfully initialized
2022-12-25 14:43:02,753 INFO :: Binance connection opened
2022-12-25 14:43:02,753 INFO :: Binance: subscribing to: btcusdt@bookTicker
2022-12-25 14:43:03,291 INFO :: Bitmex connection opened
2022-12-25 14:45:22,491 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-25 14:45:23,589 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/exchangeInfo HTTP/1.1" 200 None
2022-12-25 14:45:23,599 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-25 14:45:24,677 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/account?timestamp=1671966923597&signature=553361f85c02c19426bccb08406165c675911eb984701693d1dae93a694b3b54 HTTP/1.1" 200 None
2022-12-25 14:45:24,682 INFO :: Binance Futures Client successfully initialized
2022-12-25 14:45:24,750 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-25 14:45:25,289 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/instrument/active HTTP/1.1" 200 None
2022-12-25 14:45:25,460 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-25 14:45:25,928 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/user/margin?currency=all HTTP/1.1" 200 None
2022-12-25 14:45:25,933 INFO :: Bitmex Client successfully initialized
2022-12-25 14:45:26,352 INFO :: Binance connection opened
2022-12-25 14:45:26,352 INFO :: Binance: subscribing to: btcusdt@bookTicker
2022-12-25 14:45:26,894 INFO :: Bitmex connection opened
2022-12-25 14:45:46,148 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-25 14:45:46,848 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/exchangeInfo HTTP/1.1" 200 None
2022-12-25 14:45:46,858 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-25 14:45:47,524 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/account?timestamp=1671966946856&signature=3af273c5ad72d68c7a83b96c8743a02db7e156ab8d224d577e377d46777c2325 HTTP/1.1" 200 None
2022-12-25 14:45:47,529 INFO :: Binance Futures Client successfully initialized
2022-12-25 14:45:47,531 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-25 14:45:48,128 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/instrument/active HTTP/1.1" 200 None
2022-12-25 14:45:48,277 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-25 14:45:48,848 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/user/margin?currency=all HTTP/1.1" 200 None
2022-12-25 14:45:48,853 INFO :: Bitmex Client successfully initialized
2022-12-25 14:45:49,214 INFO :: Binance connection opened
2022-12-25 14:45:49,214 INFO :: Binance: subscribing to: btcusdt@bookTicker
2022-12-25 14:45:49,741 INFO :: Bitmex connection opened
2022-12-25 14:49:52,457 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-25 14:49:53,585 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/exchangeInfo HTTP/1.1" 200 None
2022-12-25 14:49:53,595 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-25 14:49:54,695 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/account?timestamp=1671967193592&signature=5254fa07b1179ad3a977290217624c976ca8f204afa8bf9e4cadff26d0142181 HTTP/1.1" 200 None
2022-12-25 14:49:54,700 INFO :: Binance Futures Client successfully initialized
2022-12-25 14:49:54,776 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-25 14:49:55,259 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/instrument/active HTTP/1.1" 200 None
2022-12-25 14:49:55,403 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-25 14:49:55,910 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/user/margin?currency=all HTTP/1.1" 200 None
2022-12-25 14:49:55,914 INFO :: Bitmex Client successfully initialized
2022-12-25 14:49:56,667 INFO :: Binance connection opened
2022-12-25 14:49:56,669 INFO :: Binance: subscribing to: btcusdt@bookTicker
2022-12-25 14:49:56,883 INFO :: Bitmex connection opened
2022-12-25 14:50:11,511 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-25 14:50:12,206 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/exchangeInfo HTTP/1.1" 200 None
2022-12-25 14:50:12,217 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-25 14:50:13,353 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/account?timestamp=1671967212214&signature=406d7ebb7f663485b7e62ca0cba43eefd90832875790e77083800ed819006a7c HTTP/1.1" 200 None
2022-12-25 14:50:13,358 INFO :: Binance Futures Client successfully initialized
2022-12-25 14:50:13,360 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-25 14:50:13,864 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/instrument/active HTTP/1.1" 200 None
2022-12-25 14:50:14,004 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-25 14:50:14,484 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/user/margin?currency=all HTTP/1.1" 200 None
2022-12-25 14:50:14,489 INFO :: Bitmex Client successfully initialized
2022-12-25 14:50:14,796 INFO :: Binance connection opened
2022-12-25 14:50:14,797 INFO :: Binance: subscribing to: btcusdt@bookTicker
2022-12-25 14:50:15,357 INFO :: Bitmex connection opened
2022-12-25 14:51:07,882 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-25 14:51:08,644 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/exchangeInfo HTTP/1.1" 200 None
2022-12-25 14:51:08,653 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-25 14:51:09,713 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/account?timestamp=1671967268651&signature=7f5c01428ead45c6d8fb002408331f703225be888395656bf78797dd290bd960 HTTP/1.1" 200 None
2022-12-25 14:51:09,719 INFO :: Binance Futures Client successfully initialized
2022-12-25 14:51:09,722 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-25 14:51:10,234 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/instrument/active HTTP/1.1" 200 None
2022-12-25 14:51:10,372 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-25 14:51:10,894 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/user/margin?currency=all HTTP/1.1" 200 None
2022-12-25 14:51:10,898 INFO :: Bitmex Client successfully initialized
2022-12-25 14:51:11,281 INFO :: Binance connection opened
2022-12-25 14:51:11,282 INFO :: Binance: subscribing to: btcusdt@bookTicker
2022-12-25 14:51:11,866 INFO :: Bitmex connection opened
2022-12-25 14:51:30,144 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-25 14:51:31,423 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/exchangeInfo HTTP/1.1" 200 None
2022-12-25 14:51:31,433 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-25 14:51:32,640 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/account?timestamp=1671967291431&signature=9dcce98ba50dfd3a376bdf8d9660e72819b176621acc7ccc3d2e5670f2bf3716 HTTP/1.1" 200 None
2022-12-25 14:51:32,645 INFO :: Binance Futures Client successfully initialized
2022-12-25 14:51:32,648 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-25 14:51:33,243 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/instrument/active HTTP/1.1" 200 None
2022-12-25 14:51:33,392 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-25 14:51:33,923 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/user/margin?currency=all HTTP/1.1" 200 None
2022-12-25 14:51:33,928 INFO :: Bitmex Client successfully initialized
2022-12-25 14:51:34,220 INFO :: Binance connection opened
2022-12-25 14:51:34,220 INFO :: Binance: subscribing to: btcusdt@bookTicker
2022-12-25 14:51:34,756 INFO :: Bitmex connection opened
2022-12-25 15:33:08,487 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-25 15:33:09,225 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/exchangeInfo HTTP/1.1" 200 None
2022-12-25 15:33:09,237 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-25 15:33:10,449 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/account?timestamp=1671969789234&signature=da5e76adb3b4ebe3d002a27b2704c2d2cf37e44e4897959c72295bcbf0959624 HTTP/1.1" 200 None
2022-12-25 15:33:10,454 INFO :: Binance Futures Client successfully initialized
2022-12-25 15:33:10,538 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-25 15:33:11,072 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/instrument/active HTTP/1.1" 200 None
2022-12-25 15:33:11,213 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-25 15:33:11,755 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/user/margin?currency=all HTTP/1.1" 200 None
2022-12-25 15:33:11,760 INFO :: Bitmex Client successfully initialized
2022-12-25 15:33:12,729 INFO :: Bitmex connection opened
2022-12-25 15:33:13,421 INFO :: Binance connection opened
2022-12-25 15:33:13,422 INFO :: Binance: subscribing to: btcusdt@bookTicker
2022-12-25 15:33:29,474 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-25 15:33:30,134 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/exchangeInfo HTTP/1.1" 200 None
2022-12-25 15:33:30,146 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-25 15:33:31,030 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/account?timestamp=1671969810143&signature=b3dcad6acf56ba8ce488f417547dba68a4117dad8162b4f7560c218d408416bd HTTP/1.1" 200 None
2022-12-25 15:33:31,035 INFO :: Binance Futures Client successfully initialized
2022-12-25 15:33:31,038 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-25 15:33:31,531 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/instrument/active HTTP/1.1" 200 None
2022-12-25 15:33:31,682 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-25 15:33:32,214 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/user/margin?currency=all HTTP/1.1" 200 None
2022-12-25 15:33:32,219 INFO :: Bitmex Client successfully initialized
2022-12-25 15:33:32,588 INFO :: Binance connection opened
2022-12-25 15:33:32,589 INFO :: Binance: subscribing to: btcusdt@bookTicker
2022-12-25 15:33:33,970 INFO :: Bitmex connection opened
2022-12-25 15:33:56,992 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-25 15:33:57,860 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/exchangeInfo HTTP/1.1" 200 None
2022-12-25 15:33:57,870 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-25 15:33:58,985 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/account?timestamp=1671969837867&signature=85e2efcb62e15171ee5ad2ce1952bb686aa8ea8749153e42e42d5b5f59f25530 HTTP/1.1" 200 None
2022-12-25 15:33:58,990 INFO :: Binance Futures Client successfully initialized
2022-12-25 15:33:58,994 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-25 15:33:59,515 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/instrument/active HTTP/1.1" 200 None
2022-12-25 15:33:59,662 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-25 15:34:00,103 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/user/margin?currency=all HTTP/1.1" 200 None
2022-12-25 15:34:00,108 INFO :: Bitmex Client successfully initialized
2022-12-25 15:34:00,503 INFO :: Binance connection opened
2022-12-25 15:34:00,504 INFO :: Binance: subscribing to: btcusdt@bookTicker
2022-12-25 15:34:01,082 INFO :: Bitmex connection opened
2022-12-25 15:34:21,548 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-25 15:34:22,713 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/exchangeInfo HTTP/1.1" 200 None
2022-12-25 15:34:22,721 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-25 15:34:23,843 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/account?timestamp=1671969862719&signature=3276158f399bab0ef34af30a7eacb00eb195ef3f6c69814b9fc330af496a4c68 HTTP/1.1" 200 None
2022-12-25 15:34:23,848 INFO :: Binance Futures Client successfully initialized
2022-12-25 15:34:23,850 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-25 15:34:24,360 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/instrument/active HTTP/1.1" 200 None
2022-12-25 15:34:24,512 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-25 15:34:25,013 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/user/margin?currency=all HTTP/1.1" 200 None
2022-12-25 15:34:25,017 INFO :: Bitmex Client successfully initialized
2022-12-25 15:34:25,351 INFO :: Binance connection opened
2022-12-25 15:34:25,352 INFO :: Binance: subscribing to: btcusdt@bookTicker
2022-12-25 15:34:25,845 INFO :: Bitmex connection opened
2022-12-25 15:34:46,726 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-25 15:34:47,913 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/exchangeInfo HTTP/1.1" 200 None
2022-12-25 15:34:47,923 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-25 15:34:49,026 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/account?timestamp=1671969887921&signature=1cb9a0ad5df3d8f4b6c60ee77f8c6d8cfa195c65ce90ad8b457d9c7db005ff4e HTTP/1.1" 200 None
2022-12-25 15:34:49,031 INFO :: Binance Futures Client successfully initialized
2022-12-25 15:34:49,034 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-25 15:34:49,613 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/instrument/active HTTP/1.1" 200 None
2022-12-25 15:34:49,771 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-25 15:34:50,263 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/user/margin?currency=all HTTP/1.1" 200 None
2022-12-25 15:34:50,267 INFO :: Bitmex Client successfully initialized
2022-12-25 15:34:50,621 INFO :: Binance connection opened
2022-12-25 15:34:50,621 INFO :: Binance: subscribing to: btcusdt@bookTicker
2022-12-25 15:34:51,196 INFO :: Bitmex connection opened
2022-12-25 15:35:00,579 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-25 15:35:01,282 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/exchangeInfo HTTP/1.1" 200 None
2022-12-25 15:35:01,293 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-25 15:35:01,959 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/account?timestamp=1671969901290&signature=630fb89cf5cfa5f490b9cbaf9548c78a57a571cf9e9fa05c73d0e92c65c6030e HTTP/1.1" 200 None
2022-12-25 15:35:01,964 INFO :: Binance Futures Client successfully initialized
2022-12-25 15:35:01,968 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-25 15:35:02,472 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/instrument/active HTTP/1.1" 200 None
2022-12-25 15:35:02,754 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-25 15:35:03,293 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/user/margin?currency=all HTTP/1.1" 200 None
2022-12-25 15:35:03,297 INFO :: Bitmex Client successfully initialized
2022-12-25 15:35:03,722 INFO :: Binance connection opened
2022-12-25 15:35:03,723 INFO :: Binance: subscribing to: btcusdt@bookTicker
2022-12-25 15:35:04,275 INFO :: Bitmex connection opened
2022-12-25 15:35:45,143 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-25 15:35:45,811 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/exchangeInfo HTTP/1.1" 200 None
2022-12-25 15:35:45,822 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-25 15:35:46,912 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/account?timestamp=1671969945819&signature=50edd7da6ab1f3cb0e46e071a61a417e1d10063529e19a82241adbf88f5a9ed0 HTTP/1.1" 200 None
2022-12-25 15:35:46,917 INFO :: Binance Futures Client successfully initialized
2022-12-25 15:35:46,993 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-25 15:35:47,501 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/instrument/active HTTP/1.1" 200 None
2022-12-25 15:35:47,639 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-25 15:35:48,111 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/user/margin?currency=all HTTP/1.1" 200 None
2022-12-25 15:35:48,116 INFO :: Bitmex Client successfully initialized
2022-12-25 15:35:48,486 INFO :: Binance connection opened
2022-12-25 15:35:48,487 INFO :: Binance: subscribing to: btcusdt@bookTicker
2022-12-25 15:35:49,063 INFO :: Bitmex connection opened
2022-12-25 15:36:46,448 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-25 15:36:47,186 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/exchangeInfo HTTP/1.1" 200 None
2022-12-25 15:36:47,208 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-25 15:36:48,280 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/account?timestamp=1671970007206&signature=896d227d465d815fce7f8df6bc59b10b7b74513bb0267732aac118da799c0936 HTTP/1.1" 200 None
2022-12-25 15:36:48,285 INFO :: Binance Futures Client successfully initialized
2022-12-25 15:36:48,288 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-25 15:36:48,865 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/instrument/active HTTP/1.1" 200 None
2022-12-25 15:36:49,018 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-25 15:36:49,600 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/user/margin?currency=all HTTP/1.1" 200 None
2022-12-25 15:36:49,604 INFO :: Bitmex Client successfully initialized
2022-12-25 15:36:50,008 INFO :: Binance connection opened
2022-12-25 15:36:50,008 INFO :: Binance: subscribing to: btcusdt@bookTicker
2022-12-25 15:36:50,532 INFO :: Bitmex connection opened
2022-12-25 15:38:52,029 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-25 15:38:53,177 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/exchangeInfo HTTP/1.1" 200 None
2022-12-25 15:38:53,187 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-25 15:38:54,301 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/account?timestamp=1671970133185&signature=8f154f9a3996b97e72dd02d3c7b86fcbd7efb80b445100cfb611020ec67ad06a HTTP/1.1" 200 None
2022-12-25 15:38:54,306 INFO :: Binance Futures Client successfully initialized
2022-12-25 15:38:54,388 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-25 15:38:54,997 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/instrument/active HTTP/1.1" 200 None
2022-12-25 15:38:55,156 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-25 15:38:55,638 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/user/margin?currency=all HTTP/1.1" 200 None
2022-12-25 15:38:55,643 INFO :: Bitmex Client successfully initialized
2022-12-25 15:38:56,019 INFO :: Binance connection opened
2022-12-25 15:38:56,020 INFO :: Binance: subscribing to: btcusdt@bookTicker
2022-12-25 15:38:56,558 INFO :: Bitmex connection opened
2022-12-25 15:39:04,924 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-25 15:39:05,796 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/exchangeInfo HTTP/1.1" 200 None
2022-12-25 15:39:05,811 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-25 15:39:06,476 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/account?timestamp=1671970145808&signature=986f40e00e06c577237f494af0d8f57bbad744bfe0316c8854b1f0e86ab5c382 HTTP/1.1" 200 None
2022-12-25 15:39:06,481 INFO :: Binance Futures Client successfully initialized
2022-12-25 15:39:06,484 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-25 15:39:07,069 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/instrument/active HTTP/1.1" 200 None
2022-12-25 15:39:07,196 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-25 15:39:07,767 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/user/margin?currency=all HTTP/1.1" 200 None
2022-12-25 15:39:07,772 INFO :: Binance connection opened
2022-12-25 15:39:07,772 INFO :: Bitmex Client successfully initialized
2022-12-25 15:39:08,105 INFO :: Binance: subscribing to: btcusdt@bookTicker
2022-12-25 15:39:08,632 INFO :: Bitmex connection opened
2022-12-25 15:42:19,727 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-25 15:42:20,841 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/exchangeInfo HTTP/1.1" 200 None
2022-12-25 15:42:20,858 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-25 15:42:21,556 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/account?timestamp=1671970340850&signature=3e0df82077530cd81beb322591dada3b64719094249f89ed5d7f7fa322a3d37d HTTP/1.1" 200 None
2022-12-25 15:42:21,562 INFO :: Binance Futures Client successfully initialized
2022-12-25 15:42:21,624 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-25 15:42:22,203 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/instrument/active HTTP/1.1" 200 None
2022-12-25 15:42:22,344 DEBUG :: Starting new HTTPS connection (1): testnet.bitmex.com:443
2022-12-25 15:42:22,816 DEBUG :: https://testnet.bitmex.com:443 "GET /api/v1/user/margin?currency=all HTTP/1.1" 200 None
2022-12-25 15:42:22,823 INFO :: Bitmex Client successfully initialized
2022-12-25 15:42:23,306 INFO :: Binance connection opened
2022-12-25 15:42:23,307 INFO :: Binance: subscribing to: btcusdt@bookTicker
2022-12-25 15:42:23,904 INFO :: Bitmex connection opened
2022-12-25 15:43:10,540 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443
2022-12-25 15:43:11,270 DEBUG :: https://testnet.binancefuture.com:443 "GET /fapi/v1/klines?symbol=1000LUNCBUSD&interval=1m&limit=1000 HTTP/1.1" 200 None
2022-12-25 15:43:11,277 INFO :: Binance: subscribing to: 1000luncbusd@aggTrade
2022-12-25 15:43:11,277 INFO :: Binance: subscribing to: 1000luncbusd@bookTicker
2022-12-25 20:02:12,064 DEBUG :: Starting new HTTPS connection (1): testnet.binancefuture.com:443