mirror of
https://github.com/freqtrade/freqtrade.git
synced 2026-03-01 15:52:43 +00:00
chore: Update help to clarify backtest-filename deprecation
closes #12846
This commit is contained in:
@@ -71,11 +71,11 @@ options:
|
|||||||
--export {none,trades,signals}
|
--export {none,trades,signals}
|
||||||
Export backtest results (default: trades).
|
Export backtest results (default: trades).
|
||||||
--backtest-filename, --export-filename PATH
|
--backtest-filename, --export-filename PATH
|
||||||
Use this filename for backtest results.Example:
|
DEPRECATED: This option is deprecated for backtesting
|
||||||
`--backtest-
|
and will be removed in a future release. Using a
|
||||||
filename=backtest_results_2020-09-27_16-20-48.json`.
|
custom filename for backtest results is no longer
|
||||||
Assumes either `user_data/backtest_results/` or
|
supported. Use `--backtest-directory` to specify the
|
||||||
`--export-directory` as base directory.
|
directory.
|
||||||
--backtest-directory, --export-directory PATH
|
--backtest-directory, --export-directory PATH
|
||||||
Directory to use for backtest results. Example:
|
Directory to use for backtest results. Example:
|
||||||
`--export-directory=user_data/backtest_results/`.
|
`--export-directory=user_data/backtest_results/`.
|
||||||
|
|||||||
@@ -240,6 +240,14 @@ AVAILABLE_CLI_OPTIONS = {
|
|||||||
"exportfilename": Arg(
|
"exportfilename": Arg(
|
||||||
"--backtest-filename",
|
"--backtest-filename",
|
||||||
"--export-filename",
|
"--export-filename",
|
||||||
|
fthelp={
|
||||||
|
"freqtrade backtesting": (
|
||||||
|
"DEPRECATED: This option is deprecated for backtesting and will be removed "
|
||||||
|
"in a future release. "
|
||||||
|
"Using a custom filename for backtest results is no longer supported. "
|
||||||
|
"Use `--backtest-directory` to specify the directory."
|
||||||
|
),
|
||||||
|
},
|
||||||
help="Use this filename for backtest results."
|
help="Use this filename for backtest results."
|
||||||
"Example: `--backtest-filename=backtest_results_2020-09-27_16-20-48.json`. "
|
"Example: `--backtest-filename=backtest_results_2020-09-27_16-20-48.json`. "
|
||||||
"Assumes either `user_data/backtest_results/` or `--export-directory` as base directory.",
|
"Assumes either `user_data/backtest_results/` or `--export-directory` as base directory.",
|
||||||
|
|||||||
Reference in New Issue
Block a user