stable/freqtrade/plugins/protections/cooldown_period.py

70 lines
2.3 KiB
Python
Raw Normal View History

2020-10-24 14:52:26 +00:00
import logging
2020-11-22 10:49:41 +00:00
from datetime import datetime, timedelta
2020-10-24 14:52:26 +00:00
from typing import Any, Dict
from freqtrade.persistence import Trade
from freqtrade.plugins.protections import IProtection, ProtectionReturn
logger = logging.getLogger(__name__)
class CooldownPeriod(IProtection):
has_global_stop: bool = False
has_local_stop: bool = True
2020-10-24 14:52:26 +00:00
def __init__(self, config: Dict[str, Any], protection_config: Dict[str, Any]) -> None:
super().__init__(config, protection_config)
def _reason(self) -> str:
"""
LockReason to use
"""
2020-12-07 10:08:54 +00:00
return (f'Cooldown period for {self.stop_duration_str}.')
2020-10-24 14:52:26 +00:00
def short_desc(self) -> str:
"""
Short method description - used for startup-messages
"""
2020-12-07 10:08:54 +00:00
return (f"{self.name} - Cooldown period of {self.stop_duration_str}.")
2020-10-24 14:52:26 +00:00
def _cooldown_period(self, pair: str, date_now: datetime, ) -> ProtectionReturn:
"""
Get last trade for this pair
"""
2020-11-11 06:48:27 +00:00
look_back_until = date_now - timedelta(minutes=self._stop_duration)
2020-10-24 14:52:26 +00:00
filters = [
Trade.is_open.is_(False),
Trade.close_date > look_back_until,
Trade.pair == pair,
]
trade = Trade.get_trades(filters).first()
if trade:
2020-12-07 10:08:54 +00:00
self.log_once(f"Cooldown for {pair} for {self.stop_duration_str}.", logger.info)
until = self.calculate_lock_end([trade], self._stop_duration)
2020-10-24 14:52:26 +00:00
return True, until, self._reason()
return False, None, None
def global_stop(self, date_now: datetime) -> ProtectionReturn:
"""
Stops trading (position entering) for all pairs
This must evaluate to true for the whole period of the "cooldown period".
:return: Tuple of [bool, until, reason].
If true, all pairs will be locked with <reason> until <until>
"""
# Not implemented for cooldown period.
return False, None, None
def stop_per_pair(self, pair: str, date_now: datetime) -> ProtectionReturn:
"""
Stops trading (position entering) for this pair
This must evaluate to true for the whole period of the "cooldown period".
:return: Tuple of [bool, until, reason].
If true, this pair will be locked with <reason> until <until>
"""
return self._cooldown_period(pair, date_now)