mirror of
https://github.com/aljazceru/bitfinex-api-py.git
synced 2025-12-20 07:14:20 +01:00
Split BfxRestInterface methods in t_ and f_ handlers.
This commit is contained in:
@@ -38,14 +38,14 @@ FundingCurrencyTicker = TypedDict("FundingCurrencyTicker", {
|
||||
"FRR_AMOUNT_AVAILABLE": float
|
||||
})
|
||||
|
||||
TickerHistory = TypedDict("TickerHistory", {
|
||||
TickersHistory = TypedDict("TickersHistory", {
|
||||
"SYMBOL": str,
|
||||
"BID": float,
|
||||
"ASK": float,
|
||||
"MTS": int
|
||||
})
|
||||
|
||||
TickerHistories = List[TickerHistory]
|
||||
TickersHistories = List[TickersHistory]
|
||||
|
||||
(TradingPairTrade, FundingCurrencyTrade) = (
|
||||
TypedDict("TradingPairTrade", { "ID": int, "MTS": int, "AMOUNT": float, "PRICE": float }),
|
||||
|
||||
Reference in New Issue
Block a user