Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

More clarity on trade pct calculation #1254

Open
ironhak opened this issue Mar 23, 2025 · 1 comment
Open

More clarity on trade pct calculation #1254

ironhak opened this issue Mar 23, 2025 · 1 comment

Comments

@ironhak
Copy link

ironhak commented Mar 23, 2025

Hello.

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:

    @property
    def pl(self):
        """Trade profit (positive) or loss (negative) in cash units."""
        price = self.__exit_price or self.__broker.last_price
        return self.__size * (price - self.__entry_price)

    @property
    def pl_pct(self):
        """Trade profit (positive) or loss (negative) in percent."""
        price = self.__exit_price or self.__broker.last_price
        return copysign(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 :)

@kernc
Copy link
Owner

kernc commented Mar 30, 2025

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? 😕

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants