Make stake_amount + stake_currency mandatory for backtesting

This commit is contained in:
Matthias
2021-03-10 10:43:44 +01:00
parent 333ad02605
commit ef9977fc1e
3 changed files with 14 additions and 4 deletions

View File

@@ -378,6 +378,16 @@ SCHEMA_TRADE_REQUIRED = [
'dataformat_trades',
]
SCHEMA_BACKTEST_REQUIRED = [
'exchange',
'max_open_trades',
'stake_currency',
'stake_amount',
'dry_run_wallet',
'dataformat_ohlcv',
'dataformat_trades',
]
SCHEMA_MINIMAL_REQUIRED = [
'exchange',
'dry_run',