diff --git a/freqtrade/constants.py b/freqtrade/constants.py index 1b06eb726..4772952fc 100644 --- a/freqtrade/constants.py +++ b/freqtrade/constants.py @@ -166,8 +166,10 @@ CONF_SCHEMA = { "minimum": 1024, "maximum": 65535 }, + 'username': {'type': 'string'}, + 'password': {'type': 'string'}, }, - 'required': ['enabled', 'listen_ip_address', 'listen_port'] + 'required': ['enabled', 'listen_ip_address', 'listen_port', 'username', 'password'] }, 'db_url': {'type': 'string'}, 'initial_state': {'type': 'string', 'enum': ['running', 'stopped']},