ccxt 4.4.87__py2.py3-none-any.whl → 4.4.90__py2.py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (67) hide show
  1. ccxt/__init__.py +1 -1
  2. ccxt/abstract/bitget.py +58 -0
  3. ccxt/abstract/bitrue.py +65 -65
  4. ccxt/abstract/cryptocom.py +2 -0
  5. ccxt/abstract/luno.py +1 -0
  6. ccxt/async_support/__init__.py +1 -1
  7. ccxt/async_support/base/exchange.py +4 -1
  8. ccxt/async_support/binance.py +1 -1
  9. ccxt/async_support/bingx.py +55 -29
  10. ccxt/async_support/bitget.py +469 -147
  11. ccxt/async_support/bitrue.py +72 -66
  12. ccxt/async_support/bitvavo.py +34 -0
  13. ccxt/async_support/btcalpha.py +35 -0
  14. ccxt/async_support/btcbox.py +35 -0
  15. ccxt/async_support/btcmarkets.py +35 -0
  16. ccxt/async_support/btcturk.py +35 -0
  17. ccxt/async_support/bybit.py +28 -60
  18. ccxt/async_support/coinbase.py +1 -3
  19. ccxt/async_support/cryptocom.py +49 -0
  20. ccxt/async_support/delta.py +2 -2
  21. ccxt/async_support/digifinex.py +39 -99
  22. ccxt/async_support/gate.py +12 -5
  23. ccxt/async_support/hashkey.py +15 -28
  24. ccxt/async_support/hollaex.py +27 -22
  25. ccxt/async_support/kraken.py +28 -49
  26. ccxt/async_support/luno.py +87 -1
  27. ccxt/async_support/modetrade.py +7 -7
  28. ccxt/async_support/okx.py +2 -1
  29. ccxt/async_support/phemex.py +16 -8
  30. ccxt/async_support/tradeogre.py +3 -3
  31. ccxt/async_support/xt.py +1 -1
  32. ccxt/base/exchange.py +15 -5
  33. ccxt/binance.py +1 -1
  34. ccxt/bingx.py +55 -29
  35. ccxt/bitget.py +469 -147
  36. ccxt/bitrue.py +72 -66
  37. ccxt/bitvavo.py +34 -0
  38. ccxt/btcalpha.py +35 -0
  39. ccxt/btcbox.py +35 -0
  40. ccxt/btcmarkets.py +35 -0
  41. ccxt/btcturk.py +35 -0
  42. ccxt/bybit.py +28 -60
  43. ccxt/coinbase.py +1 -3
  44. ccxt/cryptocom.py +49 -0
  45. ccxt/delta.py +2 -2
  46. ccxt/digifinex.py +39 -99
  47. ccxt/gate.py +12 -5
  48. ccxt/hashkey.py +15 -28
  49. ccxt/hollaex.py +27 -22
  50. ccxt/kraken.py +27 -49
  51. ccxt/luno.py +87 -1
  52. ccxt/modetrade.py +7 -7
  53. ccxt/okx.py +2 -1
  54. ccxt/phemex.py +16 -8
  55. ccxt/pro/__init__.py +1 -119
  56. ccxt/pro/coinbase.py +2 -0
  57. ccxt/pro/cryptocom.py +27 -0
  58. ccxt/pro/kraken.py +3 -9
  59. ccxt/test/tests_async.py +1 -1
  60. ccxt/test/tests_sync.py +1 -1
  61. ccxt/tradeogre.py +3 -3
  62. ccxt/xt.py +1 -1
  63. {ccxt-4.4.87.dist-info → ccxt-4.4.90.dist-info}/METADATA +62 -20
  64. {ccxt-4.4.87.dist-info → ccxt-4.4.90.dist-info}/RECORD +67 -67
  65. {ccxt-4.4.87.dist-info → ccxt-4.4.90.dist-info}/LICENSE.txt +0 -0
  66. {ccxt-4.4.87.dist-info → ccxt-4.4.90.dist-info}/WHEEL +0 -0
  67. {ccxt-4.4.87.dist-info → ccxt-4.4.90.dist-info}/top_level.txt +0 -0
@@ -39,7 +39,7 @@ class bitrue(Exchange, ImplicitAPI):
39
39
  'id': 'bitrue',
40
40
  'name': 'Bitrue',
41
41
  'countries': ['SG'], # Singapore, Malta
42
- 'rateLimit': 1000,
42
+ 'rateLimit': 10,
43
43
  'certified': False,
44
44
  'version': 'v1',
45
45
  'pro': True,
@@ -180,56 +180,62 @@ class bitrue(Exchange, ImplicitAPI):
180
180
  ],
181
181
  'fees': 'https://bitrue.zendesk.com/hc/en-001/articles/4405479952537',
182
182
  },
183
+ # from spotV1PublicGetExchangeInfo:
184
+ # general 25000 weight in 1 minute per IP. = 416.66 per second a weight of 0.24 for 1
185
+ # orders 750 weight in 6 seconds per IP. = 125 per second a weight of 0.8 for 1
186
+ # orders 200 weight in 10 seconds per User. = 20 per second a weight of 5 for 1
187
+ # withdraw 3000 weight in 1 hour per User. = 0.833 per second a weight of 120 for 1
188
+ # withdraw 1000 weight in 1 day per User. = 0.011574 per second a weight of 8640 for 1
183
189
  'api': {
184
190
  'spot': {
185
191
  'kline': {
186
192
  'public': {
187
193
  'get': {
188
- 'public.json': 1,
189
- 'public{currency}.json': 1,
194
+ 'public.json': 0.24,
195
+ 'public{currency}.json': 0.24,
190
196
  },
191
197
  },
192
198
  },
193
199
  'v1': {
194
200
  'public': {
195
201
  'get': {
196
- 'ping': 1,
197
- 'time': 1,
198
- 'exchangeInfo': 1,
199
- 'depth': {'cost': 1, 'byLimit': [[100, 1], [500, 5], [1000, 10]]},
200
- 'trades': 1,
201
- 'historicalTrades': 5,
202
- 'aggTrades': 1,
203
- 'ticker/24hr': {'cost': 1, 'noSymbol': 40},
204
- 'ticker/price': {'cost': 1, 'noSymbol': 2},
205
- 'ticker/bookTicker': {'cost': 1, 'noSymbol': 2},
206
- 'market/kline': 1,
202
+ 'ping': 0.24,
203
+ 'time': 0.24,
204
+ 'exchangeInfo': 0.24,
205
+ 'depth': {'cost': 1, 'byLimit': [[100, 0.24], [500, 1.2], [1000, 2.4]]},
206
+ 'trades': 0.24,
207
+ 'historicalTrades': 1.2,
208
+ 'aggTrades': 0.24,
209
+ 'ticker/24hr': {'cost': 0.24, 'noSymbol': 9.6},
210
+ 'ticker/price': 0.24,
211
+ 'ticker/bookTicker': 0.24,
212
+ 'market/kline': 0.24,
207
213
  },
208
214
  },
209
215
  'private': {
210
216
  'get': {
211
- 'order': 1,
212
- 'openOrders': 1,
213
- 'allOrders': 5,
214
- 'account': 5,
215
- 'myTrades': {'cost': 5, 'noSymbol': 40},
216
- 'etf/net-value/{symbol}': 1,
217
- 'withdraw/history': 1,
218
- 'deposit/history': 1,
217
+ 'order': 5,
218
+ 'openOrders': 5,
219
+ 'allOrders': 25,
220
+ 'account': 25,
221
+ 'myTrades': 25,
222
+ 'etf/net-value/{symbol}': 0.24,
223
+ 'withdraw/history': 120,
224
+ 'deposit/history': 120,
219
225
  },
220
226
  'post': {
221
- 'order': 4,
222
- 'withdraw/commit': 1,
227
+ 'order': 5,
228
+ 'withdraw/commit': 120,
223
229
  },
224
230
  'delete': {
225
- 'order': 1,
231
+ 'order': 5,
226
232
  },
227
233
  },
228
234
  },
229
235
  'v2': {
230
236
  'private': {
231
237
  'get': {
232
- 'myTrades': 5,
238
+ 'myTrades': 1.2,
233
239
  },
234
240
  },
235
241
  },
@@ -238,34 +244,34 @@ class bitrue(Exchange, ImplicitAPI):
238
244
  'v1': {
239
245
  'public': {
240
246
  'get': {
241
- 'ping': 1,
242
- 'time': 1,
243
- 'contracts': 1,
244
- 'depth': 1,
245
- 'ticker': 1,
246
- 'klines': 1,
247
+ 'ping': 0.24,
248
+ 'time': 0.24,
249
+ 'contracts': 0.24,
250
+ 'depth': 0.24,
251
+ 'ticker': 0.24,
252
+ 'klines': 0.24,
247
253
  },
248
254
  },
249
255
  },
250
256
  'v2': {
251
257
  'private': {
252
258
  'get': {
253
- 'myTrades': 1,
254
- 'openOrders': 1,
255
- 'order': 1,
256
- 'account': 1,
257
- 'leverageBracket': 1,
258
- 'commissionRate': 1,
259
- 'futures_transfer_history': 1,
260
- 'forceOrdersHistory': 1,
259
+ 'myTrades': 5,
260
+ 'openOrders': 5,
261
+ 'order': 5,
262
+ 'account': 5,
263
+ 'leverageBracket': 5,
264
+ 'commissionRate': 5,
265
+ 'futures_transfer_history': 5,
266
+ 'forceOrdersHistory': 5,
261
267
  },
262
268
  'post': {
263
- 'positionMargin': 1,
264
- 'level_edit': 1,
265
- 'cancel': 1,
266
- 'order': 1,
267
- 'allOpenOrders': 1,
268
- 'futures_transfer': 1,
269
+ 'positionMargin': 5,
270
+ 'level_edit': 5,
271
+ 'cancel': 5,
272
+ 'order': 25,
273
+ 'allOpenOrders': 5,
274
+ 'futures_transfer': 5,
269
275
  },
270
276
  },
271
277
  },
@@ -274,34 +280,34 @@ class bitrue(Exchange, ImplicitAPI):
274
280
  'v1': {
275
281
  'public': {
276
282
  'get': {
277
- 'ping': 1,
278
- 'time': 1,
279
- 'contracts': 1,
280
- 'depth': 1,
281
- 'ticker': 1,
282
- 'klines': 1,
283
+ 'ping': 0.24,
284
+ 'time': 0.24,
285
+ 'contracts': 0.24,
286
+ 'depth': 0.24,
287
+ 'ticker': 0.24,
288
+ 'klines': 0.24,
283
289
  },
284
290
  },
285
291
  },
286
292
  'v2': {
287
293
  'private': {
288
294
  'get': {
289
- 'myTrades': 1,
290
- 'openOrders': 1,
291
- 'order': 1,
292
- 'account': 1,
293
- 'leverageBracket': 1,
294
- 'commissionRate': 1,
295
- 'futures_transfer_history': 1,
296
- 'forceOrdersHistory': 1,
295
+ 'myTrades': 5,
296
+ 'openOrders': 5,
297
+ 'order': 5,
298
+ 'account': 5,
299
+ 'leverageBracket': 5,
300
+ 'commissionRate': 5,
301
+ 'futures_transfer_history': 5,
302
+ 'forceOrdersHistory': 5,
297
303
  },
298
304
  'post': {
299
- 'positionMargin': 1,
300
- 'level_edit': 1,
301
- 'cancel': 1,
302
- 'order': 1,
303
- 'allOpenOrders': 1,
304
- 'futures_transfer': 1,
305
+ 'positionMargin': 5,
306
+ 'level_edit': 5,
307
+ 'cancel': 5,
308
+ 'order': 5,
309
+ 'allOpenOrders': 5,
310
+ 'futures_transfer': 5,
305
311
  },
306
312
  },
307
313
  },
@@ -48,19 +48,29 @@ class bitvavo(Exchange, ImplicitAPI):
48
48
  'future': False,
49
49
  'option': False,
50
50
  'addMargin': False,
51
+ 'borrowCrossMargin': False,
52
+ 'borrowIsolatedMargin': False,
53
+ 'borrowMargin': False,
51
54
  'cancelAllOrders': True,
52
55
  'cancelOrder': True,
53
56
  'closeAllPositions': False,
54
57
  'closePosition': False,
55
58
  'createOrder': True,
59
+ 'createOrderWithTakeProfitAndStopLoss': False,
60
+ 'createOrderWithTakeProfitAndStopLossWs': False,
61
+ 'createPostOnlyOrder': False,
56
62
  'createReduceOnlyOrder': False,
57
63
  'createStopLimitOrder': True,
58
64
  'createStopMarketOrder': True,
59
65
  'createStopOrder': True,
60
66
  'editOrder': True,
61
67
  'fetchBalance': True,
68
+ 'fetchBorrowInterest': False,
69
+ 'fetchBorrowRate': False,
62
70
  'fetchBorrowRateHistories': False,
63
71
  'fetchBorrowRateHistory': False,
72
+ 'fetchBorrowRates': False,
73
+ 'fetchBorrowRatesPerSymbol': False,
64
74
  'fetchCrossBorrowRate': False,
65
75
  'fetchCrossBorrowRates': False,
66
76
  'fetchCurrencies': True,
@@ -71,21 +81,39 @@ class bitvavo(Exchange, ImplicitAPI):
71
81
  'fetchDepositWithdrawFee': 'emulated',
72
82
  'fetchDepositWithdrawFees': True,
73
83
  'fetchFundingHistory': False,
84
+ 'fetchFundingInterval': False,
85
+ 'fetchFundingIntervals': False,
74
86
  'fetchFundingRate': False,
75
87
  'fetchFundingRateHistory': False,
76
88
  'fetchFundingRates': False,
89
+ 'fetchGreeks': False,
77
90
  'fetchIndexOHLCV': False,
78
91
  'fetchIsolatedBorrowRate': False,
79
92
  'fetchIsolatedBorrowRates': False,
93
+ 'fetchIsolatedPositions': False,
80
94
  'fetchLeverage': False,
95
+ 'fetchLeverages': False,
81
96
  'fetchLeverageTiers': False,
97
+ 'fetchLiquidations': False,
98
+ 'fetchLongShortRatio': False,
99
+ 'fetchLongShortRatioHistory': False,
100
+ 'fetchMarginAdjustmentHistory': False,
82
101
  'fetchMarginMode': False,
102
+ 'fetchMarginModes': False,
103
+ 'fetchMarketLeverageTiers': False,
83
104
  'fetchMarkets': True,
84
105
  'fetchMarkOHLCV': False,
106
+ 'fetchMarkPrices': False,
107
+ 'fetchMyLiquidations': False,
108
+ 'fetchMySettlementHistory': False,
85
109
  'fetchMyTrades': True,
86
110
  'fetchOHLCV': True,
111
+ 'fetchOpenInterest': False,
87
112
  'fetchOpenInterestHistory': False,
113
+ 'fetchOpenInterests': False,
88
114
  'fetchOpenOrders': True,
115
+ 'fetchOption': False,
116
+ 'fetchOptionChain': False,
89
117
  'fetchOrder': True,
90
118
  'fetchOrderBook': True,
91
119
  'fetchOrders': True,
@@ -97,6 +125,7 @@ class bitvavo(Exchange, ImplicitAPI):
97
125
  'fetchPositionsHistory': False,
98
126
  'fetchPositionsRisk': False,
99
127
  'fetchPremiumIndexOHLCV': False,
128
+ 'fetchSettlementHistory': False,
100
129
  'fetchTicker': True,
101
130
  'fetchTickers': True,
102
131
  'fetchTime': True,
@@ -105,9 +134,14 @@ class bitvavo(Exchange, ImplicitAPI):
105
134
  'fetchTradingFees': True,
106
135
  'fetchTransfer': False,
107
136
  'fetchTransfers': False,
137
+ 'fetchVolatilityHistory': False,
108
138
  'fetchWithdrawals': True,
109
139
  'reduceMargin': False,
140
+ 'repayCrossMargin': False,
141
+ 'repayIsolatedMargin': False,
142
+ 'repayMargin': False,
110
143
  'setLeverage': False,
144
+ 'setMargin': False,
111
145
  'setMarginMode': False,
112
146
  'setPositionMode': False,
113
147
  'transfer': False,
@@ -31,18 +31,28 @@ class btcalpha(Exchange, ImplicitAPI):
31
31
  'future': False,
32
32
  'option': False,
33
33
  'addMargin': False,
34
+ 'borrowCrossMargin': False,
35
+ 'borrowIsolatedMargin': False,
36
+ 'borrowMargin': False,
34
37
  'cancelOrder': True,
35
38
  'closeAllPositions': False,
36
39
  'closePosition': False,
37
40
  'createDepositAddress': False,
38
41
  'createOrder': True,
42
+ 'createOrderWithTakeProfitAndStopLoss': False,
43
+ 'createOrderWithTakeProfitAndStopLossWs': False,
44
+ 'createPostOnlyOrder': False,
39
45
  'createReduceOnlyOrder': False,
40
46
  'createStopLimitOrder': False,
41
47
  'createStopMarketOrder': False,
42
48
  'createStopOrder': False,
43
49
  'fetchBalance': True,
50
+ 'fetchBorrowInterest': False,
51
+ 'fetchBorrowRate': False,
44
52
  'fetchBorrowRateHistories': False,
45
53
  'fetchBorrowRateHistory': False,
54
+ 'fetchBorrowRates': False,
55
+ 'fetchBorrowRatesPerSymbol': False,
46
56
  'fetchClosedOrders': True,
47
57
  'fetchCrossBorrowRate': False,
48
58
  'fetchCrossBorrowRates': False,
@@ -52,21 +62,40 @@ class btcalpha(Exchange, ImplicitAPI):
52
62
  'fetchDepositAddressesByNetwork': False,
53
63
  'fetchDeposits': True,
54
64
  'fetchFundingHistory': False,
65
+ 'fetchFundingInterval': False,
66
+ 'fetchFundingIntervals': False,
55
67
  'fetchFundingRate': False,
56
68
  'fetchFundingRateHistory': False,
57
69
  'fetchFundingRates': False,
70
+ 'fetchGreeks': False,
58
71
  'fetchIndexOHLCV': False,
59
72
  'fetchIsolatedBorrowRate': False,
60
73
  'fetchIsolatedBorrowRates': False,
74
+ 'fetchIsolatedPositions': False,
61
75
  'fetchL2OrderBook': True,
62
76
  'fetchLeverage': False,
77
+ 'fetchLeverages': False,
78
+ 'fetchLeverageTiers': False,
79
+ 'fetchLiquidations': False,
80
+ 'fetchLongShortRatio': False,
81
+ 'fetchLongShortRatioHistory': False,
82
+ 'fetchMarginAdjustmentHistory': False,
63
83
  'fetchMarginMode': False,
84
+ 'fetchMarginModes': False,
85
+ 'fetchMarketLeverageTiers': False,
64
86
  'fetchMarkets': True,
65
87
  'fetchMarkOHLCV': False,
88
+ 'fetchMarkPrices': False,
89
+ 'fetchMyLiquidations': False,
90
+ 'fetchMySettlementHistory': False,
66
91
  'fetchMyTrades': True,
67
92
  'fetchOHLCV': True,
93
+ 'fetchOpenInterest': False,
68
94
  'fetchOpenInterestHistory': False,
95
+ 'fetchOpenInterests': False,
69
96
  'fetchOpenOrders': True,
97
+ 'fetchOption': False,
98
+ 'fetchOptionChain': False,
70
99
  'fetchOrder': True,
71
100
  'fetchOrderBook': True,
72
101
  'fetchOrders': True,
@@ -78,6 +107,7 @@ class btcalpha(Exchange, ImplicitAPI):
78
107
  'fetchPositionsHistory': False,
79
108
  'fetchPositionsRisk': False,
80
109
  'fetchPremiumIndexOHLCV': False,
110
+ 'fetchSettlementHistory': False,
81
111
  'fetchTicker': True,
82
112
  'fetchTickers': True,
83
113
  'fetchTrades': True,
@@ -85,10 +115,15 @@ class btcalpha(Exchange, ImplicitAPI):
85
115
  'fetchTradingFees': False,
86
116
  'fetchTransfer': False,
87
117
  'fetchTransfers': False,
118
+ 'fetchVolatilityHistory': False,
88
119
  'fetchWithdrawal': False,
89
120
  'fetchWithdrawals': True,
90
121
  'reduceMargin': False,
122
+ 'repayCrossMargin': False,
123
+ 'repayIsolatedMargin': False,
124
+ 'repayMargin': False,
91
125
  'setLeverage': False,
126
+ 'setMargin': False,
92
127
  'setMarginMode': False,
93
128
  'setPositionMode': False,
94
129
  'transfer': False,
@@ -40,28 +40,57 @@ class btcbox(Exchange, ImplicitAPI):
40
40
  'future': False,
41
41
  'option': False,
42
42
  'addMargin': False,
43
+ 'borrowCrossMargin': False,
44
+ 'borrowIsolatedMargin': False,
45
+ 'borrowMargin': False,
43
46
  'cancelOrder': True,
44
47
  'closeAllPositions': False,
45
48
  'closePosition': False,
46
49
  'createOrder': True,
50
+ 'createOrderWithTakeProfitAndStopLoss': False,
51
+ 'createOrderWithTakeProfitAndStopLossWs': False,
52
+ 'createPostOnlyOrder': False,
47
53
  'createReduceOnlyOrder': False,
48
54
  'fetchBalance': True,
55
+ 'fetchBorrowInterest': False,
56
+ 'fetchBorrowRate': False,
49
57
  'fetchBorrowRateHistories': False,
50
58
  'fetchBorrowRateHistory': False,
59
+ 'fetchBorrowRates': False,
60
+ 'fetchBorrowRatesPerSymbol': False,
51
61
  'fetchCrossBorrowRate': False,
52
62
  'fetchCrossBorrowRates': False,
53
63
  'fetchFundingHistory': False,
64
+ 'fetchFundingInterval': False,
65
+ 'fetchFundingIntervals': False,
54
66
  'fetchFundingRate': False,
55
67
  'fetchFundingRateHistory': False,
56
68
  'fetchFundingRates': False,
69
+ 'fetchGreeks': False,
57
70
  'fetchIndexOHLCV': False,
58
71
  'fetchIsolatedBorrowRate': False,
59
72
  'fetchIsolatedBorrowRates': False,
73
+ 'fetchIsolatedPositions': False,
60
74
  'fetchLeverage': False,
75
+ 'fetchLeverages': False,
76
+ 'fetchLeverageTiers': False,
77
+ 'fetchLiquidations': False,
78
+ 'fetchLongShortRatio': False,
79
+ 'fetchLongShortRatioHistory': False,
80
+ 'fetchMarginAdjustmentHistory': False,
61
81
  'fetchMarginMode': False,
82
+ 'fetchMarginModes': False,
83
+ 'fetchMarketLeverageTiers': False,
62
84
  'fetchMarkOHLCV': False,
85
+ 'fetchMarkPrices': False,
86
+ 'fetchMyLiquidations': False,
87
+ 'fetchMySettlementHistory': False,
88
+ 'fetchOpenInterest': False,
63
89
  'fetchOpenInterestHistory': False,
90
+ 'fetchOpenInterests': False,
64
91
  'fetchOpenOrders': True,
92
+ 'fetchOption': False,
93
+ 'fetchOptionChain': False,
65
94
  'fetchOrder': True,
66
95
  'fetchOrderBook': True,
67
96
  'fetchOrders': True,
@@ -73,15 +102,21 @@ class btcbox(Exchange, ImplicitAPI):
73
102
  'fetchPositionsHistory': False,
74
103
  'fetchPositionsRisk': False,
75
104
  'fetchPremiumIndexOHLCV': False,
105
+ 'fetchSettlementHistory': False,
76
106
  'fetchTicker': True,
77
107
  'fetchTickers': True,
78
108
  'fetchTrades': True,
79
109
  'fetchTransfer': False,
80
110
  'fetchTransfers': False,
111
+ 'fetchVolatilityHistory': False,
81
112
  'fetchWithdrawal': False,
82
113
  'fetchWithdrawals': False,
83
114
  'reduceMargin': False,
115
+ 'repayCrossMargin': False,
116
+ 'repayIsolatedMargin': False,
117
+ 'repayMargin': False,
84
118
  'setLeverage': False,
119
+ 'setMargin': False,
85
120
  'setMarginMode': False,
86
121
  'setPositionMode': False,
87
122
  'transfer': False,
@@ -35,17 +35,27 @@ class btcmarkets(Exchange, ImplicitAPI):
35
35
  'future': False,
36
36
  'option': False,
37
37
  'addMargin': False,
38
+ 'borrowCrossMargin': False,
39
+ 'borrowIsolatedMargin': False,
40
+ 'borrowMargin': False,
38
41
  'cancelOrder': True,
39
42
  'cancelOrders': True,
40
43
  'closeAllPositions': False,
41
44
  'closePosition': False,
42
45
  'createDepositAddress': False,
43
46
  'createOrder': True,
47
+ 'createOrderWithTakeProfitAndStopLoss': False,
48
+ 'createOrderWithTakeProfitAndStopLossWs': False,
49
+ 'createPostOnlyOrder': False,
44
50
  'createReduceOnlyOrder': False,
45
51
  'createTriggerOrder': True,
46
52
  'fetchBalance': True,
53
+ 'fetchBorrowInterest': False,
54
+ 'fetchBorrowRate': False,
47
55
  'fetchBorrowRateHistories': False,
48
56
  'fetchBorrowRateHistory': False,
57
+ 'fetchBorrowRates': False,
58
+ 'fetchBorrowRatesPerSymbol': False,
49
59
  'fetchClosedOrders': 'emulated',
50
60
  'fetchCrossBorrowRate': False,
51
61
  'fetchCrossBorrowRates': False,
@@ -55,20 +65,39 @@ class btcmarkets(Exchange, ImplicitAPI):
55
65
  'fetchDeposits': True,
56
66
  'fetchDepositsWithdrawals': True,
57
67
  'fetchFundingHistory': False,
68
+ 'fetchFundingInterval': False,
69
+ 'fetchFundingIntervals': False,
58
70
  'fetchFundingRate': False,
59
71
  'fetchFundingRateHistory': False,
60
72
  'fetchFundingRates': False,
73
+ 'fetchGreeks': False,
61
74
  'fetchIndexOHLCV': False,
62
75
  'fetchIsolatedBorrowRate': False,
63
76
  'fetchIsolatedBorrowRates': False,
77
+ 'fetchIsolatedPositions': False,
64
78
  'fetchLeverage': False,
79
+ 'fetchLeverages': False,
80
+ 'fetchLeverageTiers': False,
81
+ 'fetchLiquidations': False,
82
+ 'fetchLongShortRatio': False,
83
+ 'fetchLongShortRatioHistory': False,
84
+ 'fetchMarginAdjustmentHistory': False,
65
85
  'fetchMarginMode': False,
86
+ 'fetchMarginModes': False,
87
+ 'fetchMarketLeverageTiers': False,
66
88
  'fetchMarkets': True,
67
89
  'fetchMarkOHLCV': False,
90
+ 'fetchMarkPrices': False,
91
+ 'fetchMyLiquidations': False,
92
+ 'fetchMySettlementHistory': False,
68
93
  'fetchMyTrades': True,
69
94
  'fetchOHLCV': True,
95
+ 'fetchOpenInterest': False,
70
96
  'fetchOpenInterestHistory': False,
97
+ 'fetchOpenInterests': False,
71
98
  'fetchOpenOrders': True,
99
+ 'fetchOption': False,
100
+ 'fetchOptionChain': False,
72
101
  'fetchOrder': True,
73
102
  'fetchOrderBook': True,
74
103
  'fetchOrders': True,
@@ -80,13 +109,19 @@ class btcmarkets(Exchange, ImplicitAPI):
80
109
  'fetchPositionsHistory': False,
81
110
  'fetchPositionsRisk': False,
82
111
  'fetchPremiumIndexOHLCV': False,
112
+ 'fetchSettlementHistory': False,
83
113
  'fetchTicker': True,
84
114
  'fetchTime': True,
85
115
  'fetchTrades': True,
86
116
  'fetchTransactions': 'emulated',
117
+ 'fetchVolatilityHistory': False,
87
118
  'fetchWithdrawals': True,
88
119
  'reduceMargin': False,
120
+ 'repayCrossMargin': False,
121
+ 'repayIsolatedMargin': False,
122
+ 'repayMargin': False,
89
123
  'setLeverage': False,
124
+ 'setMargin': False,
90
125
  'setMarginMode': False,
91
126
  'setPositionMode': False,
92
127
  'withdraw': True,
@@ -34,35 +34,64 @@ class btcturk(Exchange, ImplicitAPI):
34
34
  'future': False,
35
35
  'option': False,
36
36
  'addMargin': False,
37
+ 'borrowCrossMargin': False,
38
+ 'borrowIsolatedMargin': False,
39
+ 'borrowMargin': False,
37
40
  'cancelOrder': True,
38
41
  'closeAllPositions': False,
39
42
  'closePosition': False,
40
43
  'createDepositAddress': False,
41
44
  'createOrder': True,
45
+ 'createOrderWithTakeProfitAndStopLoss': False,
46
+ 'createOrderWithTakeProfitAndStopLossWs': False,
47
+ 'createPostOnlyOrder': False,
42
48
  'createReduceOnlyOrder': False,
43
49
  'fetchBalance': True,
50
+ 'fetchBorrowInterest': False,
51
+ 'fetchBorrowRate': False,
44
52
  'fetchBorrowRateHistories': False,
45
53
  'fetchBorrowRateHistory': False,
54
+ 'fetchBorrowRates': False,
55
+ 'fetchBorrowRatesPerSymbol': False,
46
56
  'fetchCrossBorrowRate': False,
47
57
  'fetchCrossBorrowRates': False,
48
58
  'fetchDepositAddress': False,
49
59
  'fetchDepositAddresses': False,
50
60
  'fetchDepositAddressesByNetwork': False,
51
61
  'fetchFundingHistory': False,
62
+ 'fetchFundingInterval': False,
63
+ 'fetchFundingIntervals': False,
52
64
  'fetchFundingRate': False,
53
65
  'fetchFundingRateHistory': False,
54
66
  'fetchFundingRates': False,
67
+ 'fetchGreeks': False,
55
68
  'fetchIndexOHLCV': False,
56
69
  'fetchIsolatedBorrowRate': False,
57
70
  'fetchIsolatedBorrowRates': False,
71
+ 'fetchIsolatedPositions': False,
58
72
  'fetchLeverage': False,
73
+ 'fetchLeverages': False,
74
+ 'fetchLeverageTiers': False,
75
+ 'fetchLiquidations': False,
76
+ 'fetchLongShortRatio': False,
77
+ 'fetchLongShortRatioHistory': False,
78
+ 'fetchMarginAdjustmentHistory': False,
59
79
  'fetchMarginMode': False,
80
+ 'fetchMarginModes': False,
81
+ 'fetchMarketLeverageTiers': False,
60
82
  'fetchMarkets': True,
61
83
  'fetchMarkOHLCV': False,
84
+ 'fetchMarkPrices': False,
85
+ 'fetchMyLiquidations': False,
86
+ 'fetchMySettlementHistory': False,
62
87
  'fetchMyTrades': True,
63
88
  'fetchOHLCV': True,
89
+ 'fetchOpenInterest': False,
64
90
  'fetchOpenInterestHistory': False,
91
+ 'fetchOpenInterests': False,
65
92
  'fetchOpenOrders': True,
93
+ 'fetchOption': False,
94
+ 'fetchOptionChain': False,
66
95
  'fetchOrderBook': True,
67
96
  'fetchOrders': True,
68
97
  'fetchPosition': False,
@@ -73,11 +102,17 @@ class btcturk(Exchange, ImplicitAPI):
73
102
  'fetchPositionsHistory': False,
74
103
  'fetchPositionsRisk': False,
75
104
  'fetchPremiumIndexOHLCV': False,
105
+ 'fetchSettlementHistory': False,
76
106
  'fetchTicker': True,
77
107
  'fetchTickers': True,
78
108
  'fetchTrades': True,
109
+ 'fetchVolatilityHistory': False,
79
110
  'reduceMargin': False,
111
+ 'repayCrossMargin': False,
112
+ 'repayIsolatedMargin': False,
113
+ 'repayMargin': False,
80
114
  'setLeverage': False,
115
+ 'setMargin': False,
81
116
  'setMarginMode': False,
82
117
  'setPositionMode': False,
83
118
  'ws': False,