diff --git a/utils.py b/utils.py index e7bb006fd..c5d85a5ab 100644 --- a/utils.py +++ b/utils.py @@ -13,9 +13,9 @@ _cur_conf = None _conf_schema = { 'type': 'object', 'properties': { - 'max_open_trades': {'type': 'integer'}, - 'stake_currency': {'type': 'string'}, - 'stake_amount': {'type': 'number'}, + 'max_open_trades': {'type': 'integer', 'minimum': 1}, + 'stake_currency': {'type': 'string', 'enum': ['BTC', 'ETH', 'USDT']}, + 'stake_amount': {'type': 'number', 'minimum': 0.0005}, 'dry_run': {'type': 'boolean'}, 'minimal_roi': { 'type': 'object',