Add more metrics to summarytable

This commit is contained in:
Matthias
2020-06-09 08:00:35 +02:00
parent 6922fbc3aa
commit cbcf3dbb43
2 changed files with 26 additions and 3 deletions

View File

@@ -417,5 +417,6 @@ class Backtesting:
if self.config.get('export', False):
store_backtest_result(self.config['exportfilename'], all_results)
# Show backtest results
stats = generate_backtest_stats(self.config, data, all_results)
stats = generate_backtest_stats(self.config, data, all_results,
min_date=min_date, max_date=max_date)
show_backtest_results(self.config, stats)