mirror of
https://github.com/freqtrade/freqtrade.git
synced 2024-11-14 04:03:55 +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]]
|