forked from ccxt/ccxt
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathskip-tests.json
More file actions
2144 lines (2144 loc) · 75.1 KB
/
skip-tests.json
File metadata and controls
2144 lines (2144 loc) · 75.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"alpaca": {
"skip": "private endpoints, todo",
"skipWs": "private endpoints, todo"
},
"arkham": {
"skipMethods": {
"loadMarkets": {
"currencyIdAndCode": "messed",
"taker": "tmp",
"maker": "tmp"
},
"fetchCurrencies": {
"deposit": "not provided",
"withdraw": "not provided",
"precision": "not provided",
"activeMajorCurrencies": "todo"
},
"ticker": {
"timestamp": "todo"
},
"fetchTickers": {
"checkActiveSymbols": "todo"
}
}
},
"apex": {
"skipMethods": {
"loadMarkets": {
"currencyIdAndCode": "messed",
"currency": "messed"
},
"fetchCurrencies": {
"precision": "messed"
},
"ticker": {
"compareQuoteVolumeBaseVolume": "not aligned with quoteVolume calcs"
},
"fetchTickers": {
"checkActiveSymbols": "todo"
},
"orderBook": {
"spread": "bid > ask issue https://github.com/ccxt/ccxt/actions/runs/14901691674/job/41855075107?pr=25907#step:9:389"
},
"watchTrades": {
"timestampSort": "order is messed"
},
"watchTradesForSymbols": {
"timestampSort": "same"
}
}
},
"ascendex": {
"skipMethods": {
"loadMarkets": {
"currencyIdAndCode": "broken currencies"
},
"fetchCurrencies": {
"currencyIdAndCode": "https://app.travis-ci.com/github/ccxt/ccxt/builds/269432480#L3364",
"type": "todo",
"withdraw": "not provided for empty chains",
"deposit": "not provided for empty chains",
"maxInactiveCurrenciesPercentage": 60
},
"ticker": {
"compareOHLC": "broken by API: https://github.com/ccxt/ccxt/actions/runs/16058190301/job/45317906432#step:9:214"
},
"fetchTickers": {
"checkActiveSymbols": "todo"
},
"watchOrderBook": {
"spread": " bid > ask issue, https://github.com/ccxt/ccxt/actions/runs/14316810634/job/40125014500?pr=25623#step:11:420"
},
"watchOrderBookForSymbols": {
"spread": "same"
}
}
},
"backpack": {
"skipMethods": {
"loadMarkets": {
"taker": "is undefined",
"maker": "is undefined"
},
"fetchCurrencies": {
"precision":"not provided",
"maxInactiveCurrenciesPercentage": 65
},
"fetchTrades": {
"side": "not provided"
},
"fetchTickers": {
"checkActiveSymbols": "todo"
},
"watchTrades": {
"timestampSort": "confirmed that exchange's engine has an issue: https://github.com/ccxt/ccxt/actions/runs/17983223256/job/51155199567?pr=25258#step:11:1120"
},
"watchTradesForSymbols": {
"timestampSort": "same as above"
}
}
},
"bequant": {
"skipMethods": {
"loadMarkets": {
"currencyIdAndCode": "https://app.travis-ci.com/github/ccxt/ccxt/builds/264802937#L2194"
},
"fetchCurrencies": {
"fee": "not provided",
"currencyIdAndCode": "https://app.travis-ci.com/github/ccxt/ccxt/builds/268371892#L2455",
"type": "todo",
"activeMajorCurrencies": "todo"
},
"ticker": {
"compareOHLC": "broken by API: https://github.com/ccxt/ccxt/actions/runs/16058190301/job/45317906432#step:9:187"
},
"fetchTickers": {
"checkActiveSymbols": "todo"
}
}
},
"binance": {
"httpsProxy": "http://188.245.226.105:8911",
"wsProxy": "http://188.245.226.105:8911",
"skipMethods": {
"loadMarkets": {
"currencyIdAndCode": "i.e. binance does not have currency code BCC"
},
"fetchCurrencies": {
"precision": "temp issues fro fiat"
},
"orderBook": {
"timestamp": "not present https://app.travis-ci.com/github/ccxt/ccxt/builds/269572350#L3539 & https://app.travis-ci.com/github/ccxt/ccxt/builds/269572350#L4119"
},
"fetchTickers": {
"checkActiveSymbols": "todo"
}
}
},
"binanceus": {
"skipMethods": {
"ticker": {
"compareQuoteVolumeBaseVolume": "quoteVolume >= baseVolume * low is failing, https://app.travis-ci.com/github/ccxt/ccxt/builds/267900037#L2466"
},
"orderBook": {
"timestamp": "not present https://app.travis-ci.com/github/ccxt/ccxt/builds/269572350#L3458 https://app.travis-ci.com/github/ccxt/ccxt/builds/269572350#L3866"
}
}
},
"binancecoinm": {
"httpsProxy": "http://188.245.226.105:8911",
"skipMethods": {
"ticker": {
"compareQuoteVolumeBaseVolume": "quoteVolume >= baseVolume * low is failing, https://app.travis-ci.com/github/ccxt/ccxt/builds/268171081#L2414"
},
"fetchTickers": {
"checkActiveSymbols": "todo"
}
}
},
"binanceusdm": {
"httpsProxy": "http://188.245.226.105:8911",
"wsProxy": "http://188.245.226.105:8911",
"skipMethods": {
"fetchLedger": {
"account": "empty",
"status": "not provided",
"before": "not provided",
"after": "not provided",
"fee": "not provided",
"code": "not provided",
"referenceId": "not provided"
},
"watchOrderBook": {
"timestamp": "not present https://app.travis-ci.com/github/ccxt/ccxt/builds/269572350#L3539"
},
"watchOrderBookForSymbols": {
"timestamp": "same"
}
}
},
"bingx": {
"skipMethods": {
"loadMarkets": {
"taker": "is undefined",
"maker": "is undefined",
"currencyIdAndCode": "not all currencies are available"
},
"ticker": {
"bidVolume": "weird values eg -1.1641532182693481e-10 https://github.com/ccxt/ccxt/actions/runs/13135405405/job/36649793252?pr=25190#step:9:213",
"askVolume": "weird value https://app.travis-ci.com/github/ccxt/ccxt/builds/272650012#L3904",
"compareQuoteVolumeBaseVolume": "not supported",
"spread": "same bid-ask https://app.travis-ci.com/github/ccxt/ccxt/builds/269550508#L3581",
"compareOHLC": "broken by API: https://github.com/ccxt/ccxt/actions/runs/16058190301/job/45317906432#step:9:253",
"maxIncrease": "todo"
},
"fetchTickers": "tmp skip, todo",
"fetchCurrencies": {
"limits": "min/max essup temrporarily"
},
"orderBook": {
"compareToNextItem": "multiple bid prices are equal https://app.travis-ci.com/github/ccxt/ccxt/builds/265172859#L2745"
},
"fetchPositions": {
"marginRatio": "undefined",
"stopLossPrice": "undefined",
"takeProfitPrice": "undefined",
"initialMarginPercentage": "undefined",
"hedged": "undefined",
"timestamp": "undefined",
"datetime": "undefined",
"lastUpdateTimestamp": "undefined",
"maintenanceMargin": "undefined",
"contractSize": "undefined",
"markPrice": "undefined",
"lastPrice": "undefined",
"percentage": "undefined",
"liquidationPrice": "undefined"
}
}
},
"bit2c": {
"skipMethods": {
"loadMarkets": {
"precision": "not provided",
"active": "not provided",
"taker": "not provided",
"maker": "not provided",
"info":"null"
},
"fetchCurrencies": "todo, returns only 1",
"orderBook": {
"timestamp": "https://app.travis-ci.com/github/ccxt/ccxt/builds/269572350#L4034",
"compareToZero": "sometimes equals to zero: https://app.travis-ci.com/github/ccxt/ccxt/builds/267809189#L2540"
}
}
},
"bitbank": {
"skipMethods": {
"fetchCurrencies": {
"activeMajorCurrencies": "todo"
}
}
},
"bitbns": {
"skipMethods": {
"loadMarkets": {
"limits": "market limits have min>max ",
"currencyIdAndCode": "broken"
},
"fetchCurrencies":{
"activeMajorCurrencies": "todo"
},
"ticker": {
"spread": "ask equals to bid",
"compareOHLC": "broken by API: https://github.com/ccxt/ccxt/actions/runs/16058190301/job/45317906432#step:9:291"
},
"fetchTickers": "todo fix parsing"
}
},
"bitfinex": {
"skipMethods": {
"loadMarkets": {
"currencyIdAndCode": "broken currencies"
},
"fetchCurrencies": {
"withdraw": "not provided",
"deposit": "not provided",
"type": "todo",
"activeMajorCurrencies": "todo"
},
"ticker": {
"spread": "https://app.travis-ci.com/github/ccxt/ccxt/builds/269273148#L3651",
"maxIncrease": "todo",
"compareOHLC": "todo recheck implementation"
},
"orderBook": {
"compareToNextItem": "multiple bids might have same value"
},
"watchOrderBook": "complete skip (todo fix) because of frequent checksum mismatches: https://app.travis-ci.com/github/ccxt/ccxt/builds/269273148#L3553 and also for this https://app.travis-ci.com/github/ccxt/ccxt/builds/269129438#L3999",
"fetchTickers": {
"checkActiveSymbols": "todo"
}
}
},
"bitflyer": {
"skipMethods": {
"loadMarkets": {
"contractSize": "not defined when contract",
"settle": "set hardcoded, not settleid provided",
"settleId": "not provided",
"currencyIdAndCode": "messed"
},
"fetchCurrencies":{
"activeMajorCurrencies": "todo"
},
"orderBook": {
"timestamp": "not provided from endoint"
}
}
},
"bitget": {
"skipMethods": {
"loadMarkets": {
"currencyIdAndCode": "broken currencies"
},
"fetchCurrencies": {
"currencyIdAndCode": "broken currencies",
"skipCurrenciesWithoutNetworks": "those currencies deosnt have data",
"maxInactiveCurrenciesPercentage": 60
},
"ticker": {
"compareQuoteVolumeBaseVolume": "quoteVolume >= baseVolume * low is failing",
"maxIncrease": "todo",
"compareOHLC": "broken from API: https://github.com/ccxt/ccxt/actions/runs/16058190301/job/45317906432#step:9:318"
},
"fetchTickers": {
"checkActiveSymbols": "todo"
}
}
},
"bithumb": {
"skipMethods": {
"ticker": {
"compareQuoteVolumeBaseVolume": "quoteVolume >= baseVolume * low is failing"
},
"fetchCurrencies":{
"activeMajorCurrencies": "todo"
},
"orderBook": {
"compareToZero": "frequently, zero amount is set in some orderbook entry"
}
}
},
"bitmart": {
"skipMethods": {
"loadMarkets": {
"currencyIdAndCode": "broken currencies",
"taker": "missing",
"maker": "missing"
},
"fetchCurrencies": {
"currencyIdAndCode": "broken currencies",
"precision":"not provided",
"maxInactiveCurrenciesPercentage": 70
},
"ticker": {
"compareQuoteVolumeBaseVolume": "quoteVolume >= baseVolume * low is failing",
"quoteVolume": "incorrect",
"compareOHLC": "todo"
},
"fetchTickers": {
"checkActiveSymbols": "todo"
},
"watchOrderBook": {
"spread": "bid>ask issue, https://github.com/ccxt/ccxt/actions/runs/14356838751/job/40248419588?pr=25638#step:9:437"
},
"watchOrderBookForSymbols": {
"spread": "same"
}
}
},
"bitmex": {
"skipMethods": {
"loadMarkets": {
"currencyIdAndCode": "broken currencies"
},
"fetchOHLCV": "https://github.com/ccxt/ccxt/pull/21356#issuecomment-1969565862",
"watchOHLCV": "same as above, needs key fix",
"fetchPositions": {
"stopLossPrice": "undefined",
"takeProfitPrice": "undefined",
"marginRatio": "undefined",
"lastPrice": "undefined",
"collateral": "undefined",
"hedged": "undefined",
"lastUpdateTimestamp": "undefined",
"entryPrice": "undefined",
"markPrice": "undefined",
"leverage": "undefined",
"initialMargin": "undefined",
"maintenanceMargin": "can be zero for default position",
"notional": "can be zero for default position",
"contracts": "contracts",
"unrealizedPnl": "undefined",
"realizedPnl": "undefined",
"liquidationPrice": "can be 0",
"percentage": "might be 0"
},
"fetchMyTrades": {
"side": "sometimes side is not available"
},
"fetchLedger": {
"referenceId": "undefined",
"amount": "undefined",
"before":"not provided",
"tag": "undefined",
"tagFrom": "undefined",
"tagTo": "undefined",
"type": "unmapped types",
"timestamp": "default value might be invalid"
},
"fetchDepositsWithdrawals": {
"currency": "undefined",
"currencyIdAndCode": "messes codes"
},
"fetchTransactions": "skip",
"orderBook": {
"timestamp": "https://app.travis-ci.com/github/ccxt/ccxt/builds/269572350#L4458"
},
"fetchTickers": {
"checkActiveSymbols": "todo"
},
"ticker": {
"compareOHLC": "broken by API: https://github.com/ccxt/ccxt/actions/runs/16058190301/job/45317906432#step:9:437"
}
}
},
"bitopro": {
"skipMethods": {
"fetchCurrencies": {
"precision": "not provided",
"networks": "missing",
"type": "todo"
},
"loadMarkets": {
"currencyIdAndCode": "broken currencies"
},
"fetchOrderBook": {
"timestamp": "not provided"
},
"watchTicker": {
"compareOHLC": "broken https://github.com/ccxt/ccxt/actions/runs/16058190301/job/45317906432#step:9:1178"
},
"watchTickers": {
"compareOHLC": "same"
},
"ticker": {
"compareOHLC": "todo fix rounding"
}
}
},
"bitrue": {
"skip": "tmp",
"until": "2025-07-10",
"skipMethods": {
"loadMarkets": {
"currencyIdAndCode": "broken currencies",
"limits": "max is below min"
},
"fetchCurrencies": {
"precision": "not provided",
"currencyIdAndCode": "broken currencies",
"maxInactiveCurrenciesPercentage": 70
},
"ticker": {
"compareQuoteVolumeBaseVolume": "https://app.travis-ci.com/github/ccxt/ccxt/builds/269454230#L4164"
},
"fetchTickers": {
"checkActiveSymbols": "todo"
}
}
},
"bitso": {
"skipWs": true,
"skipMethods": {
"loadMarkets": {
"active": "not provided"
},
"fetchCurrencies": {
"activeMajorCurrencies": "todo"
},
"orderBook": {
"compareToZero": "tmp",
"compareToNextItem":"tmp",
"spread":"tmp"
}
}
},
"bitstamp": {
"skipMethods": {
"fetchCurrencies": {
"withdraw": "not provided",
"deposit": "not provided",
"activeMajorCurrencies": "todo"
},
"orderBook": {
"compareToZero": "bid/ask might be 0",
"spread": "https://app.travis-ci.com/github/ccxt/ccxt/builds/269693760#L3648"
},
"ticker": {
"spread": "greater than ask https://app.travis-ci.com/github/ccxt/ccxt/builds/264241638#L3027",
"compareQuoteVolumeBaseVolume": "baseVolume * low = 8.43e-6 * 3692.59081464 = 0.03112854056 < 0.0311285405674152"
},
"fetchTickers": {
"checkActiveSymbols": "todo"
}
}
},
"bitteam": {
"skipMethods": {
"loadMarkets": {
"taker": "is undefined",
"maker": "is undefined"
},
"fetchCurrencies": {
"deposit": "not provided",
"withdraw": "not provided",
"activeMajorCurrencies":"todo"
},
"ticker": {
"compareOHLC": "todo fix implementation"
}
}
},
"bitvavo": {
"skipMethods": {
"loadMarkets": {
"currencyIdAndCode": "broken currencies",
"taker": "is undefined",
"maker": "is undefined"
},
"fetchCurrencies": {
"activeMajorCurrencies": "todo"
},
"ticker": {
"spread":"broken bid-ask",
"compareQuoteVolumeBaseVolume": "quoteVolume >= baseVolume * low is failing https://app.travis-ci.com/github/ccxt/ccxt/builds/266144312#L2220"
},
"fetchTickers": {
"checkActiveSymbols": "todo"
},
"orderBook": {
"timestamp": "https://app.travis-ci.com/github/ccxt/ccxt/builds/269572350#L4685"
}
}
},
"blockchaincom": {
"skipMethods": {
"loadMarkets": {
"taker":"not provided",
"maker":"not provided"
},
"fetchCurrencies": {
"activeMajorCurrencies": "todo"
},
"orderBook": {
"compareToNextItem": "sometimes bid equals to next bid",
"timestamp": "not provided"
}
}
},
"btcbox": {
"skipMethods": {
"loadMarkets": {
"precision":"is undefined"
},
"fetchCurrencies": {
"activeMajorCurrencies": "todo"
},
"orderBook": {
"spread":"bids[0][0] (3787971.0) should be < than asks[0][0] (3787971.0)",
"timestamp":"https://app.travis-ci.com/github/ccxt/ccxt/builds/269572350#L4820"
},
"ticker": {
"spread":"broken bid-ask"
}
}
},
"btcalpha": {
"skipMethods": {
"fetchCurrencies": {
"activeMajorCurrencies": "todo"
},
"orderBook": {
"spread":"bids[0][0] is not < asks[0][0]",
"timestamp":""
},
"ticker": {
"spread": "messed bid-ask",
"compareOHLC": "fix implementation"
},
"fetchTickers": {
"checkActiveSymbols": "todo"
}
}
},
"btcmarkets": {
"skipMethods": {
"fetchCurrencies": {
"activeMajorCurrencies": "todo"
},
"orderBook": {
"compareToNextItem": "sometimes bid equals to next bid"
}
}
},
"btcturk": {
"skipMethods": {
"fetchCurrencies": {
"activeMajorCurrencies": "todo"
},
"orderBook": {
"compareToZero": "https://app.travis-ci.com/github/ccxt/ccxt/builds/263287870#L2201",
"compareToNextItem": "sometimes bid equals to next bid"
}
}
},
"bybit": {
"httpsProxy": "http://188.245.226.105:8911",
"wsProxy": "http://188.245.226.105:8911",
"skipMethods": {
"loadMarkets": {
"currencyIdAndCode": "temp skip"
},
"fetchCurrencies": {
"currencyIdAndCode": "temp skip"
},
"ticker": {
"compareQuoteVolumeBaseVolume": "incorrect calcs: https://app.travis-ci.com/github/ccxt/ccxt/builds/273708837#L4452"
},
"fetchTickers": {
"checkActiveSymbols": "todo"
},
"fetchPositions": "currently returns a lot of default/non open positions",
"fetchLedger": {
"account": "account is not provided",
"status": "status is not provided",
"fee": "undefined"
},
"fetchOpenInterestHistory": {
"openInterestAmount": "openInterestAmount is not provided"
},
"fetchBorrowRate": "does not work with unified account",
"orderBook": {
"compareToNextItem": "messed https://app.travis-ci.com/github/ccxt/ccxt/builds/269572350#L3794"
},
"watchOrderBook": {
"spread": "https://github.com/ccxt/ccxt/actions/runs/17955230405/job/51065006659?pr=26884#step:9:623"
},
"watchOrderBookForSymbols": {
"spread": "same"
}
}
},
"bigone": {
"skipMethods": {
"loadMarkets": {
"taker":"not provided",
"maker":"not provided",
"currencyIdAndCode": true
},
"fetchCurrencies": {
"withdrawForNonCrypto": "not available",
"depositForNonCrypto": "not available"
},
"ticker": {
"spread": "broken bid-ask",
"baseVolume": "negative value",
"open": "negative",
"compareQuoteVolumeBaseVolume":"todo",
"compareOHLC": "open below low https://github.com/ccxt/ccxt/actions/runs/17983223201/job/51154949662?pr=25258#step:9:228"
},
"fetchTickers": {
"checkActiveSymbols": "todo"
},
"orderBook": {
"timestamp": "not present"
}
}
},
"coincheck": {
"skipWs": true,
"skipMethods": {
"loadMarkets":{
"info":"not provided",
"precision":"not provided",
"active":"is undefined",
"taker":"is undefined",
"maker":"is undefined"
},
"fetchCurrencies": "todo: doesnt return more than 1 coins",
"orderBook": {
"timestamp": "https://app.travis-ci.com/github/ccxt/ccxt/builds/269572350#L4893"
}
}
},
"coinbase": {
"skipMethods": {
"loadMarkets": {
"currencyIdAndCode": "some curr not available"
},
"fetchCurrencies": {
"precision": "not provided",
"networks": "not provided",
"deposit":"not provided",
"withdraw": "not provided",
"activeMajorCurrencies": "todo"
},
"watchOrderBook": {
"spread": "broken bid-ask: https://github.com/ccxt/ccxt/actions/runs/14995105728/job/42127573821?pr=25943#step:9:382"
},
"watchOrderBookForSymbols": {
"spread": "broken bid-ask: https://github.com/ccxt/ccxt/actions/runs/14995105728/job/42127573821?pr=25943#step:9:382"
},
"watchTickers": "closes connection",
"fetchTickers": {
"checkActiveSymbols": "todo"
}
}
},
"coinbaseexchange": {
"skipWs": "needs auth",
"skipMethods": {
"loadMarkets":{
"currencyIdAndCode": "https://app.travis-ci.com/github/ccxt/ccxt/builds/269568596#L3551"
},
"fetchStatus": "request timeout",
"fetchCurrencies": {
"currencyIdAndCode": "https://app.travis-ci.com/github/ccxt/ccxt/builds/269568596#L3551",
"deposit": "not provided",
"withdraw": "not provided",
"activeMajorCurrencies": "not provided"
},
"orderBook": {
"timestamp": "https://app.travis-ci.com/github/ccxt/ccxt/builds/269572350#L5064"
},
"fetchTickers": {
"checkActiveSymbols": "todo"
}
}
},
"coinbaseinternational": {
"skipMethods": {
"loadMarkets": {
"currencyIdAndCode": "i.e. coinbase does not have currency code TIA",
"max": "zero values"
},
"fetchCurrencies": {
"precision": "not provided",
"networks": "not provided",
"withdraw": "not provided",
"deposit": "not provided",
"type": "todo",
"activeMajorCurrencies": "todo"
}
}
},
"coincatch": {
"skipMethods": {
"fetchCurrencies": {
"precision": "not provided",
"type": "todo",
"withdraw":"todo, needs fix",
"deposit":"todo, needs fix",
"active" : "todo, needs fix",
"activeMajorCurrencies": "todo",
"activeCurrenciesQuota": "activeCurrenciesQuota"
},
"fetchTickers": {
"checkActiveSymbols": "todo"
},
"watchTickers": {
"compareOHLC": "broken by API: https://github.com/ccxt/ccxt/actions/runs/16077301099/job/45375495181?pr=26334#step:9:438"
},
"loadMarkets": "linear and inverse values are same"
}
},
"coinmetro": {
"skipMethods": {
"loadMarkets": {
"currencyIdAndCode": "some currencies show in fetchMarkets but not in fetchCurrencies"
},
"fetchTrades": {
"side":"side is undefined"
},
"orderBook": {
"timestamp": "https://app.travis-ci.com/github/ccxt/ccxt/builds/269572350#L5064"
},
"ticker": {
"spread": "https://app.travis-ci.com/github/ccxt/ccxt/builds/269687705#L3745",
"compareOHLC": "todo"
},
"fetchTickers": {
"checkActiveSymbols": "tmp VXV issue"
}
}
},
"coinone": {
"skipWs": true,
"skipMethods": {
"loadMarkets": {
"active":"is undefined"
},
"ticker": {
"compareQuoteVolumeBaseVolume": "quote scale isn't right"
}
}
},
"coinspot": {
"skip":"temp",
"skipMethods": {
"loadMarkets": {
"precision":"not provided",
"taker":"is undefined",
"makert":"is undefined"
},
"ticker": {
"spread": "broken bid-ask",
"compareQuoteVolumeBaseVolume": "quoteVolume >= baseVolume * low is failing"
}
}
},
"coinsph": {
"skipMethods": {
"loadMarkets": {
"taker":"messed",
"maker":"messed"
},
"ticker": {
"compareQuoteVolumeBaseVolume": "quoteVolume >= baseVolume * low is failing"
},
"fetchTickers": {
"checkActiveSymbols": "todo"
},
"orderBook": {
"timestamp": "https://app.travis-ci.com/github/ccxt/ccxt/builds/269572350#L5210"
}
}
},
"cex": {
"preferredSpotSymbol": "BTC/USD",
"skipMethods": {
"proxies": "probably they do not permit our proxy location",
"loadMarkets": {
"taker":"unavailable",
"maker":"unavailable",
"active":"undefined",
"limits":"zero min/max",
"currencyIdAndCode": "messes codes"
},
"ticker": {
"compareQuoteVolumeBaseVolume": "quoteVolume >= baseVolume * low is failing",
"compareOHLC": "todo"
},
"fetchOHLCV": "cant be tested because of additional required param",
"watchOHLCV": "does not work for 1min"
}
},
"coinex": {
"skipWs": "timeouts",
"skipMethods": {
"loadMarkets": {
"currencyIdAndCode":"broken",
"active":"is undefined"
},
"fetchCurrencies": {
"precision":"not provided",
"networks": "something implementation glitch",
"type": "todo"
},
"fetchTickers": {
"checkActiveSymbols": "todo"
}
}
},
"coinmate": {
"skip": "clourderror error",
"skipMethods": {
"loadMarkets": {
"active":"is undefined"
},
"orderBook": {
"compareToNextItem":"ask should be less than next ask"
}
}
},
"cryptocom": {
"skipMethods": {
"proxies": "probably they do not permit our proxy",
"loadMarkets": {
"currencyIdAndCode": "from travis location (USA) these webapi endpoints cant be loaded"
},
"fetchCurrencies": {
"precision": "not provided"
},
"ticker": {
"compareQuoteVolumeBaseVolume": "https://github.com/ccxt/ccxt/actions/runs/15016394551/job/42195664486?pr=25955#step:11:304"
},
"fetchPositions": {
"entryPrice": "entryPrice is not provided",
"markPrice": "undefined",
"notional": "undefined",
"leverage": "undefined",
"liquidationPrice": "undefined",
"marginMode": "undefined",
"percentage": "undefined",
"marginRatio": "undefined",
"stopLossPrice": "undefined",
"takeProfitPrice": "undefined",
"maintenanceMargin": "undefined",
"initialMarginPercentage": "undefined",
"maintenanceMarginPercentage": "undefined",
"hedged": "undefined",
"side": "undefined",
"contracts": "undefined"
},
"fetchAccounts": {
"type": "type is not provided",
"code": "not provided"
}
}
},
"cryptomus": {
"skipMethods": {
"fetchCurrencies": {
"precision": "not provided",
"type": "todo"
},
"loadMarkets": {
"active":"not provided",
"limits": "not provided",
"currencyIdAndCode": "messed codes"
},
"fetchOrderBook": {
"compareBidAsk": "sometimes bid is greater than ask"
},
"fetchTrades": {
"price": "sometimes is not set",
"cost": "same",
"amount": "sometimes not present, only cost present sometimes"
},
"fetchTickers" : {
"checkActiveSymbols": "todo"
}
}
},
"currencycom": {
"skipMethods": {
"loadMarkets": {
"type": "unexpected market type",
"contractSize": "not defined when contract",
"settle": "not defined when contract",
"settleId": "not defined when contract"
},
"ticker": {
"spread": "not above bid https://app.travis-ci.com/github/ccxt/ccxt/builds/263871244#L2163",
"compareQuoteVolumeBaseVolume": "quoteVolume >= baseVolume * low is failing"
},
"watchTrades": {
"fees": "missing https://app.travis-ci.com/github/ccxt/ccxt/builds/269365378#L3601"
},
"orderBook": {
"timestamp": "https://app.travis-ci.com/github/ccxt/ccxt/builds/269572350#L5510"
}
}
},
"defx": {
"skipMethods": {
"ohlcv": {
"1": "distorted open: https://github.com/ccxt/ccxt/actions/runs/14648217027/job/41107795879?pr=25786#step:9:458"
},
"ticker": {
"compareOHLC": "broken by API: https://github.com/ccxt/ccxt/actions/runs/16075871000/job/45371060374?pr=26334#step:9:298"
},
"fetchTickers": {
"checkActiveSymbols": "todo"
},
"watchBidsAsks": "temporary skip, because of null values being returned https://github.com/ccxt/ccxt/actions/runs/15016394551/job/42195664486?pr=25955#step:11:505"
}
},
"delta": {
"skipCSharp": "frequent timeouts https://app.travis-ci.com/github/ccxt/ccxt/builds/269273148#L4301 https://app.travis-ci.com/github/ccxt/ccxt/builds/269533613#L3622",
"skipMethods": {
"loadMarkets": {
"contractSize": "todo",
"expiry": "wrng format"
},
"orderBook": {
"timestamp": "https://app.travis-ci.com/github/ccxt/ccxt/builds/269572350#L5295"
},
"ticker": {
"compareQuoteVolumeBaseVolume": "quoteVolume >= baseVolume * low is failing",
"bid": "failing the test",
"compareOHLC": "broken by API: https://github.com/ccxt/ccxt/actions/runs/16059129227/job/45320923643?pr=26334#step:9:291"
},
"fetchOHLCV": {
"4":"https://app.travis-ci.com/github/ccxt/ccxt/builds/269542746#L3512"
},
"fetchCurrencies": {
"type": "todo",
"activeMajorCurrencies": "todo",
"activeCurrenciesQuota": "todo"
}
}
},
"deribit": {
"skipMethods": {
"fetchCurrencies": {
"networks": "not provided",