mirror of
https://github.com/freqtrade/freqtrade.git
synced 2024-11-14 12:13:57 +00:00
8 lines
143 B
Python
8 lines
143 B
Python
|
"""
|
||
|
Common datatypes
|
||
|
"""
|
||
|
from typing import List, Tuple
|
||
|
|
||
|
# List of pairs with their timeframes
|
||
|
ListPairsWithTimeframes = List[Tuple[str, str]]
|