You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Liquidated long positions in USD over this bucket (Side='sell').
608
606
long_usd: float=0.0
609
-
# Candle close mid for the same bucket. nil when no candle exists (very early in a newly listed pair, or when the price feed is down). FE renders the price line with `connectNulls=false` so gaps stay visible instead of being smoothed across.
610
607
price: Optional[float] =None
611
-
# Liquidated short positions in USD over this bucket (Side='buy').
612
608
short_usd: float=0.0
613
-
# Convenience sum so the FE can drive a "total" line without re-add.
614
609
total_usd: float=0.0
615
-
# Unix ms timestamp at the start of the interval bucket.
616
610
ts: int=0
617
611
618
612
@classmethod
@@ -634,7 +628,6 @@ class LiquidationSymbolHistoryResponse:
634
628
interval: str=""
635
629
quote: str=""
636
630
symbol: str=""
637
-
# Totals over the window — handy for a header line without making the FE re-aggregate the bucket list.
0 commit comments