mirror of
https://github.com/freqtrade/freqtrade.git
synced 2024-11-10 10:21:59 +00:00
13 lines
242 B
Python
13 lines
242 B
Python
from enum import Enum
|
|
|
|
|
|
class MarginMode(str, Enum):
|
|
"""
|
|
Enum to distinguish between
|
|
cross margin/futures margin_mode and
|
|
isolated margin/futures margin_mode
|
|
"""
|
|
CROSS = "cross"
|
|
ISOLATED = "isolated"
|
|
NONE = ''
|