# Send investment-data to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "investment-data",
    "name": "investment-data",
    "source": "tencent",
    "type": "skill",
    "category": "数据分析",
    "sourceUrl": "https://clawhub.ai/StanleyChanH/investment-data",
    "canonicalUrl": "https://clawhub.ai/StanleyChanH/investment-data",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/investment-data",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=investment-data",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "config/config.yaml",
      "examples/usage_examples.md",
      "references/fields.md",
      "requirements.txt"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "investment-data",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T15:42:20.689Z",
      "expiresAt": "2026-05-07T15:42:20.689Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=investment-data",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=investment-data",
        "contentDisposition": "attachment; filename=\"investment-data-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "investment-data"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/investment-data"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/investment-data",
    "downloadUrl": "https://openagent3.xyz/downloads/investment-data",
    "agentUrl": "https://openagent3.xyz/skills/investment-data/agent",
    "manifestUrl": "https://openagent3.xyz/skills/investment-data/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/investment-data/agent.md"
  }
}
```
## Documentation

### A 股投资数据获取 Skill

基于 investment_data 项目，提供高质量 A 股投资数据。

### 🎯 核心功能

数据下载 - 自动下载最新数据集
数据查询 - 查询股票历史数据
数据更新 - 每日自动更新
多格式支持 - Qlib、CSV、JSON

### 📊 数据类型

日终价格 - 开高低收、成交量、成交额
涨跌停数据 - 涨跌停价格、涨跌停状态
指数数据 - 主要指数价格和权重
复权数据 - 前复权、后复权价格

### 1. 下载最新数据

python scripts/download_data.py --latest

### 2. 查询股票数据

from scripts.data_client import InvestmentData

# 初始化客户端
client = InvestmentData()

# 查询单只股票
df = client.get_stock_data("000001.SZ", start_date="2024-01-01", end_date="2024-12-31")

# 查询指数成分
weights = client.get_index_weights("000300.SH")

# 查询涨跌停
limits = client.get_limit_data("000001.SZ", date="2024-12-01")

### 3. 批量查询

python scripts/query_batch.py --stocks "000001.SZ,000002.SZ" --start 2024-01-01 --end 2024-12-31 --output csv

### 📖 详细文档

数据字段说明
API 参考
使用示例
常见问题

### 环境变量

# 数据存储路径（可选）
export INVESTMENT_DATA_DIR=~/.qlib/qlib_data/cn_data

# Tushare Token（可选，用于实时更新）
export TUSHARE_TOKEN=your_token_here

### 配置文件

编辑 config/config.yaml：

data:
  # 数据存储路径
  data_dir: ~/.qlib/qlib_data/cn_data
  
  # 自动更新
  auto_update: true
  update_time: "09:00"
  
  # 数据源优先级
  sources:
    - final
    - ts
    - ak
    - yahoo

query:
  # 默认输出格式
  output_format: csv
  
  # 日期格式
  date_format: "%Y-%m-%d"

### Python API

from scripts.data_client import InvestmentData

client = InvestmentData()

# 查询股票日 K 线
df = client.get_stock_daily("000001.SZ", "2024-01-01", "2024-12-31")
print(df.head())

# 查询指数数据
index_df = client.get_index_daily("000300.SH", "2024-01-01", "2024-12-31")

# 查询股票列表
stocks = client.get_stock_list(date="2024-12-31")

# 查询退市股票
delisted = client.get_delisted_stocks()

### 命令行

# 查询单只股票
python scripts/query.py --stock 000001.SZ --start 2024-01-01 --end 2024-12-31

# 批量查询
python scripts/query_batch.py --file stocks.txt --start 2024-01-01 --output json

# 更新数据
python scripts/update_data.py --daily

# 导出数据
python scripts/export.py --stock 000001.SZ --format excel

### 定时更新

使用 OpenClaw cron 自动更新：

# 每天早上 9:00 更新数据
schedule:
  cron: "0 9 * * *"
  task: "python scripts/update_data.py --daily"

### 批量处理

# 批量导出多只股票
python scripts/batch_export.py --stocks stocks.txt --output ./data/

### ⚠️ 注意事项

数据延迟：每日更新，T+1 数据
存储空间：需要约 5GB 存储空间
网络要求：需要访问 GitHub 和 DoltHub
Tushare Token：实时更新需要 token

### 📊 数据质量

✅ 多源验证：交叉验证多个数据源
✅ 完整性好：包含退市公司数据
✅ 修正错误：自动修正数据异常
✅ 每日更新：自动化 CI/CD 流程

### 📚 相关资源

GitHub：https://github.com/chenditc/investment_data
DoltHub：https://www.dolthub.com/repositories/chenditc/investment_data
原始文档：https://github.com/chenditc/investment_data/blob/master/docs/README-ch.md

### 🤝 贡献

欢迎贡献代码、报告问题或提出建议！

### 📄 许可证

Apache 2.0
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: StanleyChanH
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-04-30T15:42:20.689Z
- Expires at: 2026-05-07T15:42:20.689Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/investment-data)
- [Send to Agent page](https://openagent3.xyz/skills/investment-data/agent)
- [JSON manifest](https://openagent3.xyz/skills/investment-data/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/investment-data/agent.md)
- [Download page](https://openagent3.xyz/downloads/investment-data)