stable/freqtrade/enums/rpcmessagetype.py

30 lines
616 B
Python
Raw Normal View History

2021-06-09 17:51:44 +00:00
from enum import Enum
# We need to inherit from str so we can use as a str
class RPCMessageType(str, Enum):
2021-06-09 17:51:44 +00:00
STATUS = 'status'
WARNING = 'warning'
STARTUP = 'startup'
2021-09-08 06:20:40 +00:00
2022-04-04 17:29:15 +00:00
ENTRY = 'entry'
ENTRY_FILL = 'entry_fill'
ENTRY_CANCEL = 'entry_cancel'
2022-02-13 15:23:01 +00:00
2022-04-04 17:10:44 +00:00
EXIT = 'exit'
2022-04-04 17:08:31 +00:00
EXIT_FILL = 'exit_fill'
2022-04-04 17:07:20 +00:00
EXIT_CANCEL = 'exit_cancel'
2022-02-13 15:23:01 +00:00
2021-09-20 17:12:59 +00:00
PROTECTION_TRIGGER = 'protection_trigger'
PROTECTION_TRIGGER_GLOBAL = 'protection_trigger_global'
2021-06-09 17:51:44 +00:00
STRATEGY_MSG = 'strategy_msg'
WHITELIST = 'whitelist'
2021-06-09 17:51:44 +00:00
def __repr__(self):
return self.value
def __str__(self):
return self.value