|
|
|
|
@ -43,20 +43,6 @@ The file will be named inline with your class name, and will not overwrite exist
|
|
|
|
|
|
|
|
|
|
Results will be located in `user_data/strategies/<strategyclassname>.py`.
|
|
|
|
|
|
|
|
|
|
### Sample usage of new-strategy
|
|
|
|
|
|
|
|
|
|
```bash
|
|
|
|
|
freqtrade new-strategy --strategy AwesomeStrategy
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
With custom user directory
|
|
|
|
|
|
|
|
|
|
```bash
|
|
|
|
|
freqtrade new-strategy --userdir ~/.freqtrade/ --strategy AwesomeStrategy
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
### new-strategy complete options
|
|
|
|
|
|
|
|
|
|
``` output
|
|
|
|
|
usage: freqtrade new-strategy [-h] [--userdir PATH] [-s NAME]
|
|
|
|
|
[--template {full,minimal}]
|
|
|
|
|
@ -75,26 +61,24 @@ optional arguments:
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
## Create new hyperopt
|
|
|
|
|
|
|
|
|
|
Creates a new hyperopt from a template similar to SampleHyperopt.
|
|
|
|
|
The file will be named inline with your class name, and will not overwrite existing files.
|
|
|
|
|
|
|
|
|
|
Results will be located in `user_data/hyperopts/<classname>.py`.
|
|
|
|
|
|
|
|
|
|
### Sample usage of new-hyperopt
|
|
|
|
|
### Sample usage of new-strategy
|
|
|
|
|
|
|
|
|
|
```bash
|
|
|
|
|
freqtrade new-hyperopt --hyperopt AwesomeHyperopt
|
|
|
|
|
freqtrade new-strategy --strategy AwesomeStrategy
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
With custom user directory
|
|
|
|
|
|
|
|
|
|
```bash
|
|
|
|
|
freqtrade new-hyperopt --userdir ~/.freqtrade/ --hyperopt AwesomeHyperopt
|
|
|
|
|
freqtrade new-strategy --userdir ~/.freqtrade/ --strategy AwesomeStrategy
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
### new-hyperopt complete options
|
|
|
|
|
## Create new hyperopt
|
|
|
|
|
|
|
|
|
|
Creates a new hyperopt from a template similar to SampleHyperopt.
|
|
|
|
|
The file will be named inline with your class name, and will not overwrite existing files.
|
|
|
|
|
|
|
|
|
|
Results will be located in `user_data/hyperopts/<classname>.py`.
|
|
|
|
|
|
|
|
|
|
``` output
|
|
|
|
|
usage: freqtrade new-hyperopt [-h] [--userdir PATH] [--hyperopt NAME]
|
|
|
|
|
@ -112,6 +96,18 @@ optional arguments:
|
|
|
|
|
`full`.
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
### Sample usage of new-hyperopt
|
|
|
|
|
|
|
|
|
|
```bash
|
|
|
|
|
freqtrade new-hyperopt --hyperopt AwesomeHyperopt
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
With custom user directory
|
|
|
|
|
|
|
|
|
|
```bash
|
|
|
|
|
freqtrade new-hyperopt --userdir ~/.freqtrade/ --hyperopt AwesomeHyperopt
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
## List Exchanges
|
|
|
|
|
|
|
|
|
|
Use the `list-exchanges` subcommand to see the exchanges available for the bot.
|
|
|
|
|
@ -242,14 +238,6 @@ Use the `test-pairlist` subcommand to test the configuration of [dynamic pairlis
|
|
|
|
|
Requires a configuration with specified `pairlists` attribute.
|
|
|
|
|
Can be used to generate static pairlists to be used during backtesting / hyperopt.
|
|
|
|
|
|
|
|
|
|
### Examples
|
|
|
|
|
|
|
|
|
|
Show whitelist when using a [dynamic pairlist](configuration.md#pairlists).
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
freqtrade test-pairlist --config config.json --quote USDT BTC
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
usage: freqtrade test-pairlist [-h] [-c PATH]
|
|
|
|
|
[--quote QUOTE_CURRENCY [QUOTE_CURRENCY ...]]
|
|
|
|
|
@ -266,3 +254,11 @@ optional arguments:
|
|
|
|
|
-1, --one-column Print output in one column.
|
|
|
|
|
--print-json Print list of pairs or market symbols in JSON format.
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
### Examples
|
|
|
|
|
|
|
|
|
|
Show whitelist when using a [dynamic pairlist](configuration.md#pairlists).
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
freqtrade test-pairlist --config config.json --quote USDT BTC
|
|
|
|
|
```
|
|
|
|
|
|