# 逐笔推送

# 接口说明

已订阅股票的实时逐笔推送。

# 订阅参数

逐笔 topicId:14

逐笔(盘前) topicId:27

逐笔(盘后) topicId:28

逐笔(夜盘) topicId:37

  • 推送消息实体
message TickerNotify {
    Security security = 1;
    Ticker ticker=2; // 逐笔列表
}
  • Ticker 实体
"ticker":[{
            "time": "string 时间字符串",
            "side": "int32 TickerDirection, 买卖方向 0平1买2卖",
            "price": "double 价格",
            "volume": "int64 成交量",
            "type": "int32 TickerType, 逐笔类型",
            "timestamp": "int64 时间戳",
            "mktTmType": "int32 -1:盘前;1:盘中;-2:盘后;-3:夜盘"
}]