Claude Agent Skill · by Succ985

Akshare

Install Akshare skill for Claude Code from succ985/openclaw-akshare-skill.

Install
Terminal · npx
$npx skills add https://github.com/succ985/openclaw-akshare-skill --skill akshare
Works with Paperclip

How Akshare fits into a Paperclip company.

Akshare drops into any Paperclip agent that handles this kind of work. Assign it to a specialist inside a pre-configured PaperclipOrg company and the skill becomes available on every heartbeat — no prompt engineering, no tool wiring.

S
SaaS FactoryPaired

Pre-configured AI company — 18 agents, 18 skills, one-time purchase.

$27$59
Explore pack
Source file
SKILL.md135 lines
Expand
---name: aksharedescription: Chinese financial data access using AkShare library. Fetch real-time and historical data for A-shares, Hong Kong stocks, US stocks, futures, funds, and macroeconomic indicators. Use when user requests Chinese market data, stock prices, market analysis, or financial information from Chinese exchanges. Supports stock quotes, historical data, futures market data, fund information, macroeconomic indicators, and real-time market updates.--- # AkShare - Chinese Financial Data ## Overview AkShare is a free, open-source Python library for accessing Chinese financial market data. This skill provides guidance for fetching data from Chinese exchanges including Shanghai Stock Exchange, Shenzhen Stock Exchange, Hong Kong Exchange, and more. ## Quick Start Install AkShare:```bashpip install akshare``` Basic stock quote:```pythonimport akshare as akdf = ak.stock_zh_a_spot_em()  # Real-time A-share data``` ## Stock Data ### A-Shares (A股) **Real-time quotes:**```python# All A-shares real-time datadf = ak.stock_zh_a_spot_em() # Single stock real-time quotedf = ak.stock_zh_a_spot()``` **Historical data:**```python# Historical daily datadf = ak.stock_zh_a_hist(symbol="000001", period="daily", start_date="20240101", end_date="20241231", adjust="qfq")``` **Stock list:**```python# Get all A-share stock listdf = ak.stock_info_a_code_name()``` ### Hong Kong Stocks (港股) **Real-time quotes:**```pythondf = ak.stock_hk_spot_em()``` **Historical data:**```pythondf = ak.stock_hk_hist(symbol="00700", period="daily", adjust="qfq")``` ### US Stocks (美股) **Real-time data:**```pythondf = ak.stock_us_spot_em()``` ## Futures Data (期货) **Real-time futures:**```python# Commodity futuresdf = ak.futures_zh_spot()``` **Historical futures:**```pythondf = ak.futures_zh_hist_sina(symbol="IF0")``` ## Fund Data (基金) **Fund list:**```pythondf = ak.fund_open_fund_info_em()``` **Fund historical data:**```pythondf = ak.fund_open_fund_info_em(fund="000001", indicator="单位净值走势")``` ## Macroeconomic Indicators (宏观) **GDP data:**```pythondf = ak.macro_china_gdp()``` **CPI data:**```pythondf = ak.macro_china_cpi()``` **PMI data:**```pythondf = ak.macro_china_pmi()``` ## Common Parameters **Period (周期):**- `daily` - 日线- `weekly` - 周线- `monthly` - 月线 **Adjustment (复权):**- `qfq` - 前复权- `hfq` - 后复权- `""` - 不复权 ## Tips 1. **Data caching**: AkShare doesn't cache data, implement your own caching if needed2. **Rate limiting**: Be mindful of request frequency to avoid being blocked3. **Data format**: Returns pandas DataFrame, can be easily processed4. **Error handling**: Network errors may occur, implement retry logic ## References For complete API documentation and advanced usage, see:- [references/akshare_api.md](references/akshare_api.md) - Detailed API reference- [references/common_functions.md](references/common_functions.md) - Commonly used functions- [https://akshare.akfamily.xyz/](https://akshare.akfamily.xyz/) - Official documentation