mirror of
https://github.com/freqtrade/freqtrade.git
synced 2025-11-29 16:43:06 +00:00
73 lines
3.6 KiB
Markdown
73 lines
3.6 KiB
Markdown
```
|
|
usage: freqtrade plot-profit [-h] [-v] [--no-color] [--logfile FILE] [-V]
|
|
[-c PATH] [-d PATH] [--userdir PATH] [-s NAME]
|
|
[--strategy-path PATH]
|
|
[--recursive-strategy-search]
|
|
[--freqaimodel NAME] [--freqaimodel-path PATH]
|
|
[-p PAIRS [PAIRS ...]] [--timerange TIMERANGE]
|
|
[--export {none,trades,signals}]
|
|
[--backtest-filename PATH] [--db-url PATH]
|
|
[--trade-source {DB,file}] [-i TIMEFRAME]
|
|
[--auto-open]
|
|
|
|
options:
|
|
-h, --help show this help message and exit
|
|
-p PAIRS [PAIRS ...], --pairs PAIRS [PAIRS ...]
|
|
Limit command to these pairs. Pairs are space-
|
|
separated.
|
|
--timerange TIMERANGE
|
|
Specify what timerange of data to use.
|
|
--export {none,trades,signals}
|
|
Export backtest results (default: trades).
|
|
--backtest-filename PATH, --export-filename PATH
|
|
Use this filename for backtest results.Example:
|
|
`--backtest-
|
|
filename=backtest_results_2020-09-27_16-20-48.json`.
|
|
Assumes either `user_data/backtest_results/` or
|
|
`--export-directory` as base directory.
|
|
--db-url PATH Override trades database URL, this is useful in custom
|
|
deployments (default: `sqlite:///tradesv3.sqlite` for
|
|
Live Run mode, `sqlite:///tradesv3.dryrun.sqlite` for
|
|
Dry Run).
|
|
--trade-source {DB,file}
|
|
Specify the source for trades (Can be DB or file
|
|
(backtest file)) Default: file
|
|
-i TIMEFRAME, --timeframe TIMEFRAME
|
|
Specify timeframe (`1m`, `5m`, `30m`, `1h`, `1d`).
|
|
--auto-open Automatically open generated plot.
|
|
|
|
Common arguments:
|
|
-v, --verbose Verbose mode (-vv for more, -vvv to get all messages).
|
|
--no-color Disable colorization of hyperopt results. May be
|
|
useful if you are redirecting output to a file.
|
|
--logfile FILE, --log-file FILE
|
|
Log to the file specified. Special values are:
|
|
'syslog', 'journald'. See the documentation for more
|
|
details.
|
|
-V, --version show program's version number and exit
|
|
-c PATH, --config PATH
|
|
Specify configuration file (default:
|
|
`userdir/config.json` or `config.json` whichever
|
|
exists). Multiple --config options may be used. Can be
|
|
set to `-` to read config from stdin.
|
|
-d PATH, --datadir PATH, --data-dir PATH
|
|
Path to the base directory of the exchange with
|
|
historical backtesting data. To see futures data, use
|
|
trading-mode additionally.
|
|
--userdir PATH, --user-data-dir PATH
|
|
Path to userdata directory.
|
|
|
|
Strategy arguments:
|
|
-s NAME, --strategy NAME
|
|
Specify strategy class name which will be used by the
|
|
bot.
|
|
--strategy-path PATH Specify additional strategy lookup path.
|
|
--recursive-strategy-search
|
|
Recursively search for a strategy in the strategies
|
|
folder.
|
|
--freqaimodel NAME Specify a custom freqaimodels.
|
|
--freqaimodel-path PATH
|
|
Specify additional lookup path for freqaimodels.
|
|
|
|
```
|