From 0986350f0529b451a55de4830878a59c910ff051 Mon Sep 17 00:00:00 2001 From: Stefano Date: Sat, 25 Oct 2025 13:11:11 +0900 Subject: [PATCH 1/2] fix typo --- ft_client/freqtrade_client/ft_rest_client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ft_client/freqtrade_client/ft_rest_client.py b/ft_client/freqtrade_client/ft_rest_client.py index 1f14c5b1a..0fe58495e 100755 --- a/ft_client/freqtrade_client/ft_rest_client.py +++ b/ft_client/freqtrade_client/ft_rest_client.py @@ -449,7 +449,7 @@ class FtRestClient: return self._get( "available_pairs", params={ - "stake_currency": stake_currency if timeframe else "", + "stake_currency": stake_currency if stake_currency else "", "timeframe": timeframe if timeframe else "", }, ) From cdb194a363a1af070ebe12df1737193d3efbc9d6 Mon Sep 17 00:00:00 2001 From: Stefano Date: Sat, 25 Oct 2025 13:13:40 +0900 Subject: [PATCH 2/2] fix typo --- ft_client/freqtrade_client/ft_rest_client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ft_client/freqtrade_client/ft_rest_client.py b/ft_client/freqtrade_client/ft_rest_client.py index 0fe58495e..339d50d5f 100755 --- a/ft_client/freqtrade_client/ft_rest_client.py +++ b/ft_client/freqtrade_client/ft_rest_client.py @@ -443,7 +443,7 @@ class FtRestClient: """Return available pair (backtest data) based on timeframe / stake_currency selection :param timeframe: Only pairs with this timeframe available. - :param stake_currency: Only pairs that include this timeframe + :param stake_currency: Only pairs that include this stake currency. :return: json object """ return self._get(