mirror of
https://github.com/freqtrade/freqtrade.git
synced 2024-11-10 18:23:55 +00:00
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]]
|