zhangkun9038@dingtalk.com 43a0070351 自定义两个protections
2025-08-27 14:05:18 +08:00

9 lines
581 B
Python

# flake8: noqa: F401
from freqtrade.plugins.protections.iprotection import IProtection, ProtectionReturn
from freqtrade.plugins.protections.cooldown_period import CooldownPeriod
from freqtrade.plugins.protections.low_profit_pairs import LowProfitPairs
from freqtrade.plugins.protections.max_drawdown_protection import MaxDrawdown
from freqtrade.plugins.protections.stoploss_guard import StoplossGuard
from freqtrade.plugins.protections.total_loss_protection import TotalLossProtection
from freqtrade.plugins.protections.consecutive_loss_protection import ConsecutiveLossProtection