From 'develop' of https://github.com/freqtrade/freqtrade into nullart/maindev

This commit is contained in:
Nullart
2018-07-10 13:18:09 +08:00
93 changed files with 19015 additions and 13 deletions

15
freqtrade/state.py Executable file
View File

@@ -0,0 +1,15 @@
# pragma pylint: disable=too-few-public-methods
"""
Bot state constant
"""
import enum
class State(enum.Enum):
"""
Bot application states
"""
RUNNING = 0
STOPPED = 1
RELOAD_CONF = 2