Merge pull request #12731 from Cosica/fix_typo

Fix a typo in doc
This commit is contained in:
Matthias
2026-01-20 19:32:28 +01:00
committed by GitHub

View File

@@ -41,7 +41,7 @@ ranging from the simplest (0) to the most detailed per pair, per buy and per sel
* 1: profit summaries grouped by enter_tag * 1: profit summaries grouped by enter_tag
* 2: profit summaries grouped by enter_tag and exit_tag * 2: profit summaries grouped by enter_tag and exit_tag
* 3: profit summaries grouped by pair and enter_tag * 3: profit summaries grouped by pair and enter_tag
* 4: profit summaries grouped by pair, enter_ and exit_tag (this can get quite large) * 4: profit summaries grouped by pair, enter_tag and exit_tag (this can get quite large)
* 5: profit summaries grouped by exit_tag * 5: profit summaries grouped by exit_tag
More options are available by running with the `-h` option. More options are available by running with the `-h` option.
@@ -52,11 +52,10 @@ By default, `backtesting-analysis` processes the most recent backtest results in
If you want to analyze results from an earlier backtest, use the `--backtest-filename` option to specify the desired file. This lets you revisit and re-analyze historical backtest outputs at any time by providing the filename of the relevant backtest result: If you want to analyze results from an earlier backtest, use the `--backtest-filename` option to specify the desired file. This lets you revisit and re-analyze historical backtest outputs at any time by providing the filename of the relevant backtest result:
``` bash ``` bash
freqtrade backtesting-analysis -c <config.json> --timeframe <tf> --strategy <strategy_name> --timerange <timerange> --export signals --backtest-filename backtest-result-2025-03-05_20-38-34.zip freqtrade backtesting -c <config.json> --strategy <strategy_name> --timerange <timerange> --export signals --backtest-filename backtest-result-2025-03-05_20-38-34.zip
``` ```
You should see some output similar to below in the logs with the name of the timestamped You should see some output similar to below in the logs with the name of the timestamped filename that was exported:
filename that was exported:
``` ```
2022-06-14 16:28:32,698 - freqtrade.misc - INFO - dumping json to "mystrat_backtest-2022-06-14_16-28-32.json" 2022-06-14 16:28:32,698 - freqtrade.misc - INFO - dumping json to "mystrat_backtest-2022-06-14_16-28-32.json"
@@ -64,14 +63,14 @@ filename that was exported:
You can then use that filename in `backtesting-analysis`: You can then use that filename in `backtesting-analysis`:
``` ``` bash
freqtrade backtesting-analysis -c <config.json> --backtest-filename=mystrat_backtest-2022-06-14_16-28-32.json freqtrade backtesting-analysis -c <config.json> --backtest-filename=backtest-result-2025-03-05_20-38-34.zip
``` ```
To use a result from a different results directory, you can use `--backtest-directory` to specify the directory To use a result from a different results directory, you can use `--backtest-directory` to specify the directory
``` bash ``` bash
freqtrade backtesting-analysis -c <config.json> --backtest-directory custom_results/ --backtest-filename mystrat_backtest-2022-06-14_16-28-32.json freqtrade backtesting-analysis -c <config.json> --backtest-directory custom_results/ --backtest-filename backtest-result-2025-03-05_20-38-34.zip
``` ```
### Tuning the buy tags and sell tags to display ### Tuning the buy tags and sell tags to display
@@ -111,17 +110,17 @@ output.
There are a range of candle and trade-related fields that are included in the analysis so are There are a range of candle and trade-related fields that are included in the analysis so are
automatically accessible by including them on the indicator-list, and these include: automatically accessible by including them on the indicator-list, and these include:
- **open_date :** trade open datetime * **open_date :** trade open datetime
- **close_date :** trade close datetime * **close_date :** trade close datetime
- **min_rate :** minimum price seen throughout the position * **min_rate :** minimum price seen throughout the position
- **max_rate :** maximum price seen throughout the position * **max_rate :** maximum price seen throughout the position
- **open :** signal candle open price * **open :** signal candle open price
- **close :** signal candle close price * **close :** signal candle close price
- **high :** signal candle high price * **high :** signal candle high price
- **low :** signal candle low price * **low :** signal candle low price
- **volume :** signal candle volume * **volume :** signal candle volume
- **profit_ratio :** trade profit ratio * **profit_ratio :** trade profit ratio
- **profit_abs :** absolute profit return of the trade * **profit_abs :** absolute profit return of the trade
#### Sample Output for Indicator Values #### Sample Output for Indicator Values