From 90e4eb59b21037ba1abce590aa1b7b804eec983c Mon Sep 17 00:00:00 2001 From: Matthias Date: Sun, 3 Dec 2023 15:27:33 +0100 Subject: [PATCH] Improve multi-strategy backtest docs --- docs/backtesting.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/backtesting.md b/docs/backtesting.md index 83a3fa2d8..ece3ce7fa 100644 --- a/docs/backtesting.md +++ b/docs/backtesting.md @@ -618,7 +618,7 @@ To compare multiple strategies, a list of Strategies can be provided to backtest This is limited to 1 timeframe value per run. However, data is only loaded once from disk so if you have multiple strategies you'd like to compare, this will give a nice runtime boost. -All listed Strategies need to be in the same directory. +All listed Strategies need to be in the same directory, unless also `--recursive-strategy-search` is specified, where sub-directories within the strategy directory are also considered. ``` bash freqtrade backtesting --timerange 20180401-20180410 --timeframe 5m --strategy-list Strategy001 Strategy002 --export trades