9 lines
150 B
Python
9 lines
150 B
Python
"""
|
|
Common Freqtrade types
|
|
"""
|
|
|
|
from typing import List, Tuple
|
|
|
|
# List of pairs with their timeframes
|
|
ListPairsWithTimeframes = List[Tuple[str, str]]
|