bbgo_origin/python/bbgo/data/depth.py

42 lines
891 B
Python
Raw Normal View History

2022-04-13 09:40:21 +00:00
from __future__ import annotations
from dataclasses import dataclass
import bbgo_pb2
from typing import List
# message Depth {
# string exchange = 1;
# string symbol = 2;
# repeated PriceVolume asks = 3;
# repeated PriceVolume bids = 4;
# }
@dataclass
class Depth:
exchange: str
symbol: str
asks: List[PriceVolume]
bids: List[PriceVolume]
@classmethod
def from_pb(cls, obj: bbgo_pb2.Depth):
return cls(
exchange=obj.exchange,
symbol=obj.symbol,
asks=[PriceVolume.from_pb(ask) for ask in obj.asks],
bids=[PriceVolume.from_pb(bid) for bid in obj.bids],
)
@dataclass
class PriceVolume:
price: float
volume: float
@classmethod
def from_pb(cls, obj: bbgo_pb2.PriceVolume):
return cls(
price=float(obj.price),
volume=float(obj.volume),
)