From longbridge
Orderbook depth (5/10-level bid/ask), broker queue (HK only), and tick-by-tick trades for stocks via Longbridge Securities. Use for orderbook microstructure questions. Triggers: "盘口", "买卖盘", "5 档", "10 档", "深度", "经纪商队列", "逐笔", "tick", "成交明细", "盤口", "買賣盤", "5 檔", "10 檔", "經紀商隊列", "逐筆", "成交明細", "depth", "orderbook", "level 2", "broker queue", "tick data", "trades", "time and sales".
npx claudepluginhub longbridge/skills --plugin longbridgeThis skill uses the workspace's default tool permissions.
Orderbook depth, broker queue (HK-only), and tick-by-tick trades.
Guides Next.js Cache Components and Partial Prerendering (PPR): 'use cache' directives, cacheLife(), cacheTag(), revalidateTag() for caching, invalidation, static/dynamic optimization. Auto-activates on cacheComponents: true.
Guides building MCP servers enabling LLMs to interact with external services via tools. Covers best practices, TypeScript/Node (MCP SDK), Python (FastMCP).
Share bugs, ideas, or general feedback.
Orderbook depth, broker queue (HK-only), and tick-by-tick trades.
Response language: match the user's input language — Simplified Chinese / Traditional Chinese / English.
| Subcommand | Returns |
|---|---|
depth | 5 / 10-level orderbook: per-level price / volume / order_num |
brokers | Per-level broker_id queue (HK only). Tell the user the queue is HK-only when they ask about a non-HK symbol. |
trades | Latest N trades: time / price / volume / direction / type. Pass --count 1..1000. |
broker_id integers can be translated to names via longbridge-security-list → participants.
depthdepthtrades --count 50depth, brokers (if HK), and trades and merge the results<CODE>.<MARKET>.depth + brokers (HK-only) + trades and merge.depth is the closing snapshot and trades are the last N of the previous session — call this out explicitly when responding.depth as a bid / ask table; describe trades as a direction summary (buy-dominant / sell-dominant) plus the latest few rows. Cite Longbridge Securities.longbridge depth 700.HK --format json
longbridge brokers 700.HK --format json # HK-only
longbridge trades 700.HK --count 50 --format json
Always pass --format json so the output is machine-parseable.
depth / brokers: {asks: [...], bids: [...]} (brokers[i] includes a broker_id array)trades: array of trade rows (time / price / volume / direction / type)If longbridge is missing, fall back to MCP. If stderr surfaces "broker queue not supported" / "non-HK" on a brokers call, explain that broker queues are HK-only and switch to depth. Other stderr messages (auth / invalid symbol) get relayed verbatim.
| CLI subcommand | MCP tool |
|---|---|
depth | mcp__longbridge__depth |
brokers | mcp__longbridge__brokers |
trades | mcp__longbridge__trades |
MCP-only extensions: mcp__longbridge__short_positions, mcp__longbridge__option_volume, mcp__longbridge__option_volume_daily.
longbridge-quotelongbridge-capital-flowlongbridge-security-listlongbridge-depth/
└── SKILL.md # prompt-only, no scripts/