From e8553cfac0a54525371b19a78cde9dd25f28fffd Mon Sep 17 00:00:00 2001 From: Matthias Date: Sat, 2 Nov 2024 16:50:20 +0100 Subject: [PATCH] docs: Update documentation about dmmp --- docs/strategy_analysis_example.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/strategy_analysis_example.md b/docs/strategy_analysis_example.md index 9f37b2975..8bb21ebd0 100644 --- a/docs/strategy_analysis_example.md +++ b/docs/strategy_analysis_example.md @@ -215,11 +215,11 @@ trades.groupby("pair")["exit_reason"].value_counts() ``` ## Analyze the loaded trades for trade parallelism -This can be useful to find the best `max_open_trades` parameter, when used with backtesting in conjunction with `--disable-max-market-positions`. + +This can be useful to find the best `max_open_trades` parameter, when used with backtesting in conjunction with a very high max_open_trades value. `analyze_trade_parallelism()` returns a timeseries dataframe with an "open_trades" column, specifying the number of open trades for each candle. - ```python from freqtrade.data.btanalysis import analyze_trade_parallelism