with one click
market-data
提供A股/美股/港股的实时行情、历史K线、指数批量查询、板块排行与成分、资金流向及市场成交额等数据能力,适合市场快照与基础分析。
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
提供A股/美股/港股的实时行情、历史K线、指数批量查询、板块排行与成分、资金流向及市场成交额等数据能力,适合市场快照与基础分析。
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
提供财务指标获取、财报检索与内容访问能力,覆盖A股/美股/港股,适合基本面分析与公司研究。
提供中美宏观数据(GDP、CPI、PMI等)、全球风险指标(VIX、10Y、DXY等)与经济日历事件,适合宏观监控与投研背景信息。
提供财新闻检索、社媒话题抓取(Twitter/Reddit)与文本情绪分析,适合热点追踪与情绪研判。
使用 Tavily 提供网页搜索与新闻检索,支持结果数、主题与时间范围配置,适合信息查找与新闻追踪。
Guide for extracting architectural diagrams, flowcharts, and sequence diagrams into a structured JSON format. Use this skill when you need to transform a visual or textual description of a system architecture or workflow into a clear, structured JSON representation.
用于自动生成 Neptune ACL 申请报文并直接发起申请。支持多环境(BOE, Online-CN, i18n-BD)、多区域选择、源/目标集群指定,并自动处理非 BOE 环境下的 Pre-release 申请。
| name | market-data |
| description | 提供A股/美股/港股的实时行情、历史K线、指数批量查询、板块排行与成分、资金流向及市场成交额等数据能力,适合市场快照与基础分析。 |
Provides real-time quotes, historical K-lines, fund flow, sector data, and market turnover for A-share, HK, and US markets.
# Setup
./setup.sh
source .venv/bin/activate
# Get Quote
python scripts/market_data.py quote 600036
python scripts/market_data.py quote 上证指数
# Get Bulk Indices
python scripts/market_data.py indices CN
# Get K-Line (Limit 20)
python scripts/market_data.py kline 600036 --period daily --limit 20
# Get Sector Ranking
python scripts/market_data.py rank --type industry --limit 10
# Get Sector Constituents
python scripts/market_data.py constituents "酿酒行业" --limit 10
# Get Market Turnover
python scripts/market_data.py turnover
from scripts.market_data import MarketDataSkill
skill = MarketDataSkill()
quote = skill.get_quote("600036")
kline = skill.get_kline("600036", limit=100)