list-available-pairs should be tradingmode dependent

This commit is contained in:
Matthias
2021-12-03 08:09:32 +01:00
parent b578e31255
commit e0e4369c8e
2 changed files with 9 additions and 2 deletions

View File

@@ -254,8 +254,8 @@ def list_available_pairs(timeframe: Optional[str] = None, stake_currency: Option
dh = get_datahandler(config['datadir'], config.get('dataformat_ohlcv', None))
# TODO-lev: xmatt to decide: use candle-type or market mode for this endpoint??
pair_interval = dh.ohlcv_get_available_data(config['datadir'], 'spot')
pair_interval = dh.ohlcv_get_available_data(config['datadir'],
config.get('trading_mode', 'spot'))
if timeframe:
pair_interval = [pair for pair in pair_interval if pair[1] == timeframe]