diff --git a/backtesting/backtesting.py b/backtesting/backtesting.py index 39fb80f1..5a6335ec 100644 --- a/backtesting/backtesting.py +++ b/backtesting/backtesting.py @@ -681,7 +681,7 @@ def pl(self): @property def pl_pct(self): - """Trade profit (positive) or loss (negative) in percent.""" + """Trade profit (positive) or loss (negative) in percent relative to trade entry price.""" price = self.__exit_price or self.__broker.last_price gross_pl_pct = copysign(1, self.__size) * (price / self.__entry_price - 1)