refactor: remove funding_fee_candle_limit override

Kraken Futures now provides 1 year of hourly funding rate history.
The previous limit of 700 candles (29 days) was a workaround for
limited API retention. Freqtrade paginates funding rate fetches
automatically, so the CCXT default (2000) works correctly.
This commit is contained in:
matstedt
2026-02-19 14:25:50 +01:00
committed by Matthias
parent a1e9b6bea8
commit c533e48310
2 changed files with 0 additions and 13 deletions
-2
View File
@@ -53,8 +53,6 @@ class Krakenfutures(Exchange):
PriceType.MARK: "mark",
PriceType.INDEX: "index",
},
# Kraken Futures retains only 29 days of hourly funding rate history.
"funding_fee_candle_limit": 700,
}
@retrier