krakenfutures: add funding_fee_candle_limit for limited history

Kraken Futures retains only ~29 days of hourly funding rate history.
Set funding_fee_candle_limit to 700 so ohlcv_candle_limit returns the
correct cap for CandleType.FUNDING_RATE instead of the general OHLCV
limit.
This commit is contained in:
matstedt
2026-02-14 20:34:59 +01:00
committed by Matthias
parent cb2e50abcf
commit 0dc26584cc
2 changed files with 13 additions and 0 deletions
+2
View File
@@ -51,6 +51,8 @@ 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