From bc3d4518ff9ddf8a19d5c2031b644049971a1dfb Mon Sep 17 00:00:00 2001 From: creslinux Date: Sat, 2 Jun 2018 17:31:31 +0300 Subject: [PATCH] Revert "Extend timerange to support unxtime" This reverts commit fed17de4606ddc400bdd86048d185b5c7fc5dfdd. --- freqtrade/arguments.py | 7 ------- 1 file changed, 7 deletions(-) diff --git a/freqtrade/arguments.py b/freqtrade/arguments.py index 00869f974..afcb05511 100644 --- a/freqtrade/arguments.py +++ b/freqtrade/arguments.py @@ -222,9 +222,6 @@ class Arguments(object): syntax = [(r'^-(\d{8})$', (None, 'date')), (r'^(\d{8})-$', ('date', None)), (r'^(\d{8})-(\d{8})$', ('date', 'date')), - (r'^-(\d{10})$', (None, 'timestamp')), - (r'^(\d{10})-$', ('timestamp', None)), - (r'^(\d{10})-(\d{10})$', ('timestamp', 'timestamp')), (r'^(-\d+)$', (None, 'line')), (r'^(\d+)-$', ('line', None)), (r'^(\d+)-(\d+)$', ('index', 'index'))] @@ -240,8 +237,6 @@ class Arguments(object): start = rvals[index] if stype[0] == 'date': start = arrow.get(start, 'YYYYMMDD').timestamp - elif stype[0] == 'timestamp': - start = arrow.get(start).timestamp else: start = int(start) index += 1 @@ -249,8 +244,6 @@ class Arguments(object): stop = rvals[index] if stype[1] == 'date': stop = arrow.get(stop, 'YYYYMMDD').timestamp - elif stype[1] == 'timestamp': - stop = arrow.get(stop).timestamp else: stop = int(stop) return stype, start, stop