mirror of
https://github.com/freqtrade/freqtrade.git
synced 2025-11-29 00:23:07 +00:00
8 lines
107 B
Python
8 lines
107 B
Python
from enum import Enum
|
|
|
|
|
|
class WaitDataPolicy(str, Enum):
|
|
none = "none"
|
|
one = "one"
|
|
all = "all"
|