some minor fixes from feedback
This commit is contained in:
parent
a6bb7595e8
commit
a374df7622
@ -22,7 +22,7 @@ The bot includes a default strategy file.
|
|||||||
Also, several other strategies are available in the [strategy repository](https://github.com/freqtrade/freqtrade-strategies).
|
Also, several other strategies are available in the [strategy repository](https://github.com/freqtrade/freqtrade-strategies).
|
||||||
|
|
||||||
You will however most likely have your own idea for a strategy.
|
You will however most likely have your own idea for a strategy.
|
||||||
This Document intends to help you develop one for yourself.
|
This document intends to help you develop one for yourself.
|
||||||
|
|
||||||
To get started, use `freqtrade new-strategy --strategy AwesomeStrategy`.
|
To get started, use `freqtrade new-strategy --strategy AwesomeStrategy`.
|
||||||
This will create a new strategy file from a template, which will be located under `user_data/strategies/AwesomeStrategy.py`.
|
This will create a new strategy file from a template, which will be located under `user_data/strategies/AwesomeStrategy.py`.
|
||||||
|
@ -70,7 +70,9 @@ optional arguments:
|
|||||||
bot.
|
bot.
|
||||||
--template {full,minimal}
|
--template {full,minimal}
|
||||||
Use a template which is either `minimal` or `full`
|
Use a template which is either `minimal` or `full`
|
||||||
(containing multiple sample indicators).
|
(containing multiple sample indicators). Default:
|
||||||
|
`full`.
|
||||||
|
|
||||||
```
|
```
|
||||||
|
|
||||||
## Create new hyperopt
|
## Create new hyperopt
|
||||||
@ -106,7 +108,8 @@ optional arguments:
|
|||||||
bot.
|
bot.
|
||||||
--template {full,minimal}
|
--template {full,minimal}
|
||||||
Use a template which is either `minimal` or `full`
|
Use a template which is either `minimal` or `full`
|
||||||
(containing multiple sample indicators).
|
(containing multiple sample indicators). Default:
|
||||||
|
`full`.
|
||||||
```
|
```
|
||||||
|
|
||||||
## List Exchanges
|
## List Exchanges
|
||||||
|
@ -343,7 +343,7 @@ AVAILABLE_CLI_OPTIONS = {
|
|||||||
"template": Arg(
|
"template": Arg(
|
||||||
'--template',
|
'--template',
|
||||||
help='Use a template which is either `minimal` or '
|
help='Use a template which is either `minimal` or '
|
||||||
'`full` (containing multiple sample indicators).',
|
'`full` (containing multiple sample indicators). Default: `%(default)s`.',
|
||||||
choices=['full', 'minimal'],
|
choices=['full', 'minimal'],
|
||||||
default='full',
|
default='full',
|
||||||
),
|
),
|
||||||
|
Loading…
Reference in New Issue
Block a user