mirror of
https://github.com/aljazceru/bitfinex-api-py.git
synced 2025-12-19 23:04:21 +01:00
Add support for GET liquidations/hist endpoint.
This commit is contained in:
@@ -104,4 +104,17 @@ DerivativesStatus = TypedDict("DerivativesStatus", {
|
||||
|
||||
DerivativeStatuses = List[DerivativesStatus]
|
||||
|
||||
Liquidation = TypedDict("Liquidation", {
|
||||
"POS_ID": int,
|
||||
"MTS": int,
|
||||
"SYMBOL": str,
|
||||
"AMOUNT": float,
|
||||
"BASE_PRICE": float,
|
||||
"IS_MATCH": int,
|
||||
"IS_MARKET_SOLD": int,
|
||||
"PRICE_ACQUIRED": float
|
||||
})
|
||||
|
||||
Liquidations = List[Liquidation]
|
||||
|
||||
#endregion
|
||||
Reference in New Issue
Block a user