12 lines
220 B
Python
12 lines
220 B
Python
from enum import Enum
|
|
|
|
|
|
class TradingMode(str, Enum):
|
|
"""
|
|
Enum to distinguish between
|
|
spot, margin, futures or any other trading method
|
|
"""
|
|
SPOT = "spot"
|
|
MARGIN = "margin"
|
|
FUTURES = "futures"
|