myTestFreqAI/freqtrade/enums/hyperoptstate.py
Ubuntu 17199e9a44
Some checks failed
Pre-commit auto-update / auto-update (push) Has been cancelled
first add
2025-04-21 21:11:51 +08:00

14 lines
209 B
Python

from enum import Enum
class HyperoptState(Enum):
"""Hyperopt states"""
STARTUP = 1
DATALOAD = 2
INDICATORS = 3
OPTIMIZE = 4
def __str__(self):
return f"{self.name.lower()}"