stable/freqtrade/enums/pricetype.py

9 lines
177 B
Python
Raw Normal View History

2023-02-04 12:33:09 +00:00
from enum import Enum
class PriceType(str, Enum):
"""Enum to distinguish possible trigger prices for stoplosses"""
LAST = "last"
MARK = "mark"
INDEX = "index"