some minor fixes from feedback

This commit is contained in:
Matthias 2019-11-24 09:55:34 +01:00
parent a6bb7595e8
commit a374df7622
3 changed files with 7 additions and 4 deletions

View File

@ -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`.

View File

@ -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

View File

@ -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',
), ),