stock-price
Check real-time quotes for A-shares, Hong Kong stocks, ETFs, and indices (latest price, percentage change, trading volume, etc.). Uses the Tencent Quotes API (qt.gtimg.cn); no login or API key required. Triggers when a user says "check stock prices," "real-time quotes," "ETF prices," "stock quotes," or "what is the market index?"
DeepseekModel
官方收录技能
质量 优秀 · 78
v1.0.0
获取
https://deepseekmodel.com/api/download.php?id=openminis-minisskills-stock-price-skill-md&format=skill
下载 .skill
标准格式,含 system_prompt 与 model_config,导入任意 Agent 框架即可使用
.skill 文件中 system_prompt 字段的实际内容。
name stock-price description Check real-time quotes for A-shares, Hong Kong stocks, ETFs, and indices (latest price, percentage change, trading volume, etc.). Uses the Tencent Quotes API (qt.gtimg.cn); no login or API key required. Triggers when a user says "check stock prices," "real-time quotes," "ETF prices," "stock quotes," or "what is the market index?" version 1.0.0 Real-Time Stock, ETF, and Index Quotes Data Sources (by Priority) Priority Data Source Features Preferred Tencent Quotes API (qt.gtimg.cn) Fastest; get all data with a single curl command, no login required Alternative Sina Finance (gu.sina.cn) Homepage displays market indices and the top 6 popular industries Alternative East Money (data.eastmoney.com/bkzj/hy.html) Sector capital flows; desktop user agent required Tencent Quotes API (Preferred) Request Format curl -s "qt.gtimg.cn/q=<list of codes, comma-separated>" Stock Code Format Market Format Example Shanghai A-shares sh + 6-digit code sh600519 (Kweichow Moutai) Shenzhen A-shares sz + 6-digit code sz000001 (Ping An Bank) Hong Kong stocks hk + 5-digit code hk00700 (Tencent Holdings) SSE Composite Index sh000001 SSE Composite Index ChiNext Index sz399006 ChiNext Index Return Format Returned text is separated by ~ : v_ ="1~ ~..." Key field indexes (separated by ~ , starting from 0): 1: Name 3: Latest price 32: Percentage change (%) 6: Trading volume (lots) 7: Trading value (yuan) Example curl -s "qt.gtimg.cn/q=sh000001,sz399006,sh588170,hk00700" Python parsing example: fields = line.split('="')[1].rstrip('";').split('~') name = fields[1] price = fields[3] change_pct = fields[32] Sina Finance (Alternative) navigate: https://gu.sina.cn get_readable: Extract market indices, popular industries, and the number of stocks up and down Reporting Format SSE Composite Index: 4068.57 (-0.73%) ChiNext Index: 2140.32 (+0.85%) Notes Updates in real time during trading hours; after hours, the closing price is displayed The free version for Hong Kong stocks has a 15-minute delay A single query should include no more than 20 codes The returned encoding is GBK
Agent 识别该技能的关键词,点击任意一个即可复制。
该技能未提供触发词。
下载的 .skill 包内含以下字段。
| 字段 | 说明 |
|---|---|
| format | 格式标识(skill/v1) |
| skill_id | 技能唯一 ID |
| name | 技能名称 |
| version | 版本号 |
| description | 技能描述 |
| category | 所属分类(数组) |
| trigger_words | 触发词列表 |
| tags | 标签列表 |
| source | 来源标识 |
| source_url | 来源链接(本页地址) |
| exported_at | 导出时间(每次下载生成) |
| system_prompt | 系统提示词正文 |
| model_config | 模型参数:provider / model / temperature / max_tokens / top_p |
| examples | 示例 |
| install_guide | 各平台导入说明(Coze / Dify / Claude / 自定义框架) |