股票接口中的StockQuoteRecord,也就是十档行情快照,在传统的行情软件中只能看到委托数量,而无法知道这些数据是如何形成的。
下面看一下股票接口StockQuoteRecord(十档行情快照)的说明:
字段名 | 类型 | 备注 |
stock_exchange | uint32 | 证券市场,见数据字典 |
stock_code | string | 证券代码 |
created_at | int64 | 快照日期时间戳(毫秒) |
status | uint32 | 状态:0-开盘前,1-开盘集合竞价,2-集合竞价至连续竞价,3-连续竞价, 4-中午休市,5-收盘集合竞价,6-闭市 |
prev_close_price | uint32 | 前收盘价 |
open_price | uint32 | 开盘价 |
latest_price | uint32 | 最新价 |
high_price | uint32 | 最高价 |
low_price | uint32 | 最低价 |
limit_up_price | uint32 | 涨停价 |
limit_down_price | uint32 | 跌停价 |
order_quantity | uint32 | 成交笔数 |
volume | uint64 | 成交数量 |
amount | uint64 | 成交金额 |
bid_volume | uint64 | 委托买入数量 |
bid_price | uint32 | 委托买入加权平均价 |
ask_volume | uint64 | 委托卖出数量 |
ask_price | uint32 | 委托卖出加权平均价 |
bid_price_detail | repeated uint32 | 委托买入价格明细(十档) |
bid_volume_detail | repeated uint32 | 委托买入数量明细(十档) |
ask_price_detail | repeated uint32 | 委托卖出价格明细(十档) |
ask_volume_detail | repeated uint32 | 委托卖出数量明细(十档) |
返回示例:
使用软件看盘的散户,都是从别人的服务器上下载数据到电脑里看的,这样就要比证券交易市场上的数据晚4-6秒的时间,10档行情的也是一样的,数据也是要晚4-6秒的时间,所以在交易过程就慢人一步,但如果是直接使用L2行情接口,可以更快速得知信息,也可以通过L2行情接口:https://gitee.com/l2gogogo提高交易的速度,而且还是实盘交易,用的也放心。