freqtrade_origin/freqtrade/plugins/protections/iprotection.py

34 lines
863 B
Python
Raw Normal View History

import logging
from abc import ABC, abstractmethod
2020-10-14 05:40:44 +00:00
from datetime import datetime
from typing import Any, Dict
logger = logging.getLogger(__name__)
class IProtection(ABC):
2020-10-14 05:40:44 +00:00
def __init__(self, config: Dict[str, Any], protection_config: Dict[str, Any]) -> None:
self._config = config
2020-10-14 05:40:44 +00:00
self._protection_config = protection_config
@property
def name(self) -> str:
return self.__class__.__name__
@abstractmethod
def short_desc(self) -> str:
"""
Short method description - used for startup-messages
-> Please overwrite in subclasses
"""
2020-10-14 05:40:44 +00:00
@abstractmethod
def stop_trade_enters_global(self, date_now: datetime) -> bool:
"""
Stops trading (position entering) for all pairs
This must evaluate to true for the whole period of the "cooldown period".
"""