stable/freqtrade/enums/exchangename.py

11 lines
203 B
Python
Raw Normal View History

2021-08-06 05:23:02 +00:00
from enum import Enum
class ExchangeName(Enum):
"""All the exchanges supported by freqtrade that support leverage"""
BINANCE = "Binance"
KRAKEN = "Kraken"
FTX = "FTX"
OTHER = None