2020-10-13 06:06:29 +00:00
|
|
|
"""
|
|
|
|
This module load custom pairlists
|
|
|
|
"""
|
|
|
|
import logging
|
|
|
|
from pathlib import Path
|
|
|
|
from typing import Dict
|
|
|
|
|
2022-09-18 11:31:52 +00:00
|
|
|
from freqtrade.constants import Config
|
2020-10-13 06:06:29 +00:00
|
|
|
from freqtrade.plugins.protections import IProtection
|
|
|
|
from freqtrade.resolvers import IResolver
|
|
|
|
|
|
|
|
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
|
|
|
|
class ProtectionResolver(IResolver):
|
|
|
|
"""
|
|
|
|
This class contains all the logic to load custom PairList class
|
|
|
|
"""
|
|
|
|
object_type = IProtection
|
|
|
|
object_type_str = "Protection"
|
|
|
|
user_subdir = None
|
|
|
|
initial_search_path = Path(__file__).parent.parent.joinpath('plugins/protections').resolve()
|
|
|
|
|
|
|
|
@staticmethod
|
2022-09-18 11:31:52 +00:00
|
|
|
def load_protection(protection_name: str, config: Config,
|
|
|
|
protection_config: Dict) -> IProtection:
|
2020-10-13 06:06:29 +00:00
|
|
|
"""
|
|
|
|
Load the protection with protection_name
|
|
|
|
:param protection_name: Classname of the pairlist
|
|
|
|
:param config: configuration dictionary
|
|
|
|
:param protection_config: Configuration dedicated to this pairlist
|
|
|
|
:return: initialized Protection class
|
|
|
|
"""
|
|
|
|
return ProtectionResolver.load_object(protection_name, config,
|
2020-10-14 05:40:44 +00:00
|
|
|
kwargs={'config': config,
|
|
|
|
'protection_config': protection_config,
|
2020-10-13 06:06:29 +00:00
|
|
|
},
|
|
|
|
)
|