Merge branch 'develop' into relative_stake

This commit is contained in:
Matthias
2020-01-05 12:55:55 +01:00
12 changed files with 89 additions and 45 deletions

View File

@@ -275,16 +275,22 @@ CONF_SCHEMA = {
'required': ['process_throttle_secs', 'allowed_risk']
}
},
'required': [
'exchange',
'max_open_trades',
'stake_currency',
'stake_amount',
'dry_run',
'dry_run_wallet',
'bid_strategy',
'unfilledtimeout',
'stoploss',
'minimal_roi',
]
}
SCHEMA_TRADE_REQUIRED = [
'exchange',
'max_open_trades',
'stake_currency',
'stake_amount',
'dry_run',
'dry_run_wallet',
'bid_strategy',
'unfilledtimeout',
'stoploss',
'minimal_roi',
]
SCHEMA_MINIMAL_REQUIRED = [
'exchange',
'dry_run',
]