-
For a definition like this -
If I understand this right, I'm seeking to get a simpler form of returns, where if I invest say $100 and then make a profit of $10 on one trade, I'd like to keep aside that profit and just continue to have $100 in my portfolio rather than $110. So basically, calculate each trade's profit or loss on a fixed capital. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 6 replies
-
After some exploration and reading, I've found what I needed to be in Using this cumulative approach focuses just on the day to day differences when you're holding an asset (i.e between a buy and a sell). If I'm not wrong, Just putting it out here for anyone else! |
Beta Was this translation helpful? Give feedback.
-
@Sanjan611 why not using |
Beta Was this translation helpful? Give feedback.
@Sanjan611 why not using
pf.returns()
? (it's the same asvalue.pct_change
- daily change in equity), whilecumulative_returns
is compounding. You should never dodaily_returns().cumsum()
. There is also such thing asactive_returns
that do not take cash into consideration, only the returns from your current position.