10 lines
178 B
Python
10 lines
178 B
Python
from enum import Enum
|
|
|
|
|
|
class PriceType(str, Enum):
|
|
"""Enum to distinguish possible trigger prices for stoplosses"""
|
|
|
|
LAST = "last"
|
|
MARK = "mark"
|
|
INDEX = "index"
|