Update full config with correct protection keys

This commit is contained in:
Matthias 2020-12-07 16:02:55 +01:00
parent de2cc9708d
commit b5289d5f0e
1 changed files with 7 additions and 7 deletions

View File

@ -78,26 +78,26 @@
"protections": [ "protections": [
{ {
"method": "StoplossGuard", "method": "StoplossGuard",
"lookback_period": 60, "lookback_period_candles": 60,
"trade_limit": 4, "trade_limit": 4,
"stopduration": 60 "stop_duration_candles": 60
}, },
{ {
"method": "CooldownPeriod", "method": "CooldownPeriod",
"stopduration": 20 "stop_duration_candles": 20
}, },
{ {
"method": "MaxDrawdown", "method": "MaxDrawdown",
"lookback_period": 2000, "lookback_period_candles": 200,
"trade_limit": 20, "trade_limit": 20,
"stop_duration": 10, "stop_duration_candles": 10,
"max_allowed_drawdown": 0.2 "max_allowed_drawdown": 0.2
}, },
{ {
"method": "LowProfitPairs", "method": "LowProfitPairs",
"lookback_period": 360, "lookback_period_candles": 360,
"trade_limit": 1, "trade_limit": 1,
"stop_duration": 2, "stop_duration_candles": 2,
"required_profit": 0.02 "required_profit": 0.02
} }
], ],