mirror of
https://github.com/aljazceru/bitfinex-api-py.git
synced 2025-12-19 23:04:21 +01:00
Align code with new Bitfinex API documentation improvements.
This commit is contained in:
@@ -106,10 +106,10 @@ class Statistic(_Type):
|
||||
@dataclass
|
||||
class Candle(_Type):
|
||||
mts: int
|
||||
open: float
|
||||
close: float
|
||||
high: float
|
||||
low: float
|
||||
open: int
|
||||
close: int
|
||||
high: int
|
||||
low: int
|
||||
volume: float
|
||||
|
||||
@dataclass
|
||||
@@ -119,7 +119,7 @@ class DerivativesStatus(_Type):
|
||||
deriv_price: float
|
||||
spot_price: float
|
||||
insurance_fund_balance: float
|
||||
next_funding_evt_timestamp_ms: int
|
||||
next_funding_evt_mts: int
|
||||
next_funding_accrued: float
|
||||
next_funding_step: int
|
||||
current_funding: float
|
||||
@@ -149,7 +149,7 @@ class Leaderboard(_Type):
|
||||
|
||||
@dataclass
|
||||
class FundingStatistic(_Type):
|
||||
timestamp: int
|
||||
mts: int
|
||||
frr: float
|
||||
avg_period: float
|
||||
funding_amount: float
|
||||
|
||||
Reference in New Issue
Block a user