Skip to content

[pull] develop from freqtrade:develop #1299

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
May 21, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
fix: remove unnecessary kraken workaround
fixes "list-pairs" command for kraken.
  • Loading branch information
xmatthias committed May 20, 2025
commit 0a3a1d7eca64b30bf9f1440a8a4333b019605a36
12 changes: 0 additions & 12 deletions freqtrade/exchange/kraken.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,18 +49,6 @@ def market_is_tradable(self, market: dict[str, Any]) -> bool:

return parent_check and market.get("darkpool", False) is False

def get_tickers(
self,
symbols: list[str] | None = None,
*,
cached: bool = False,
market_type: TradingMode | None = None,
) -> Tickers:
# Only fetch tickers for current stake currency
# Otherwise the request for kraken becomes too large.
symbols = list(self.get_markets(quote_currencies=[self._config["stake_currency"]]))
return super().get_tickers(symbols=symbols, cached=cached, market_type=market_type)

def consolidate_balances(self, balances: CcxtBalances) -> CcxtBalances:
"""
Consolidate balances for the same currency.
Expand Down