一键导入
stock-select
智能选股技能,类似同花顺问财。使用自然语言查询符合条件的股票,如"涨停的股票"、"市盈率小于20"、"连续3天上涨"等。触发词:选股、问财、股票查询、动态选股、筛选股票、符合条件的股票。
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
智能选股技能,类似同花顺问财。使用自然语言查询符合条件的股票,如"涨停的股票"、"市盈率小于20"、"连续3天上涨"等。触发词:选股、问财、股票查询、动态选股、筛选股票、符合条件的股票。
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Professional trading strategy guides for prediction markets and crypto. Risk management, trend analysis, and best practices.
Manage Steven's A-share shadow trading dashboard. Triggers on: (1) "影子盘看板", "交易看板", "持仓状况", (2) placing or updating a simulated trade (buy/sell/止损/止盈), (3) updating positions or equity data, (4) reviewing trade history or P&L. Reads and writes to the shadow trading system under trade/.
Log every trade with full context (thesis, entry, exit, PnL, emotion, lesson). Generate weekly and monthly performance reports. Identify patterns in wins/losses. Use when recording a new trade, reviewing performance, running a weekly debrief, or updating the trading strategy based on results.
Institutional-grade options trading system with 10 strategy templates, interactive strategy router, IV analyzer, and portfolio manager. Get real-time trade recommendations based on market conditions.
Trading strategy development sandbox. User describes trading intent in natural language, agent writes a Python backtest strategy and returns results.
专业级智能股票监控预警系统 V2.1。支持收盘日报自动生成、反爬虫优化(Session级UA、多数据源冗余)、成本百分比预警、均线金叉死叉、RSI超买超卖、成交量异动监控、智能错误提醒。符合中国投资者习惯(红涨绿跌)。Use when user needs stock market monitoring, price alerts, daily reports, or automated trading notifications for A-shares and ETFs.
| name | stock-select |
| description | 智能选股技能,类似同花顺问财。使用自然语言查询符合条件的股票,如"涨停的股票"、"市盈率小于20"、"连续3天上涨"等。触发词:选股、问财、股票查询、动态选股、筛选股票、符合条件的股票。 |
| author | hailong787@163.com |
| license | MIT |
| version | 1.5.0 |
基于自然语言的智能选股工具,类似同花顺问财。
本技能依赖以下外部 API 服务:
| 服务 | 地址 | 用途 | 认证 |
|---|---|---|---|
| Stockboot API | https://stockboot.jiuma.cn/api | 股票行情查询、动态选股 | 无需认证(公开接口) |
本技能的 API 服务可自行部署。如需自托管,请参考:
STOCKBOOT_API_URL 指向您的服务地址默认 API 地址:https://stockboot.jiuma.cn/api
可通过环境变量自定义:
export STOCKBOOT_API_URL="https://your-server/api"
GET ${STOCKBOOT_API_URL}/quote/{stockCode}curl "${STOCKBOOT_API_URL}/quote/600519"
POST ${STOCKBOOT_API_URL}/quote/batch["600519", "000001", "300750"]curl -X POST "${STOCKBOOT_API_URL}/quote/batch" \
-H "Content-Type: application/json" \
-d '["600519", "000001", "300750"]'
POST ${STOCKBOOT_API_URL}/quote/search{"keyword": "xxx"}curl -X POST "${STOCKBOOT_API_URL}/quote/search" \
-H "Content-Type: application/json" \
-d '{"keyword": "茅台"}'
GET ${STOCKBOOT_API_URL}/quote/minute/{stockCode}?tradeDate=xxxcurl "${STOCKBOOT_API_URL}/quote/minute/600519"
GET ${STOCKBOOT_API_URL}/quote/minute/{stockCode}/optimized?tradeDate=xxxGET ${STOCKBOOT_API_URL}/quote/call-auction/{stockCode}?tradeDate=xxxGET ${STOCKBOOT_API_URL}/quote/call-auction/{stockCode}/optimized?tradeDate=xxxGET ${STOCKBOOT_API_URL}/quote/basic-data/{stockCode}curl "${STOCKBOOT_API_URL}/quote/basic-data/600519"
GET ${STOCKBOOT_API_URL}/quote/kline/{stockCode}?interval=D&startDate=xxx&endDate=xxx&appendToday=falseinterval: K线周期 (D=日, W=周, M=月, Q=季, Y=年)startDate: 开始日期endDate: 结束日期appendToday: 是否包含今天curl "${STOCKBOOT_API_URL}/quote/kline/600519?interval=D&appendToday=true"
GET ${STOCKBOOT_API_URL}/quote/kline/{stockCode}/optimized?interval=D&startDate=xxx&endDate=xxx&appendToday=falsePOST ${STOCKBOOT_API_URL}/dynamic-select/execute{"sentence": "选股条件"}curl -X POST "${STOCKBOOT_API_URL}/dynamic-select/execute" \
-H "Content-Type: application/json" \
-d '{"sentence": "涨停"}'
当用户提出选股需求时,将用户的自然语言转换为查询条件,调用 API 并返回结果。
从日志中已知支持的查询模式:
涨跌停类:
涨停 - 今日涨停的股票跌停 - 今日跌停的股票涨幅大于8%未涨停非ST - 涨幅大但未涨停非一字涨停非ST - 非一字板涨停涨幅类:
涨幅大于5%涨幅小于-3%连续3天上涨前5日平均涨幅大于20%财务指标:
市盈率小于20市净率小于2流通市值小于50亿组合条件 (用分号分隔):
涨幅大于5%;非ST前5日平均涨幅大于20%;前10日涨停次数大于1连续5日净买入且主力净流入占比大于10%非ST排除条件:
非ST - 排除ST股票非新股 - 排除新股curl -X POST "${STOCKBOOT_API_URL}/dynamic-select/execute" \
-H "Content-Type: application/json" \
-d '{"sentence": "涨停"}'
API 返回 JSON,包含:
sentence: 查询条件stocks: 股票列表(code, name, marketType)totalCount: 符合条件的股票数量costTime: 查询耗时(ms)用户: 帮我找今天涨停的股票 助手: 调用接口查询"涨停",返回涨停股票列表
用户: 有没有市盈率低的小盘股? 助手: 调用接口查询"市盈率小于20;流通市值小于50亿"
用户: 最近3天连续上涨的非ST股票 助手: 调用接口查询"连续3天上涨非ST"