mirror of
https://github.com/freqtrade/freqtrade.git
synced 2024-11-10 10:21:59 +00:00
chore: improved type ordering
This commit is contained in:
parent
646ed50f37
commit
04cdd807ba
|
@ -16,6 +16,9 @@ class Ticker(TypedDict):
|
|||
# Several more - only listing required.
|
||||
|
||||
|
||||
Tickers = Dict[str, Ticker]
|
||||
|
||||
|
||||
class OrderBook(TypedDict):
|
||||
symbol: str
|
||||
bids: List[Tuple[float, float]]
|
||||
|
@ -33,7 +36,6 @@ class CcxtBalance(TypedDict):
|
|||
|
||||
CcxtBalances = Dict[str, CcxtBalance]
|
||||
|
||||
Tickers = Dict[str, Ticker]
|
||||
|
||||
# pair, timeframe, candleType, OHLCV, drop last?,
|
||||
OHLCVResponse = Tuple[str, str, CandleType, List, bool]
|
||||
|
|
Loading…
Reference in New Issue
Block a user