diff --git a/bktest/export/quants.py b/bktest/export/quants.py index cccdb0a..f15c7f5 100644 --- a/bktest/export/quants.py +++ b/bktest/export/quants.py @@ -72,8 +72,9 @@ def finalize(self) -> None: self.rows, columns=["date", value_column_name] ).set_index("date") - - self.dataframe.to_csv('temp_qs.csv') + + # TODO: remove after debuging. + # self.dataframe.to_csv('temp_qs.csv') if not len(self.dataframe): print( "[warning] cannot create tearsheet: dataframe is empty", @@ -97,7 +98,7 @@ def finalize(self) -> None: format="%Y-%m-%d" ) # TODO: remove after debuging. - history_df.to_csv('history_df.csv') + # history_df.to_csv('history_df.csv') if self.benchmark_ticker: bench = quantstats.utils.download_returns(self.benchmark_ticker)