Rename stop/roi loading method

This commit is contained in:
Matthias 2022-05-30 06:52:44 +02:00
parent ad8ff10a05
commit 386d3e0353
2 changed files with 2 additions and 2 deletions

View File

@ -47,7 +47,7 @@ class StrategyResolver(IResolver):
strategy: IStrategy = StrategyResolver._load_strategy(
strategy_name, config=config,
extra_dir=config.get('strategy_path'))
strategy.ft_load_hyper_params_from_file()
strategy.ft_load_params_from_file()
# Set attributes
# Check if we need to override configuration
# (Attribute name, default, subkey)

View File

@ -85,7 +85,7 @@ class HyperStrategyMixin:
return params
def ft_load_hyper_params_from_file(self) -> None:
def ft_load_params_from_file(self) -> None:
"""
Load Parameters from parameter file
Should/must run before config values are loaded in strategy_resolver.