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.