diff --git a/freqtrade/exchange/gateio.py b/freqtrade/exchange/gateio.py index c6ed0c66c..426a4b64d 100644 --- a/freqtrade/exchange/gateio.py +++ b/freqtrade/exchange/gateio.py @@ -25,7 +25,6 @@ class Gateio(Exchange): _ft_has: Dict = { "ohlcv_candle_limit": 1000, - "ohlcv_volume_currency": "quote", "time_in_force_parameter": "timeInForce", "order_time_in_force": ['gtc', 'ioc'], "stoploss_order_types": {"limit": "limit"}, @@ -34,7 +33,6 @@ class Gateio(Exchange): _ft_has_futures: Dict = { "needs_trading_fees": True, - "ohlcv_volume_currency": "base", "fee_cost_in_contracts": False, # Set explicitly to false for clarity "order_props_in_contracts": ['amount', 'filled', 'remaining'], } diff --git a/requirements.txt b/requirements.txt index fe30c90a3..4a0531ea8 100644 --- a/requirements.txt +++ b/requirements.txt @@ -2,7 +2,7 @@ numpy==1.23.2 pandas==1.4.3 pandas-ta==0.3.14b -ccxt==1.92.20 +ccxt==1.92.52 # Pin cryptography for now due to rust build errors with piwheels cryptography==37.0.4 aiohttp==3.8.1