Removed short, exit_short from enums

This commit is contained in:
Sam Germain 2021-08-08 01:36:59 -06:00
parent 658f138e30
commit 4630f69830

View File

@ -7,8 +7,6 @@ class SignalType(Enum):
"""
BUY = "buy"
SELL = "sell"
SHORT = "short"
EXIT_SHORT = "exit_short"
class SignalTagType(Enum):
@ -16,4 +14,3 @@ class SignalTagType(Enum):
Enum for signal columns
"""
BUY_TAG = "buy_tag"
SHORT_TAG = "short_tag"