freqtrade_origin/freqtrade/enums/hyperoptstate.py

14 lines
209 B
Python
Raw Normal View History

from enum import Enum
class HyperoptState(Enum):
2024-05-12 14:21:53 +00:00
"""Hyperopt states"""
STARTUP = 1
DATALOAD = 2
INDICATORS = 3
OPTIMIZE = 4
def __str__(self):
return f"{self.name.lower()}"