diff --git a/docs/strategy-customization.md b/docs/strategy-customization.md index 352389d5e..c43d8e3f6 100644 --- a/docs/strategy-customization.md +++ b/docs/strategy-customization.md @@ -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). 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`. This will create a new strategy file from a template, which will be located under `user_data/strategies/AwesomeStrategy.py`. diff --git a/docs/utils.md b/docs/utils.md index b07008b91..ca4b645a5 100644 --- a/docs/utils.md +++ b/docs/utils.md @@ -70,7 +70,9 @@ optional arguments: bot. --template {full,minimal} Use a template which is either `minimal` or `full` - (containing multiple sample indicators). + (containing multiple sample indicators). Default: + `full`. + ``` ## Create new hyperopt @@ -106,7 +108,8 @@ optional arguments: bot. --template {full,minimal} Use a template which is either `minimal` or `full` - (containing multiple sample indicators). + (containing multiple sample indicators). Default: + `full`. ``` ## List Exchanges diff --git a/freqtrade/configuration/cli_options.py b/freqtrade/configuration/cli_options.py index be9397975..2061534e7 100644 --- a/freqtrade/configuration/cli_options.py +++ b/freqtrade/configuration/cli_options.py @@ -343,7 +343,7 @@ AVAILABLE_CLI_OPTIONS = { "template": Arg( '--template', 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'], default='full', ),