From 3670df8771214e430f499c6bc1f3da7261db29aa Mon Sep 17 00:00:00 2001 From: Matthias Date: Tue, 10 Jun 2025 07:02:46 +0200 Subject: [PATCH] chore: remove edge from ft_rest_client --- docs/rest-api.md | 3 --- ft_client/freqtrade_client/ft_rest_client.py | 7 ------- 2 files changed, 10 deletions(-) diff --git a/docs/rest-api.md b/docs/rest-api.md index 2bf2c8923..35a7af75a 100644 --- a/docs/rest-api.md +++ b/docs/rest-api.md @@ -190,9 +190,6 @@ delete_trade :param trade_id: Deletes the trade with this ID from the database. -edge - Return information about edge. - forcebuy Buy an asset. diff --git a/ft_client/freqtrade_client/ft_rest_client.py b/ft_client/freqtrade_client/ft_rest_client.py index 15de7d6c8..1f14c5b1a 100755 --- a/ft_client/freqtrade_client/ft_rest_client.py +++ b/ft_client/freqtrade_client/ft_rest_client.py @@ -189,13 +189,6 @@ class FtRestClient: """ return self._get("monthly", params={"timescale": months} if months else None) - def edge(self): - """Return information about edge. - - :return: json object - """ - return self._get("edge") - def profit(self): """Return the profit summary.