A-Share News Fetcher
Aggregates China A-share news, regulatory announcements and retail sentiment from public Chinese sources into structured JSON or Markdown.
Data & AnalyticsIntermediate★ 1,323⑂ 212AI score 9/10Last updated: Aug 8, 2026
What it does
- Pulls Chinese financial newsflash from Cailianshe, Wallstreetcn, Jin10, Sina 7x24 and Eastmoney.
- Collects policy/regulatory notices from the CSRC, PBoC, Shanghai Stock Exchange and Ministry of Finance.
- Fetches per-stock retail sentiment from Eastmoney's Guba forum.
- Extracts related A-share tickers from headlines, supports keyword filtering and limits, and outputs structured JSON or readable Markdown for downstream LLM analysis.
Who it's for
- Investors and analysts tracking the Chinese A-share market.
- Anyone building an automated daily market briefing from Chinese news sources.
- Developers who need a news/sentiment data feed for an LLM analysis pipeline.
Examples
- "What's the recent news on 000001?" → aggregated newsflash plus Guba sentiment for that ticker.
python scripts/fetch_intel.py --sources cn --keywords 降准,降息 --format markdown→ a Markdown digest limited to RRR/rate-cut headlines.--sources cn,policy --limit 20each morning, saved as JSON, feeding an automated market report.
· · · Install guide · · ·
Try it now, no install
Paste this into Claude to use the skill without installing anything.
Read the instructions in this file and follow them to help me: https://raw.githubusercontent.com/daymade/claude-code-skills/HEAD/daymade-financial/ashare-news-fetcher/SKILL.md What I want: (describe your task here)
If Claude can't open the link, open it yourself and paste the contents instead.
↓ If it works for you, download the ZIP below and install it. Then it runs on its own — no pasting each time.
Install in the Claude app (no terminal)
- Download the ZIP with the button below.
- In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
- Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Install in Claude Code
Let Claude do it — paste this into Claude Code
Install the skill I found on Claude Skill Mart. Copy the daymade-financial/ashare-news-fetcher folder from the GitHub repo daymade/claude-code-skills into my ~/.claude/skills/ashare-news-fetcher/. When it's done, tell me in one line what this skill can do.
Install with a command instead
git clone https://github.com/daymade/claude-code-skills.git /tmp/ccs && mkdir -p ~/.claude/skills && cp -r /tmp/ccs/daymade-financial/ashare-news-fetcher ~/.claude/skills/⚠ This is a third-party skill. Check the source repository before installing.
- Clone the repository:
git clone https://github.com/daymade/claude-code-skills.git - Copy the skill into Claude Code:
mkdir -p ~/.claude/skills && cp -r claude-code-skills/daymade-financial/ashare-news-fetcher ~/.claude/skills/ - Verify Python 3.10 or newer:
python --version - Install the required dependency:
pip install requests - Optional:
pip install beautifulsoup4for policy sources,pip install akshare jiebafor name-to-ticker matching. - Optional: set
export JIN10_APP_ID="your-app-id"to enable the Jin10 source; without it that source is skipped automatically. - Restart Claude Code and test with
/ashare-news-fetcher 000001,600519 cn,guba.
View source on GitHub ↗License: MIT