AShareHub Chinese Market Data

SkillCommerce & finance

AShareHub Chinese Market Data gives your AI access to structured information on Chinese markets, covering A-shares, ETFs, indexes, and company fundamentals. Once added, your AI can pull prices, financial statements, valuations, capital flows, and technical indicators, all delivered as analysis-ready data tables.

Available today. Use it from your connected AI after setup.

After adding it, ask your AI for the Chinese market data you need, such as recent prices for a stock or a company's latest financial statements. Results come back as structured tables you can use for further analysis.

Then ask your AI: use the AShareHub Chinese Market Data skill

What your AI can do with it

  • Look up trading data for Chinese A-shares and ETFs
  • Pull performance data for Chinese market indexes
  • Retrieve company financial statements
  • Check valuation figures for individual stocks
  • Track capital flows in and out of stocks
  • Generate technical indicators for trend analysis

What this skill tells your AI

The instructions your AI receives, as published by agentskillexchange/skills in skills/asharehub/SKILL.md and read by ahel’s review.

AShareHub gives AI coding agents a documented interface to Chinese A-share and ETF market data. Use it when a workflow needs daily or real-time prices, valuations, company financial statements, dividends, analyst data, Stock Connect holdings, money flow, index constituents, ETF holdings, news, or technical indicators. The official skill maps natural-language requests to 47 API and Python SDK interfaces and documents each method's inputs and response fields. Public security identifiers use symbol, such as 000001.SZ, 600519.SH, or 000300.SH, and SDK calls return pandas DataFrames for analysis, charting, or export. Access uses the hosted AShareHub API, so users must create an API key; a free tier provides 100 requests per day. See the skill website, API documentation, and MCP setup.

Installation

Install the Python SDK and set the API key issued by AShareHub:

pip install asharehub
export ASHAREHUB_API_KEY="ash_your_key_here"

Codex

git clone --depth 1 https://github.com/ChuYiCui1/AshareHub-skills.git
mkdir -p ~/.codex/skills/asharehub
cp -R AshareHub-skills/skills/en/. ~/.codex/skills/asharehub/

Claude Code

git clone --depth 1 https://github.com/ChuYiCui1/AshareHub-skills.git
mkdir -p .claude/skills/asharehub
cp -R AshareHub-skills/skills/en/. .claude/skills/asharehub/

Example

Ask the agent: "Use AShareHub to fetch CSI 300 daily prices since 2024-01-01 and summarize the monthly returns."

The underlying SDK call is:

from asharehub import AShareHub
import os

client = AShareHub(api_key=os.environ["ASHAREHUB_API_KEY"], version="v2")
prices = client.index_daily(symbol="000300.SH", start_date="20240101")
print(prices[["trade_date", "close", "pct_chg"]])
client.close()

Signals

GitHub stars
38
Forks
53
Last commit
Sep 2026
Advanced
Catalog kind
skill
Gateway key
asharehub-chinese-market-data
Source
github.com/agentskillexchange/skills