The Wayback Machine - https://web.archive.org/web/20220601233926/https://github.com/topics/backtesting-frameworks
Skip to content
#

backtesting-frameworks

Here are 15 public repositories matching this topic...

backtesting.py
zillionare
zillionare commented Apr 30, 2021

this is how Buy & Hold Return is calculated:

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

so it's calced use day one and the day last.

Expected Behavior

Buy & Hold Return is used for compare with strategy gain. Therefore, I guess they should started at same time, since the strategy get enough data to w

bug good first issue Hacktoberfest

Improve this page

Add a description, image, and links to the backtesting-frameworks topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the backtesting-frameworks topic, visit your repo's landing page and select "manage topics."

Learn more