build 055: remove legacy Kline models

This commit is contained in:
2026-07-16 10:21:46 +03:00
parent 09f3f66a4e
commit ed69420196
2 changed files with 317 additions and 26 deletions

View File

@@ -88,32 +88,6 @@ class ExchangeMarketStatus:
message: str
# Одна свеча OHLCV.
@dataclass(slots=True)
class Kline:
symbol: str
interval: str
open_time: int
open_price: float
high_price: float
low_price: float
close_price: float
volume: float
source: str
# Пакет свечей.
@dataclass(slots=True)
class KlineBatch:
symbol: str
interval: str
candles: list[Kline]
source: str
# Информация о торговой комиссии для инструмента.
@dataclass(slots=True)
class TradingFee: