Liquidation should be a separate exit type

This commit is contained in:
Matthias
2022-07-28 20:35:23 +02:00
parent d70650b074
commit 995be90f91
5 changed files with 26 additions and 16 deletions

View File

@@ -9,6 +9,7 @@ class ExitType(Enum):
STOP_LOSS = "stop_loss"
STOPLOSS_ON_EXCHANGE = "stoploss_on_exchange"
TRAILING_STOP_LOSS = "trailing_stop_loss"
LIQUIDATION = "liquidation"
EXIT_SIGNAL = "exit_signal"
FORCE_EXIT = "force_exit"
EMERGENCY_EXIT = "emergency_exit"