Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
chjm-ai avatar

Stock Daily Analysis

  • 1.3k installs
  • 227 repo stars
  • Updated February 4, 2026
  • chjm-ai/stock-daily-analysis-skill

stock-daily-analysis is an agent skill for LLM-driven daily stock technical analysis across A, HK, and US markets.

About

The stock-daily-analysis skill provides LLM-driven daily stock analysis for A-share, Hong Kong, and US markets with technical indicators and AI decision advice. Technical analysis covers MA5 MA10 MA20, MACD, RSI, bias rates, trend status, and buy signal scoring. Python API analyze_stock and analyze_stocks batch functions return technical_indicators and ai_analysis with sentiment score, operation advice, confidence, target price, and stop loss. Configuration uses config.json with DeepSeek or OpenAI provider keys and optional market-data skill integration for stable ETF data. Supports dashboard generation and market recap reports. Use when users ask for stock analysis, daily technical analysis, or A/H/US equity decision support.

  • Multi-market: A-share, Hong Kong, and US stocks.
  • Technical: MA, MACD, RSI, bias, trend, buy signal score.
  • AI analysis: sentiment, operation advice, target, stop loss.
  • Python API: analyze_stock and analyze_stocks batch.
  • Optional market-data skill integration for ETF stability.

Stock Daily Analysis by the numbers

  • 1,321 all-time installs (skills.sh)
  • +12 installs in the week ending Aug 4, 2026 (Skillselion tracking)
  • Ranked #113 of 1,106 Finance & Trading skills by installs in the Skillselion catalog
  • Security screen: HIGH risk (skills.sh audit)
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
At a glance

stock-daily-analysis capabilities & compatibility

Capabilities
multi market stock analysis · technical indicator calculation · llm decision advice generation · batch analyze_stocks api
Use cases
research · data analysis
Pricing
Bring your own API key
From the docs

What stock-daily-analysis says it does

LLM驱动的每日股票分析系统。支持A股/港股/美股自选股智能分析
SKILL.md
技术面分析(均线、MACD、RSI、乖离率)、趋势判断、买入信号评分
SKILL.md
npx skills add https://github.com/chjm-ai/stock-daily-analysis-skill --skill stock-daily-analysis

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs1.3k
repo stars227
Security audit1 / 3 scanners passed
Last updatedFebruary 4, 2026
Repositorychjm-ai/stock-daily-analysis-skill

How do I analyze a stock daily with technical indicators and AI trading advice?

Run LLM-driven daily stock technical analysis for A-share, HK, and US markets with AI decision dashboards.

Who is it for?

Investors and analysts running daily technical analysis on A-share, HK, or US equities.

Skip if: Skip for live trading execution or portfolio management without analysis research needs.

When should I use this skill?

User asks stock analysis, daily technical analysis, or A/H/US market dashboard.

What you get

Technical indicator scores plus AI operation advice, confidence, target price, and stop loss.

  • ai_analysis JSON
  • decision dashboard
  • market recap report

By the numbers

  • Computes MA5, MA10, and MA20 moving averages alongside MACD and RSI
  • Supports three markets: A-share, Hong Kong, and US equities

Files

SKILL.mdMarkdownGitHub ↗

Daily Stock Analysis for OpenClaw

基于 LLM 的 A/H/美股智能分析 Skill,提供技术面分析和 AI 决策建议。

功能特性

1. 多市场支持 - A股、港股、美股 2. 技术面分析 - MA5/10/20、MACD、RSI、乖离率 3. 趋势交易 - 多头排列判断、买入信号评分 4. AI 决策 - DeepSeek/Gemini/OpenAI 深度分析 5. 数据源集成 - 可选 market-data skill

快速使用

from scripts.analyzer import analyze_stock, analyze_stocks

# 单只分析
result = analyze_stock('600519')
print(result['ai_analysis']['operation_advice'])

# 批量分析
results = analyze_stocks(['600362', '601318', '159892'])

配置

1. 复制配置模板:

cp config.example.json config.json

2. 填入 DeepSeek API Key:

{
  "ai": {
    "provider": "openai",
    "api_key": "sk-your-deepseek-key",
    "base_url": "https://api.deepseek.com/v1",
    "model": "deepseek-chat"
  }
}

3. (可选) 启用 market-data skill 数据源:

{
  "data": {
    "use_market_data_skill": true,
    "market_data_skill_path": "../market-data"
  }
}

返回数据

{
    'code': '600519',
    'name': '贵州茅台',
    'technical_indicators': {
        'trend_status': '强势多头',
        'ma5': 1500.0, 'ma10': 1480.0, 'ma20': 1450.0,
        'bias_ma5': 2.5,
        'macd_status': '金叉',
        'rsi_status': '强势买入',
        'buy_signal': '买入',
        'signal_score': 75
    },
    'ai_analysis': {
        'sentiment_score': 75,
        'operation_advice': '买入',
        'confidence_level': '高',
        'target_price': '1550',
        'stop_loss': '1420'
    }
}

项目信息

  • 开源协议: MIT
  • 项目地址: https://github.com/yourusername/stock-daily-analysis
  • 原项目: https://github.com/ZhuLinsen/daily_stock_analysis

---

⚠️ 免责声明: 本项目仅供学习研究,不构成投资建议。股市有风险,投资需谨慎。

Related skills

How it compares

Use stock-daily-analysis when you want opinionated daily LLM reports on top of indicator math instead of raw market-data APIs alone.

FAQ

Which markets are supported?

A-share, Hong Kong, and US stock markets.

What technical indicators are included?

MA5/10/20, MACD, RSI, bias rates, trend status, and buy signal scoring.

Is stock-daily-analysis safe to install?

Review the Security Audits panel on this page before installing in production.

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.