mirror of
https://github.com/freqtrade/freqtrade.git
synced 2026-01-28 18:00:23 +00:00
@@ -443,13 +443,13 @@ class FtRestClient:
|
|||||||
"""Return available pair (backtest data) based on timeframe / stake_currency selection
|
"""Return available pair (backtest data) based on timeframe / stake_currency selection
|
||||||
|
|
||||||
:param timeframe: Only pairs with this timeframe available.
|
: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: json object
|
||||||
"""
|
"""
|
||||||
return self._get(
|
return self._get(
|
||||||
"available_pairs",
|
"available_pairs",
|
||||||
params={
|
params={
|
||||||
"stake_currency": stake_currency if timeframe else "",
|
"stake_currency": stake_currency if stake_currency else "",
|
||||||
"timeframe": timeframe if timeframe else "",
|
"timeframe": timeframe if timeframe else "",
|
||||||
},
|
},
|
||||||
)
|
)
|
||||||
|
|||||||
Reference in New Issue
Block a user