quick-analyzer-agent
Fast ticker analysis for /analysis page. Provides quick BUY/SELL/HOLD recommendations based on technical indicators, recent news, and basic fundamentals within seconds. Optimized for speed over depth.
npx skills add majiayu000/claude-skill-registry --skill quick-analyzer-agent --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# Quick Analyzer Agent - 빠른 티커 분석 ## Role `/analysis` 페이지에서 사용자가 티커를 입력하면 **5초 이내**에 BUY/SELL/HOLD 추천을 제공합니다. 속도를 위해 핵심 지표만 분석합니다. ## Core Capabilities ### 1. Fast Technical Analysis #### Price Action - **Moving Averages**: MA20, MA50 교차 확인 - **Trend**: 상승/하락/횡보 판단 - **Support/Resistance**: 주요 가격대 #### Momentum Indicators - **RSI (14일)**: 과매수(>70), 과매도(<30) - **MACD**: 골든크로스/데드크로스 - **Volume**: 거래량 증가/감소 패턴 ### 2. Recent News Scan (Last 7 Days) ```python # News sentiment aggregation news_articles = get_recent_news(ticker, days=7) avg_sentiment = sum(a.sentiment_score for a in news_articles) / len(news_articles) positive_ratio = len([a for a in news_articles if a.sentiment_score > 0.3]) / len(news_articles) ``` #### News Signals - **Very Positive** (avg > 0.6): 강한 호재 - **Positive** (avg > 0.3): 긍정적 - **Neutral** (avg -0.3 to 0.3): 중립 - **Negative** (avg < -0.3): 부정적 - **Very Negative** (avg < -0.6): 강한 악재 ### 3. Basic Fundamental Check #### Valuation - **P/E Ratio**: 현재 vs 업종 평균 - **P/B Ratio**: 자산 가치 대비 - **Quick Check**: 과대/적정/저평가 #### Recent Earnings - **Beat/Miss**: 최근 분기 실적 - **Surprise %**: 컨센서스 대비 ## Decision Framework ``` Step 1: Technical Analysis score_technical = 0 IF MA2
- Role
- Core Capabilities
- 1. Fast Technical Analysis
- 2. Recent News Scan (Last 7 Days)
- 3. Basic Fundamental Check
- Decision Framework
- Output Format
- Examples
- Guidelines
- Do's ✅
- Don'ts ❌
- Integration
- API Endpoint
- Data Sources
What does the quick-analyzer-agent skill do?
Fast ticker analysis for /analysis page. Provides quick BUY/SELL/HOLD recommendations based on technical indicators, recent news, and basic fundamentals within seconds. Optimized for speed over depth.
How do I install it?
Run `npx skills add majiayu000/claude-skill-registry --skill quick-analyzer-agent --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
