diff --git a/zipline/algorithm.py b/zipline/algorithm.py index 42205749..fe4778e7 100644 --- a/zipline/algorithm.py +++ b/zipline/algorithm.py @@ -331,7 +331,7 @@ class TradingAlgorithm(object): ) daily_perfs.append(perf['daily_perf']) else: - cum_perfs.append(perf) + self.risk_report = perf daily_dts = [np.datetime64(perf['period_close'], utc=True) for perf in daily_perfs]