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

Can formulas for 'stats' be provided #1238

Open
Zirafnik opened this issue Mar 10, 2025 · 3 comments
Open

Can formulas for 'stats' be provided #1238

Zirafnik opened this issue Mar 10, 2025 · 3 comments
Labels
docs This needs documentation work.

Comments

@Zirafnik
Copy link

Enhancement description

I was wondering whether the formulas and algorithms used in calculation of stats could be documented. It would not only add transparency, but also aid in understanding what the assumptions are, and what you are actually calculating.

For example, I was confused why running the tests with different parameters on the same data, would result in different "Buy & Hold Return [%]" returns...? If I buy at the beginning of the period, and hold until the end, my differing indicator parameters should not affect this result for the same time period.

I presume the "Buy & Hold Return [%]" assumes buying when our algorithm makes the first purchase and then holding until the end of the period? Or perhaps the buy is executed when the lookback period of the most laggy indicator ends?

I see there is a disclaimer in the docs for bt.run(), that the trading simulation begins at different points in the time period, based on the provided indicator parameters, which seems appropriate for some values, but not logical for others (e.g. Buy & Hold)?

Code sample

Additional info, images

No response

@Zirafnik Zirafnik added the enhancement New feature or request label Mar 10, 2025
@kernc
Copy link
Owner

kernc commented Mar 10, 2025

See #327. Comments and improvements welcome.

@kernc
Copy link
Owner

kernc commented Mar 10, 2025

calculation of stats could be documented

As far as code goes, I'm leaning to most stats ideally consisting of self-documenting single lines, e.g.:

s.loc['Buy & Hold Return [%]'] = (c[-1] - c[first_trading_bar]) / c[first_trading_bar] * 100 # long-only return

But I'm not against adding a few words about each stat, particularly for the exceptions, somewhere in the existing API docs?

@kernc kernc removed the enhancement New feature or request label Mar 11, 2025
@Zirafnik
Copy link
Author

Zirafnik commented Mar 20, 2025

Usually I would agree with software being as self-documenting as possible, however, since this is a financial app I think being explicit with assumptions and explanations is important. After all, people are investing real money based on the results. Additionally, it is easier to understand clear documentation, than reading other people's code (no matter how clean it is).

This way you can also explain the assumptions and decision-making which lead to them. For instance in #327 you changed the 'Buy & Hold' to start after the warm-up period. To me that did not make sense, since I considered the warm-up time for indicators to be their opportunity cost, the time during which you cannot place trades due to lacking information.

This would make sense from a live deployment perspective, if you just turned the algorithm on you would have to wait for it to accumulate enough data before it can start trading, whereas with long-only 'Buy & Hold' you could immediately make an investment. However, this might be flawed thinking as we have access to historical data with which we can "back-calculate" the indicators when turning the algorithm on, so it can start making trades immediately. In this latter case, the way 'Buy & Hold' is currently calculated makes more sense.

All this, I pretty much had to figure out and piece together from multiple issues, docs, and your code snippets. Instead the above should be explicitly described somewhere in the docs. The only real downside is that you have to update the docs when something is changed. (But that should be done anyhow, so more people - other than just those present in the corresponding issue discussion - get eyes on and comment on any flaws in thinking or logic implementation.)

@kernc kernc added the docs This needs documentation work. label Mar 20, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
docs This needs documentation work.
Projects
None yet
Development

No branches or pull requests

2 participants