financial-ai-agent

查询金融行情数据(股票、ETF、虚拟货币等)。当用户提到查询行情、价格、股票代码时使用。例如:'查询SH600519'、'茅台今天收盘价'、'0700.HK最近10天'。

Safety Notice

This listing is from the official public ClawHub registry. Review SKILL.md and referenced scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "financial-ai-agent" with this command: npx skills add iyuanfang/financial-ai-agent

Financial AI Agent

查询金融行情数据(股票、ETF、虚拟货币等),直接调用 API 获取。

🚀 快速开始

1. 查询行情

直接告诉我股票代码或名称即可查询:

用户说我执行
查询茅台curl .../quotes/SH600519
查腾讯curl .../quotes/0700.HK
英伟达最近一周curl .../quotes/NVDA?days=7
上证指数curl .../quotes/SH000001

2. 配置自己的 Key

⚠️ 提醒:安装本 skill 后,建议配置自己的 key(默认 key 有并发限制)。

获取 key:访问 https://api.financialagent.cc 注册后获取

用户只需告诉我:

  • 「我的faa的key是 XXX
  • 或「帮我把faa的key换成 XXX

我帮您存到 OpenClaw 配置文件中(推荐):

# 读取现有配置
config=$(cat ~/.openclaw/openclaw.json)

# 添加或更新 faa key(使用 jq)
jq '. + {"custom": {"financial_agent_key": "XXX"}}' ~/.openclaw/openclaw.json > temp.json && mv temp.json ~/.openclaw/openclaw.json

存好后,调用时读取:

# 从 OpenClaw 配置读取 key
FA_KEY=$(jq -r '.custom.financial_agent_key // "K6lncNNrMAahJccarH63P1ImRMIPCqq7"' ~/.openclaw/openclaw.json)

# 调用 API
curl -H "x-api-key: $FA_KEY" "https://api.financialagent.cc/api/v1/quotes/SH600519"

API Key 说明

默认 Key

K6lncNNrMAahJccarH63P1ImRMIPCqq7

(免费体验,有并发限制)

自定义 Key

获取方式: 访问 https://api.financialagent.cc 注册后获取

配置后调用方式:

# 从 OpenClaw 配置读取 key
FA_KEY=$(jq -r '.custom.financial_agent_key // "K6lncNNrMAahJccarH63P1ImRMIPCqq7"' ~/.openclaw/openclaw.json)
curl -H "x-api-key: $FA_KEY" "https://api.financialagent.cc/api/v1/quotes/SH600519"

完整调用示例

获取日线数据(默认最近30天)

FA_KEY=$(jq -r '.custom.financial_agent_key // "K6lncNNrMAahJccarH63P1ImRMIPCqq7"' ~/.openclaw/openclaw.json)
curl -H "x-api-key: $FA_KEY" "https://api.financialagent.cc/api/v1/quotes/SH600519"

获取指定日期范围

FA_KEY=$(jq -r '.custom.financial_agent_key // "K6lncNNrMAahJccarH63P1ImRMIPCqq7"' ~/.openclaw/openclaw.json)
curl -H "x-api-key: $FA_KEY" "https://api.financialagent.cc/api/v1/quotes/0700.HK?start_date=2026-03-01&end_date=2026-03-20"

获取最近N天

FA_KEY=$(jq -r '.custom.financial_agent_key // "K6lncNNrMAahJccarH63P1ImRMIPCqq7"' ~/.openclaw/openclaw.json)
curl -H "x-api-key: $FA_KEY" "https://api.financialagent.cc/api/v1/quotes/AAPL?days=10"

常用股票代码

名称代码
贵州茅台SH600519
腾讯控股0700.HK
阿里巴巴9988.HK
美团3690.HK
苹果AAPL
微软MSFT
英伟达NVDA
特斯拉TSLA
上证指数SH000001
深证成指SZ399001

API 地址

https://api.financialagent.cc/api/v1/quotes/{symbol}

参数说明

参数说明示例
symbol股票代码SH600519, 0700.HK, AAPL
days最近N天days=10
start_date开始日期start_date=2026-03-01
end_date结束日期end_date=2026-03-20

返回字段说明

字段说明示例
composite_score综合得分 (0-100),整体评估,非单日56
composite_level评级 (S/A/B/C/D),股票整体评级S

评级对应关系

等级得分范围说明
S90-100极强
A70-89
B50-69中等
C30-49
D0-29极弱

返回数据解析示例

API 返回的 meta 字段包含综合评分(整体评估,非单日数据):

{
  "meta": {
    "symbol": "00700",
    "name": "腾讯控股",
    "count": 10,
    "composite_score": 49,
    "composite_level": "B"
  }
}

解读:

  • 综合得分 49 分(整体评估)
  • 评级 B(中等),说明该股票整体表现中等

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

General

Zoom

Zoom API integration with managed OAuth. Manage meetings, webinars, recordings, and user profiles. Use this skill when users want to schedule meetings, manag...

Registry SourceRecently Updated
General

Kleinanzeigen.de Helper

Erstelle und verwalte Verkaufsanzeigen speziell auf kleinanzeigen.de. Verwende diesen Skill wenn der Human sagt, er will etwas auf kleinanzeigen.de verkaufen...

Registry SourceRecently Updated
General

Poku

Sends and receives phone calls and messages (like SMS, WhatsApp, Slack), and reserves dedicated phone numbers using the Poku API. Example use cases: calling...

Registry SourceRecently Updated
General

IMAP/SMTP Email - Maddy Fix

Read and send email via IMAP/SMTP. Check for new/unread messages, fetch content, search mailboxes, mark as read/unread, and send emails with attachments. Sup...

Registry SourceRecently Updated