Fail if both ticker_interval and timeframe are present in a

configuration

Otherwise the wrong might be used, as it's unclear which one the intend
of the user is
This commit is contained in:
Matthias
2020-06-16 16:02:38 +02:00
parent 761407f74d
commit 3517c86fa2
2 changed files with 20 additions and 5 deletions

View File

@@ -72,4 +72,9 @@ def process_temporary_deprecated_settings(config: Dict[str, Any]) -> None:
"DEPRECATED: "
"Please use 'timeframe' instead of 'ticker_interval."
)
if 'timeframe' in config:
raise OperationalException(
"Both 'timeframe' and 'ticker_interval' detected."
"Please remove 'ticker_interval' from your configuration to continue operating."
)
config['timeframe'] = config['ticker_interval']