Add doc-page to index

This commit is contained in:
Matthias
2022-04-22 06:38:51 +02:00
parent f92997d378
commit 7f60364f63
3 changed files with 11 additions and 10 deletions

View File

@@ -1077,8 +1077,8 @@ class Backtesting:
})
self.all_results[self.strategy.get_strategy_name()] = results
if self.backtest_signal_candle_export_enable and \
self.dataprovider.runmode == RunMode.BACKTEST:
if (self.backtest_signal_candle_export_enable and
self.dataprovider.runmode == RunMode.BACKTEST):
self._generate_trade_signal_candles(preprocessed_tmp, results)
return min_date, max_date
@@ -1163,8 +1163,8 @@ class Backtesting:
if self.config.get('export', 'none') == 'trades':
store_backtest_stats(self.config['exportfilename'], self.results)
if self.backtest_signal_candle_export_enable and \
self.dataprovider.runmode == RunMode.BACKTEST:
if (self.backtest_signal_candle_export_enable and
self.dataprovider.runmode == RunMode.BACKTEST):
store_backtest_signal_candles(self.config['exportfilename'], self.processed_dfs)
# Results may be mixed up now. Sort them so they follow --strategy-list order.