mirror of
https://github.com/freqtrade/freqtrade.git
synced 2024-11-14 20:23:57 +00:00
feat: Update config_schema with support for exit_fill
This commit is contained in:
parent
c58b1f0fd2
commit
c9718de24c
|
@ -682,12 +682,18 @@
|
|||
},
|
||||
"exit_fill": {
|
||||
"description": "Telegram setting for exit fill signals.",
|
||||
"type": [
|
||||
"string",
|
||||
"object"
|
||||
],
|
||||
"additionalProperties": {
|
||||
"type": "string",
|
||||
"enum": [
|
||||
"on",
|
||||
"off",
|
||||
"silent"
|
||||
],
|
||||
]
|
||||
},
|
||||
"default": "on"
|
||||
},
|
||||
"exit_cancel": {
|
||||
|
|
|
@ -517,8 +517,11 @@ CONF_SCHEMA = {
|
|||
},
|
||||
"exit_fill": {
|
||||
"description": "Telegram setting for exit fill signals.",
|
||||
"type": ["string", "object"],
|
||||
"additionalProperties": {
|
||||
"type": "string",
|
||||
"enum": TELEGRAM_SETTING_OPTIONS,
|
||||
},
|
||||
"default": "on",
|
||||
},
|
||||
"exit_cancel": {
|
||||
|
|
Loading…
Reference in New Issue
Block a user