49 lines
2.4 KiB
Markdown
49 lines
2.4 KiB
Markdown
```
|
|
usage: freqtrade list-data [-h] [-v] [--no-color] [--logfile FILE] [-V]
|
|
[-c PATH] [-d PATH] [--userdir PATH]
|
|
[--exchange EXCHANGE]
|
|
[--data-format-ohlcv {json,jsongz,feather,parquet}]
|
|
[--data-format-trades {json,jsongz,feather,parquet}]
|
|
[--trades] [-p PAIRS [PAIRS ...]]
|
|
[--trading-mode {spot,margin,futures}]
|
|
[--show-timerange]
|
|
|
|
options:
|
|
-h, --help show this help message and exit
|
|
--exchange EXCHANGE Exchange name. Only valid if no config is provided.
|
|
--data-format-ohlcv {json,jsongz,feather,parquet}
|
|
Storage format for downloaded candle (OHLCV) data.
|
|
(default: `feather`).
|
|
--data-format-trades {json,jsongz,feather,parquet}
|
|
Storage format for downloaded trades data. (default:
|
|
`feather`).
|
|
--trades Work on trades data instead of OHLCV data.
|
|
-p PAIRS [PAIRS ...], --pairs PAIRS [PAIRS ...]
|
|
Limit command to these pairs. Pairs are space-
|
|
separated.
|
|
--trading-mode {spot,margin,futures}, --tradingmode {spot,margin,futures}
|
|
Select Trading mode
|
|
--show-timerange Show timerange available for available data. (May take
|
|
a while to calculate).
|
|
|
|
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 directory with historical backtesting data.
|
|
--userdir PATH, --user-data-dir PATH
|
|
Path to userdata directory.
|
|
|
|
```
|