From 0f3dc821f21b2d37b8ce2c7e41713106b2125f0a Mon Sep 17 00:00:00 2001 From: Janne Sinivirta Date: Mon, 4 Jun 2018 15:03:42 +0300 Subject: [PATCH] add missing timeframes to allowed values --- freqtrade/arguments.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/freqtrade/arguments.py b/freqtrade/arguments.py index ff9c8da2c..e63e74419 100644 --- a/freqtrade/arguments.py +++ b/freqtrade/arguments.py @@ -317,7 +317,7 @@ class Arguments(object): '-t', '--timeframes', help='Specify which tickers to download. Space separated list. \ Default: %(default)s', - choices=['5m', '15m', '30m', '1h', '2h', '4h', + choices=['1m', '3m', '5m', '15m', '30m', '1h', '2h', '4h', '6h', '8h', '12h', '1d', '3d', '1w', '1M'], default=['1m', '5m'], nargs='+',