LoslegenKostenlos loslegen

Plot return histograms of a backtest

Continue with the same strategy backtest result from the previous exercise. Now you would like to plot return histograms to further examine the characteristics of the return distribution.

The bt backtest result has been provided in bt_result and is ready to use. In addition, matplotlib.pyplot has been imported as plt.

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 daily return histogram
bt_result.____(____)
plt.show()
Code bearbeiten und ausführen