9 lines
581 B
Python
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
|