freqtrade_origin/freqtrade/enums/tradingmode.py
2024-05-13 07:10:25 +02:00

13 lines
221 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"