Compare return results of multiple strategies
With the same strategy using a simple moving average indicator, you also conducted a strategy optimization by varying the lookback periods of the moving average indicator from 30 to 50 days. You backtested both strategies using the Google stock historical price data from 2017 to 2020. Now you are about to compare the backtest results.
The bt
backtest results of both strategies have been provided in bt_results
and are ready to use.
Este ejercicio forma parte del curso
Financial Trading in Python
Ejercicio interactivo práctico
Prueba este ejercicio y completa el código de muestra.
# Plot the backtest result
____(title='Backtest result')
plt.show()
# Get the lookback returns
lookback_returns = ____
print(lookback_returns)