逐笔明细
接口说明
功能说明:
- 根据证券代码查询标的的逐笔详情。
请求URL:/market-data/tick
请求方式:通过Webull SDK建立GRPC长连接,然后调用接口获取。
频次限制:每个AppId调用频次限制为1次每秒。
请求参数
参数 | 类型 | 必填 | 说明 |
---|---|---|---|
symbol | String | 是 | 证券代码;例如:00700 |
category | String | 是 | 证券类型,枚举,参考:证券类型,如: HK_STOCK |
count | String | 是 | 条数,默认30条,最大限制1000条 |
响应参数
字段 | 类型 | 说明 |
---|---|---|
symbol | String | 证券代码 |
instrument_id | String | 标的ID |
result | []Tick | 逐笔明细 |
Tick
字段 | 类型 | 说明 |
---|---|---|
time | String | 成交时间 |
price | String | 价格 |
volume | string | 成交量 |
side | string | 成交方向,详情请见成交方向 |
请求示例
- Python
- Java
from webullsdktrade.grpc_api import API
from webullsdkquotescore.grpc.grpc_client import GrpcApiClient
from webullsdkcore.common.region import Region
grpc_client = GrpcApiClient(your_app_key, your_app_secret, Region.HK.value)
api = API(grpc_client)
response = api.market_data.get_tick(symbol, category)
if response.status_code == 200:
result = response.json()
try (QuotesApiClient quotesApiClient = QuotesApiClient.builder()
.appKey(Env.APP_KEY)
.appSecret(Env.APP_SECRET)
.regionId(Region.hk.name())
.build()) {
List<Tick> ticks = quotesApiClient.getTicks(symbol, category);
}