From 1bd043a91289295ee81f32a2df813c89e7189522 Mon Sep 17 00:00:00 2001 From: Matthias Date: Fri, 26 Dec 2025 13:37:52 +0100 Subject: [PATCH] chore: improve cli docstring to clarify "--eps" --- freqtrade/commands/cli_options.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/freqtrade/commands/cli_options.py b/freqtrade/commands/cli_options.py index ebc221523..9fc5f2e11 100755 --- a/freqtrade/commands/cli_options.py +++ b/freqtrade/commands/cli_options.py @@ -180,7 +180,11 @@ AVAILABLE_CLI_OPTIONS = { "position_stacking": Arg( "--eps", "--enable-position-stacking", - help="Allow buying the same pair multiple times (position stacking).", + help=( + "Allow buying the same pair multiple times (position stacking). " + "Only applicable to backtesting and hyperopt. " + "Results archived by this cannot be reproduced in dry/live trading." + ), action="store_true", default=False, ),