diff --git a/freqtrade/data/btanalysis.py b/freqtrade/data/btanalysis.py index c8654cfda..db7ef66fc 100644 --- a/freqtrade/data/btanalysis.py +++ b/freqtrade/data/btanalysis.py @@ -193,14 +193,7 @@ def find_existing_backtest_stats(dirname: Union[Path, str], run_ids: Dict[str, s continue if min_backtest_date is not None: - try: - backtest_date = strategy_metadata['backtest_start_time'] - except KeyError: - # TODO: this can be removed starting from feb 2022 - # The metadata-file without start_time was only available in develop - # and was never included in an official release. - # Older metadata format without backtest time, too old to consider. - return results + backtest_date = strategy_metadata['backtest_start_time'] backtest_date = datetime.fromtimestamp(backtest_date, tz=timezone.utc) if backtest_date < min_backtest_date: # Do not use a cached result for this strategy as first result is too old. diff --git a/freqtrade/rpc/telegram.py b/freqtrade/rpc/telegram.py index ce43dfb4f..c702fb6b8 100644 --- a/freqtrade/rpc/telegram.py +++ b/freqtrade/rpc/telegram.py @@ -1414,7 +1414,6 @@ class Telegram(RPCHandler): "*/start:* `Starts the trader`\n" "*/stop:* Stops the trader\n" "*/stopbuy:* `Stops buying, but handles open trades gracefully` \n" - # TODO: forceenter forceshort forcelong missing "*/forceexit |all:* `Instantly exits the given trade or all trades, " "regardless of profit`\n" "*/fe |all:* `Alias to /forceexit`"