mirror of
https://github.com/freqtrade/freqtrade.git
synced 2025-12-14 03:41:14 +00:00
chore: remove edge from config schema
This commit is contained in:
@@ -538,10 +538,6 @@
|
|||||||
"description": "Exchange configuration.",
|
"description": "Exchange configuration.",
|
||||||
"$ref": "#/definitions/exchange"
|
"$ref": "#/definitions/exchange"
|
||||||
},
|
},
|
||||||
"edge": {
|
|
||||||
"description": "Edge configuration.",
|
|
||||||
"$ref": "#/definitions/edge"
|
|
||||||
},
|
|
||||||
"log_config": {
|
"log_config": {
|
||||||
"description": "Logging configuration.",
|
"description": "Logging configuration.",
|
||||||
"$ref": "#/definitions/logging"
|
"$ref": "#/definitions/logging"
|
||||||
@@ -1259,52 +1255,6 @@
|
|||||||
"name"
|
"name"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"edge": {
|
|
||||||
"type": "object",
|
|
||||||
"properties": {
|
|
||||||
"enabled": {
|
|
||||||
"type": "boolean"
|
|
||||||
},
|
|
||||||
"process_throttle_secs": {
|
|
||||||
"type": "integer",
|
|
||||||
"minimum": 600
|
|
||||||
},
|
|
||||||
"calculate_since_number_of_days": {
|
|
||||||
"type": "integer"
|
|
||||||
},
|
|
||||||
"allowed_risk": {
|
|
||||||
"type": "number"
|
|
||||||
},
|
|
||||||
"stoploss_range_min": {
|
|
||||||
"type": "number"
|
|
||||||
},
|
|
||||||
"stoploss_range_max": {
|
|
||||||
"type": "number"
|
|
||||||
},
|
|
||||||
"stoploss_range_step": {
|
|
||||||
"type": "number"
|
|
||||||
},
|
|
||||||
"minimum_winrate": {
|
|
||||||
"type": "number"
|
|
||||||
},
|
|
||||||
"minimum_expectancy": {
|
|
||||||
"type": "number"
|
|
||||||
},
|
|
||||||
"min_trade_number": {
|
|
||||||
"type": "number"
|
|
||||||
},
|
|
||||||
"max_trade_duration_minute": {
|
|
||||||
"type": "integer"
|
|
||||||
},
|
|
||||||
"remove_pumps": {
|
|
||||||
"type": "boolean"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"required": [
|
|
||||||
"process_throttle_secs",
|
|
||||||
"allowed_risk"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"logging": {
|
"logging": {
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"properties": {
|
"properties": {
|
||||||
|
|||||||
@@ -423,10 +423,6 @@ CONF_SCHEMA = {
|
|||||||
"description": "Exchange configuration.",
|
"description": "Exchange configuration.",
|
||||||
"$ref": "#/definitions/exchange",
|
"$ref": "#/definitions/exchange",
|
||||||
},
|
},
|
||||||
"edge": {
|
|
||||||
"description": "Edge configuration.",
|
|
||||||
"$ref": "#/definitions/edge",
|
|
||||||
},
|
|
||||||
"log_config": {
|
"log_config": {
|
||||||
"description": "Logging configuration.",
|
"description": "Logging configuration.",
|
||||||
"$ref": "#/definitions/logging",
|
"$ref": "#/definitions/logging",
|
||||||
@@ -929,24 +925,6 @@ CONF_SCHEMA = {
|
|||||||
},
|
},
|
||||||
"required": ["name"],
|
"required": ["name"],
|
||||||
},
|
},
|
||||||
"edge": {
|
|
||||||
"type": "object",
|
|
||||||
"properties": {
|
|
||||||
"enabled": {"type": "boolean"},
|
|
||||||
"process_throttle_secs": {"type": "integer", "minimum": 600},
|
|
||||||
"calculate_since_number_of_days": {"type": "integer"},
|
|
||||||
"allowed_risk": {"type": "number"},
|
|
||||||
"stoploss_range_min": {"type": "number"},
|
|
||||||
"stoploss_range_max": {"type": "number"},
|
|
||||||
"stoploss_range_step": {"type": "number"},
|
|
||||||
"minimum_winrate": {"type": "number"},
|
|
||||||
"minimum_expectancy": {"type": "number"},
|
|
||||||
"min_trade_number": {"type": "number"},
|
|
||||||
"max_trade_duration_minute": {"type": "integer"},
|
|
||||||
"remove_pumps": {"type": "boolean"},
|
|
||||||
},
|
|
||||||
"required": ["process_throttle_secs", "allowed_risk"],
|
|
||||||
},
|
|
||||||
"logging": {
|
"logging": {
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"properties": {
|
"properties": {
|
||||||
|
|||||||
Reference in New Issue
Block a user