From agi-super-team
Fetches real-time stock data (A-share/HK/US) from multiple sources, runs technical/fundamental/sentiment analysis, and outputs an AI decision dashboard with entry/stop/target prices.
How this skill is triggered — by the user, by Claude, or both
Slash command
/agi-super-team:llm-stock-analyzerThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
> 版本: 1.0 | 来源: https://github.com/ZhuLinsen/daily_stock_analysis | MIT License
版本: 1.0 | 来源: https://github.com/ZhuLinsen/daily_stock_analysis | MIT License 适配: CQO Simons · 用于 A股/港股/美股 LLM 驱动分析
stock analysis, 个股分析, A股分析, 港股分析, 美股分析, daily analysis, 决策仪表盘
数据采集 → 多维分析 → AI决策仪表盘 → 多渠道推送
| 数据类型 | 来源 (优先级) | 用途 |
|---|---|---|
| 实时行情 | AkShare → Tushare → Pytdx → Baostock | OHLCV + 技术指标 |
| 美股行情 | YFinance | OHLCV (复权一致) |
| 新闻搜索 | Tavily → SerpAPI → Bocha → Brave | 舆情情报 |
| 社交情绪 | Stock Sentiment API (Reddit/X) | 美股情绪 |
| 基本面 | AkShare (估值/成长/盈利/机构/资金流/龙虎榜) | 结构化聚合 |
| 筹码分布 | AkShare (可选, 接口不稳定) | A股筹码 |
关键设计: fail-open 降级 — 任一数据源失败不阻塞主流程。
| 维度 | 输出 |
|---|---|
| 技术面 | MA5/10/20 多头排列, 盘中实时MA, 趋势判断 |
| 筹码分布 | 成本分布, 获利盘比例 (A股) |
| 舆情情报 | 新闻时效窗口 (默认3天), 情绪倾向 |
| 实时行情 | 涨跌幅, 振幅, 成交量变化 |
| 基本面 | 估值/成长/盈利/机构持仓/资金流/龙虎榜/板块涨跌 |
## 📊 [股票代码] 决策仪表盘
### 一句话核心结论
[做多/做空/观望] + 置信度
### 精确点位
- 买入价: ¥XX.XX
- 止损价: ¥XX.XX
- 目标价: ¥XX.XX
### 操作检查清单
| 条件 | 状态 |
|------|------|
| MA多头排列 | ✅ 满足 / ⚠️ 注意 / ❌ 不满足 |
| 乖离率 < 5% | ... |
| 成交量放大 | ... |
| 新闻无重大利空 | ... |
| 规则 | 实现 |
|---|---|
| 严禁追高 | 乖离率 > 5% (可配) → 自动提示风险; 强势趋势股放宽 |
| 趋势确认 | MA5 > MA10 > MA20 多头排列 |
| 点位精确 | 买入/止损/目标 三价齐出 |
| 新闻时效 | 默认3天, 超时新闻降权 |
A股三段式复盘策略:
美股 Regime Strategy:
Agent 问股 (11种内置策略):
设置 AGENT_ARCH=multi 启用:
Technical Agent → Intel Agent → Risk Agent → Strategy Agent → Decision Agent
AGENT_ORCHESTRATOR_MODE: quick / standard / full / strategy# LiteLLM 统一调用
from litellm import completion
response = completion(
model="deepseek/deepseek-chat",
messages=[{"role": "system", "content": ANALYSIS_PROMPT}],
temperature=0.1
)
# 核心参数
STOCK_LIST=600519,hk00700,AAPL,TSLA
BIAS_THRESHOLD=5.0
NEWS_MAX_AGE_DAYS=3
NEWS_STRATEGY_PROFILE=short # ultra_short/short/medium/long
REPORT_TYPE=full # simple/full/brief
AGENT_MAX_STEPS=10
TRADING_DAY_CHECK_ENABLED=true
ENABLE_FUNDAMENTAL_PIPELINE=true
蒸馏日期: 2026-05-01 | 原项目 440 commits, MIT License
npx claudepluginhub aaaaqwq/agi-super-team --plugin agi-super-teamLoads A-share stock analysis with multi-source news aggregation, market sentiment reading, stock scoring (v2.0 symmetric -80 to +100), and raw news browsing. Activated by keywords like '分析A股' or '今日主线'.
Pulls technicals, options positioning, options flow, institutional ownership, and news for a single stock ticker. Use when someone asks for a full read on one ticker.
Generates institutional-grade investment research reports for A-shares, Hong Kong, and US stocks. Produces tear sheets (3-5 pages) or deep dives (≥25 pages) with financial models and DCF valuations.