LoslegenKostenlos loslegen

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.

Diese Übung ist Teil des Kurses

Financial Trading in Python

Kurs anzeigen

Interaktive Übung

Vervollständige den Beispielcode, um diese Übung erfolgreich abzuschließen.

# Plot the backtest result
____(title='Backtest result')
plt.show()

# Get the lookback returns
lookback_returns = ____
print(lookback_returns)
Code bearbeiten und ausführen