2022-12-27 19:14:39 +00:00
|
|
|
import logging
|
|
|
|
from typing import Any, Dict
|
|
|
|
|
|
|
|
from freqtrade.configuration import setup_utils_configuration
|
|
|
|
from freqtrade.enums import RunMode
|
|
|
|
from freqtrade.resolvers import StrategyResolver
|
|
|
|
|
|
|
|
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
|
|
|
|
def start_strategy_update(args: Dict[str, Any]) -> None:
|
|
|
|
"""
|
|
|
|
Start the strategy updating script
|
|
|
|
:param args: Cli args from Arguments()
|
|
|
|
:return: None
|
|
|
|
"""
|
|
|
|
|
|
|
|
# Import here to avoid loading backtesting module when it's not used
|
2022-12-29 21:17:52 +00:00
|
|
|
from freqtrade.strategy.strategyupdater import StrategyUpdater
|
2022-12-27 19:14:39 +00:00
|
|
|
|
|
|
|
config = setup_utils_configuration(args, RunMode.UTIL_NO_EXCHANGE)
|
|
|
|
|
|
|
|
strategy_objs = StrategyResolver.search_all_objects(
|
|
|
|
config, enum_failed=True, recursive=config.get('recursive_strategy_search', False))
|
|
|
|
|
|
|
|
filtered_strategy_objs = []
|
2022-12-30 20:48:06 +00:00
|
|
|
for strategy_obj in strategy_objs:
|
|
|
|
for args_strategy in args['strategy_list']:
|
2022-12-27 19:14:39 +00:00
|
|
|
if strategy_obj['name'] == args_strategy and strategy_obj not in filtered_strategy_objs:
|
|
|
|
filtered_strategy_objs.append(strategy_obj)
|
|
|
|
break
|
2022-12-30 20:48:06 +00:00
|
|
|
print(f"strategy {strategy_obj['name']} could not be loaded or found and is skipped.")
|
2022-12-27 19:14:39 +00:00
|
|
|
|
|
|
|
for filtered_strategy_obj in filtered_strategy_objs:
|
|
|
|
# Initialize backtesting object
|
2022-12-29 21:17:52 +00:00
|
|
|
instance_strategy_updater = StrategyUpdater()
|
|
|
|
StrategyUpdater.start(instance_strategy_updater, config, filtered_strategy_obj)
|