diff --git a/freqtrade/data/dataprovider.py b/freqtrade/data/dataprovider.py index 1f2bcd82d..d5e7937c5 100644 --- a/freqtrade/data/dataprovider.py +++ b/freqtrade/data/dataprovider.py @@ -405,7 +405,7 @@ class DataProvider: def runmode(self) -> RunMode: """ Get runmode of the bot - can be "live", "dry-run", "backtest", "edgecli", "hyperopt" or "other". + can be "live", "dry-run", "backtest", "hyperopt" or "other". """ return RunMode(self._config.get("runmode", RunMode.OTHER)) diff --git a/freqtrade/enums/runmode.py b/freqtrade/enums/runmode.py index 3389629f2..f3316629a 100644 --- a/freqtrade/enums/runmode.py +++ b/freqtrade/enums/runmode.py @@ -4,7 +4,7 @@ from enum import Enum class RunMode(str, Enum): """ Bot running mode (backtest, hyperopt, ...) - can be "live", "dry-run", "backtest", "edge", "hyperopt". + can be "live", "dry-run", "backtest", "hyperopt". """ LIVE = "live" diff --git a/freqtrade/exchange/common.py b/freqtrade/exchange/common.py index 617fe0d01..5e4f6bf07 100644 --- a/freqtrade/exchange/common.py +++ b/freqtrade/exchange/common.py @@ -107,7 +107,7 @@ EXCHANGE_HAS_OPTIONAL = [ def remove_exchange_credentials(exchange_config: ExchangeConfig, dry_run: bool) -> None: """ Removes exchange keys from the configuration and specifies dry-run - Used for backtesting / hyperopt / edge and utils. + Used for backtesting / hyperopt and utils. Modifies the input dict! """ if dry_run: