From 5f2a871637b62a0a327750118b4d28e86169c428 Mon Sep 17 00:00:00 2001 From: hroff-1902 Date: Sat, 16 May 2020 17:15:58 +0300 Subject: [PATCH] Add missing module --- freqtrade/data/common.py | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 freqtrade/data/common.py diff --git a/freqtrade/data/common.py b/freqtrade/data/common.py new file mode 100644 index 000000000..7a61d51ea --- /dev/null +++ b/freqtrade/data/common.py @@ -0,0 +1,7 @@ +""" +Common datatypes +""" +from typing import List, Tuple + +# List of pairs with their timeframes +ListPairsWithTimeframes = List[Tuple[str, str]]