You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The stats._trades has a column called ReturnPct. By reading the docs and the source code it's not clear if the return in percentage is calculated relative to the starting capital, the current equity, or the trade volume. By reading the code:
@propertydefpl(self):
"""Trade profit (positive) or loss (negative) in cash units."""price=self.__exit_priceorself.__broker.last_pricereturnself.__size* (price-self.__entry_price)
@propertydefpl_pct(self):
"""Trade profit (positive) or loss (negative) in percent."""price=self.__exit_priceorself.__broker.last_pricereturncopysign(1, self.__size) * (price/self.__entry_price-1)
it's clear that the return Pct comes from the trade volume. So it would be useful to let the user know this in the docs:
"""Trade profit (positive) or loss (negative) in percent relative to trade size."""
Thank's :)
The text was updated successfully, but these errors were encountered:
it's clear that the return Pct comes from the trade volume.
... in percent relative to trade size."""
If pl is the profit or loss of a trade (the whole trade), what else could pl_pct be?
What alternatives to "relative to trade size" would there be for something like profit or loss? 😕
Hello.
The
stats._trades
has a column calledReturnPct
. By reading the docs and the source code it's not clear if the return in percentage is calculated relative to the starting capital, the current equity, or the trade volume. By reading the code:it's clear that the return Pct comes from the trade volume. So it would be useful to let the user know this in the docs:
"""Trade profit (positive) or loss (negative) in percent relative to trade size."""
Thank's :)
The text was updated successfully, but these errors were encountered: