Make your AI assistant fluent in Longbridge — ask about stock prices, your portfolio, news, and valuations in plain English, 中文, or 繁體, and get answers backed by real Longbridge data. 125 skills covering market data, fundamentals, valuation, options, technical analysis, quantitative strategies, portfolio risk, research, cross-market analysis, community, IPO, and automation across HK / US / A-share
Add this skill
npx mdskills install longbridge/longbridge-adr-premiumComprehensive cross-market ADR pricing analysis with clear workflow, multilingual support, and detailed error handling
1---2name: longbridge-adr-premium3description: |4 ADR / H-share / A-share cross-market pricing analysis via Longbridge Securities — tracks the premium or discount between US-listed ADRs, HK-listed H-shares, and A-shares; calculates theoretical arbitrage spread; analyses constraints (FX controls, transaction costs, liquidity). Triggers: "ADR溢价", "ADR折价", "AH溢价", "ADR套利", "美股ADR", "三地比价", "跨市场套利", "双重上市", "ADR溢價", "ADR折價", "AH溢價", "ADR套利", "三地比價", "跨市場套利", "ADR premium", "ADR discount", "AH premium", "ADR arbitrage", "cross-listing premium", "dual-listed", "three-market comparison", "BABA ADR", "HK ADR".5license: MIT6metadata:7 author: longbridge8 version: "1.0.0"9 risk_level: read_only10 requires_login: false11 default_install: true12 requires_mcp: false13 tier: read14---1516# longbridge-adr-premium1718Cross-market premium / discount analysis for companies dual- or triple-listed as ADR (US), H-share (HK), and/or A-share (CN).1920> **Response language**: match the user's input language — Simplified Chinese / Traditional Chinese / English.2122## When to use2324Trigger on prompts asking about:2526- ADR vs H-share premium / discount — *"BABA ADR 溢价"*, *"百度 ADR 和港股哪个便宜"*27- Three-market comparison — *"BABA.US / 9988.HK / 阿里A股 比价"*28- Theoretical arbitrage spread and constraints — *"ADR 套利空间"*, *"ADR arbitrage"*29- Dual-listing pricing discrepancy — *"dual-listed premium"*, *"跨市场套利"*3031For pure A/H premium time series defer to `longbridge-ah-premium`.3233## Workflow34351. Identify all available listing venues for the company (ADR ticker, HK code, A-share code).362. Fetch real-time quotes for each venue.373. Fetch USD/HKD and USD/CNY exchange rates.384. Convert all prices to a common currency (USD) using the ADR ratio where applicable.395. Calculate premium / discount between each pair: `(Price_A − Price_B) / Price_B × 100%`.406. Assess arbitrage constraints: FX repatriation rules, stamp duty, liquidity depth, settlement lag.417. Output a comparison table and narrative.4243> If unsure of exact flag names, run `longbridge <subcommand> --help` before proceeding.4445## CLI4647```bash48# Quotes for each listing venue49longbridge quote <ADR_SYMBOL> --format json50longbridge quote <HK_SYMBOL> --format json51longbridge quote <A_SYMBOL> --format json # omit if no A-share listing5253# Exchange rates for currency conversion54longbridge exchange-rate --format json55```5657Common examples:5859| Company | ADR | H-share | A-share |60|---------|-----|---------|---------|61| Alibaba | BABA.US | 9988.HK | — |62| Baidu | BIDU.US | 9888.HK | — |63| JD.com | JD.US | 9618.HK | — |64| NIO | NIO.US | 9866.HK | — |6566## Output6768Present a summary table then a narrative:6970```71Symbol Price (local) Price (USD) vs ADR72──────────────────────────────────────────────────73BABA.US $82.50 $82.50 baseline749988.HK HK$638.00 $81.79 −0.9%75```7677Then explain:78- Which venue is cheapest / most expensive and why.79- Arbitrage constraints (FX controls, transaction costs, liquidity).80- Whether the spread is actionable or structural.8182## Error handling8384| Situation | 简体回复 | 繁體回復 | English reply |85|-----------|---------|---------|---------------|86| Symbol not found | 未找到该代码,请确认上市交易所和代码格式。 | 找不到該代碼,請確認上市交易所和代碼格式。 | Symbol not found — please verify the exchange and ticker format. |87| No ADR listing | 该公司没有美股 ADR,只能比较 H 股和 A 股。 | 該公司沒有美股 ADR,只能比較 H 股和 A 股。 | No US ADR found — comparing H-share vs A-share only. |88| Exchange rate unavailable | 汇率数据暂时不可用,无法换算成同一货币。 | 匯率數據暫時不可用,無法換算成同一貨幣。 | Exchange rate unavailable — cannot convert to a common currency. |89| `command not found: longbridge` | 请先安装 longbridge-terminal,或通过 MCP 连接。 | 請先安裝 longbridge-terminal,或透過 MCP 連線。 | Install longbridge-terminal or connect via MCP. |90| `not logged in` | 请运行 `longbridge auth login` 完成登录。 | 請執行 `longbridge auth login` 完成登入。 | Run `longbridge auth login` to authenticate. |9192## MCP fallback9394When the CLI is unavailable, fall back to the MCP server. Discover available tools from the MCP server's tool list at runtime.9596## Related skills9798- `longbridge-ah-premium` — A/H premium time series and intraday curve99- `longbridge-peer-comparison` — side-by-side valuation across 2–5 symbols100- `longbridge-fx` — FX spot rates101102## File layout103104```105skills/longbridge-adr-premium/106└── SKILL.md107```108
Full transparency — inspect the skill content before installing.