diff --git a/core/models/risk_type.py b/core/models/risk_type.py index 33a72e4f..a546275c 100644 --- a/core/models/risk_type.py +++ b/core/models/risk_type.py @@ -6,6 +6,7 @@ class RiskType(Enum): SIGNAL = 2 SL = 3 TP = 4 + REVERSE = 5 def __str__(self): return self.name.upper()