From adec491b3b0b6c4963e46e045bd3164b5ff39780 Mon Sep 17 00:00:00 2001 From: Matthias Date: Sat, 21 Mar 2026 14:09:42 +0100 Subject: [PATCH] chore: remove unused argument time_in_ratio It was there in preparation for kraken, but kraken doesn't seem to have this anymore. --- freqtrade/exchange/exchange.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/freqtrade/exchange/exchange.py b/freqtrade/exchange/exchange.py index 79f93eed0..b6daafd54 100644 --- a/freqtrade/exchange/exchange.py +++ b/freqtrade/exchange/exchange.py @@ -3934,7 +3934,6 @@ class Exchange: is_short: bool, open_date: datetime, close_date: datetime, - time_in_ratio: float | None = None, ) -> float: """ calculates the sum of all funding fees that occurred for a pair during a futures trade @@ -3944,7 +3943,6 @@ class Exchange: :param is_short: trade direction :param open_date: The date and time that the trade started :param close_date: The date and time that the trade ended - :param time_in_ratio: Not used by most exchange classes """ fees: float = 0