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