2022-12-27 19:14:39 +00:00
|
|
|
import logging
|
2023-02-17 20:01:09 +00:00
|
|
|
import os
|
2023-01-05 21:56:06 +00:00
|
|
|
import time
|
2022-12-27 19:14:39 +00:00
|
|
|
from typing import Any, Dict
|
|
|
|
|
|
|
|
from freqtrade.configuration import setup_utils_configuration
|
|
|
|
from freqtrade.enums import RunMode
|
|
|
|
from freqtrade.resolvers import StrategyResolver
|
2023-02-17 20:01:09 +00:00
|
|
|
from freqtrade.strategy.strategyupdater import StrategyUpdater
|
2022-12-27 19:14:39 +00:00
|
|
|
|
|
|
|
|
|
|
|
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
|
|
|
|
"""
|
|
|
|
|
|
|
|
config = setup_utils_configuration(args, RunMode.UTIL_NO_EXCHANGE)
|
|
|
|
|
|
|
|
strategy_objs = StrategyResolver.search_all_objects(
|
2023-01-02 19:45:56 +00:00
|
|
|
config, enum_failed=False, recursive=config.get('recursive_strategy_search', False))
|
2022-12-27 19:14:39 +00:00
|
|
|
|
|
|
|
filtered_strategy_objs = []
|
2023-03-03 17:53:09 +00:00
|
|
|
if 'strategy_list' in args:
|
2023-02-17 20:01:09 +00:00
|
|
|
for args_strategy in args['strategy_list']:
|
|
|
|
for strategy_obj in strategy_objs:
|
|
|
|
if (strategy_obj['name'] == args_strategy
|
|
|
|
and strategy_obj not in filtered_strategy_objs):
|
|
|
|
filtered_strategy_objs.append(strategy_obj)
|
|
|
|
break
|
|
|
|
|
|
|
|
for filtered_strategy_obj in filtered_strategy_objs:
|
|
|
|
start_conversion(filtered_strategy_obj, config)
|
|
|
|
else:
|
|
|
|
processed_locations = set()
|
2023-01-01 11:37:15 +00:00
|
|
|
for strategy_obj in strategy_objs:
|
2023-02-17 20:01:09 +00:00
|
|
|
if strategy_obj['location'] not in processed_locations:
|
|
|
|
processed_locations.add(strategy_obj['location'])
|
|
|
|
start_conversion(strategy_obj, config)
|
|
|
|
|
|
|
|
|
|
|
|
def start_conversion(strategy_obj, config):
|
|
|
|
# try:
|
|
|
|
print(f"Conversion of {os.path.basename(strategy_obj['location'])} started.")
|
|
|
|
instance_strategy_updater = StrategyUpdater()
|
|
|
|
start = time.perf_counter()
|
|
|
|
instance_strategy_updater.start(config, strategy_obj)
|
|
|
|
elapsed = time.perf_counter() - start
|
|
|
|
print(f"Conversion of {os.path.basename(strategy_obj['location'])} took {elapsed:.1f} seconds.")
|
|
|
|
# except:
|
|
|
|
# pass
|