Skip to content
#

zipline

Here are 36 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

Improve this page

Add a description, image, and links to the zipline 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 zipline topic, visit your repo's landing page and select "manage topics."

Learn more