Merge branch 'develop' into timeperiod

This commit is contained in:
kryofly
2018-01-14 10:23:54 +01:00
12 changed files with 157 additions and 34 deletions

View File

@@ -15,6 +15,11 @@ from freqtrade import __version__
logger = logging.getLogger(__name__)
def file_dump_json(filename, data):
with open(filename, 'w') as fp:
json.dump(data, fp)
class State(enum.Enum):
RUNNING = 0
STOPPED = 1