Skills hk-stock-market-hkex
Get HKEX (Hong Kong Stock Exchange) market data via FinanceAgent on OneKey Gateway.
install
source · Clone the upstream repo
git clone https://github.com/openclaw/skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/ai-hub-admin/hk-stock-market-hkex" ~/.claude/skills/clawdbot-skills-hk-stock-market-hkex && rm -rf "$T"
manifest:
skills/ai-hub-admin/hk-stock-market-hkex/SKILL.mdsource content
OneKey Gateway
Use one access key to connect to various commercial APIs via the DeepNLP OneKey Agent Router.
Quick Start
Set your OneKey Access Key
export DEEPNLP_ONEKEY_ROUTER_ACCESS=your_access_key
Common settings:
:unique_idaiagenta2z/financeagent
:api_idget_hk_stock_market_hkex
Tool
get_hk_stock_market_hkex
get_hk_stock_market_hkexGet HKEX (Hong Kong Stock Exchange) stock market data.
Parameters:
(array of string, required): Stock symbols to query.symbol_list- For HKEX, this is typically the numeric stock code as a string (to preserve leading zeros if present), e.g.
,"700"
."1024" - Example:
["700", "1024"]
- For HKEX, this is typically the numeric stock code as a string (to preserve leading zeros if present), e.g.
Response (JSON):
(boolean): Whether the request succeeded.success
(array): List of stock quote objects (fields depend on the upstream data source).data
(string, optional): Error message whenmessage
.success=false
Usage
CLI Usage
## install onekey agent gateway npm install @aiagenta2z/onekey-gateway ## CLI to Call API and Symbol List npx onekey agent aiagenta2z/financeagent get_hk_stock_market_hkex '{"symbol_list": ["700", "1024"]}'
HTTP (curl) Usage
export DEEPNLP_ONEKEY_ROUTER_ACCESS=your_access_key curl -v -X POST "https://agent.deepnlp.org/agent_router" \ -H "Content-Type: application/json" \ -H "X-OneKey: $DEEPNLP_ONEKEY_ROUTER_ACCESS" \ -d '{ "unique_id": "aiagenta2z/financeagent", "api_id": "get_hk_stock_market_hkex", "data": { "symbol_list": ["700", "1024"] } }'