獲取標的經紀隊列
該接口用於獲取標的的實時經紀隊列數據。
SDK Links
Python |
Rust |
Go |
Node.js |
資訊
業務指令:15
Request
Parameters
Name | Type | Required | Description |
---|---|---|---|
symbol | string | 是 | 標的代碼,使用 ticker.region 格式,例如: 700.HK |
Protobuf
message SecurityRequest {
string symbol = 1;
}
Request Example
# 獲取標的經紀隊列
# https://open.longportapp.com/docs/quote/pull/brokers
# 運行前請訪問“開發者中心“確保賬戶有正確的行情權限。
# 如沒有開通行情權限,可以通過“LongPort”手機客戶端,並進入“我的 - 我的行情 - 行情商城”購買開通行情權限。
from longport.openapi import QuoteContext, Config
config = Config.from_env()
ctx = QuoteContext(config)
resp = ctx.brokers("700.HK")
print(resp)