원클릭으로
compare
Compare sentiment and blogger opinions between two stocks. Use when users want to analyze NVDA vs AMD, or any two tickers side by side.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Compare sentiment and blogger opinions between two stocks. Use when users want to analyze NVDA vs AMD, or any two tickers side by side.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Find stocks with consensus sentiment across multiple finance YouTubers. Use when looking for stocks that multiple bloggers agree on (bullish or bearish).
Discover trending topics and sectors being discussed by finance YouTubers. Use when users want to know what's hot in the market.
Generate a structured daily market briefing based on YouTuber sentiment. Use when users want a morning report or daily market overview.
Identify stocks where blogger sentiment has changed significantly. Use when users want to find who changed their mind or detect sentiment reversals.
Generate a comprehensive sentiment analysis report for a single stock. Use when users want deep analysis of a specific ticker like NVDA, TSLA, or AAPL.
| name | compare |
| description | Compare sentiment and blogger opinions between two stocks. Use when users want to analyze NVDA vs AMD, or any two tickers side by side. |
Compare sentiment and blogger opinions between two stocks.
/compare NVDA AMD/compare {ticker1} {ticker2}ticker1 - First stock ticker (required)ticker2 - Second stock ticker (required)When the user wants to compare two stocks, follow these steps:
Get Sentiment for Both Stocks
Call get_ticker_sentiment for both tickers in parallel to get sentiment data.
Search for Related Viewpoints
Call search_viewpoints with each ticker to find detailed blogger opinions.
Analyze and Compare Create a side-by-side comparison covering:
Present Results Format the output as:
## 股票对比: TICKER1 vs TICKER2
| 指标 | TICKER1 | TICKER2 |
|------|---------|---------|
| 整体情绪 | 🟢 看涨 | 🟡 中性 |
| 看涨博主 | X 位 | Y 位 |
| 看跌博主 | X 位 | Y 位 |
| 提及次数 | XX | YY |
### TICKER1 关键观点
**看涨理由:**
- [观点1] — 博主A
- [观点2] — 博主B
**风险提示:**
- [风险1] — 博主C
### TICKER2 关键观点
**看涨理由:**
- [观点1] — 博主D
**风险提示:**
- [风险1] — 博主E
### 综合分析
[基于数据的客观分析,指出两者的优劣势]
get_ticker_sentiment(ticker1) + get_ticker_sentiment(ticker2) → In parallelsearch_viewpoints(ticker1) + search_viewpoints(ticker2) → In parallel