From 362a40db6f89be6bd0fafb77f5f51b6f55345c45 Mon Sep 17 00:00:00 2001 From: Matthias Date: Tue, 17 Dec 2019 07:09:56 +0100 Subject: [PATCH] Update docstring --- freqtrade/persistence.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/freqtrade/persistence.py b/freqtrade/persistence.py index 354f713bc..21e1b82ce 100644 --- a/freqtrade/persistence.py +++ b/freqtrade/persistence.py @@ -342,9 +342,7 @@ class Trade(_DECL_BASE): def _calc_open_trade_price(self) -> float: """ - Calculate the open_rate including fee. - :param fee: fee to use on the open rate (optional). - If rate is not set self.fee will be used + Calculate the open_rate including open_fee. :return: Price in of the open trade incl. Fees """ buy_trade = (Decimal(self.amount) * Decimal(self.open_rate))