From 015be770c33fde9405ae98f76004d0cae68c14f2 Mon Sep 17 00:00:00 2001 From: Matthias Date: Mon, 22 Aug 2022 06:42:14 +0200 Subject: [PATCH] ccxt now defaults to base volume for all markets --- freqtrade/exchange/gateio.py | 2 -- 1 file changed, 2 deletions(-) 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'], }