sentiment-shift
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
ChineseSentiment Shift Detector
情绪转变检测器
Identify stocks where blogger sentiment has changed significantly.
识别博主情绪发生显著变化的股票。
Triggers
触发词
- "情绪变化最大的股票"
- "谁转向了"
- "sentiment shift"
- "who changed their mind"
- "态度转变"
/sentiment-shift
- "情绪变化最大的股票"
- "谁转向了"
- "sentiment shift"
- "who changed their mind"
- "态度转变"
/sentiment-shift
Instructions
操作说明
When the user wants to find sentiment shifts, follow these steps:
-
Get Multi-Day Summaries Callfor recent dates (today, yesterday, a few days ago) to compare sentiment over time.
get_daily_summary -
Identify Changed Tickers Compare the summaries to find:
- Stocks that moved from bullish to bearish
- Stocks that moved from bearish to bullish
- Stocks with increased/decreased mentions
-
Get Detailed Sentiment For tickers with notable changes, callto understand who changed their view.
get_ticker_sentiment -
Search for Explanations Callfor changed tickers to find the reasoning behind sentiment shifts.
search_viewpoints -
Present Results Format the output as:
## 情绪转变追踪 🔄 ### 转向看涨 📈 #### TICKER1 - **变化**: 看跌 → 看涨 - **时间**: X天前开始转变 - **关键转变博主**: 博主A, 博主B - **转变原因**: [摘要为什么改变看法] - **代表观点**: "[具体观点]" — 博主A ### 转向看跌 📉 #### TICKER2 - **变化**: 看涨 → 看跌 - **时间**: X天前开始转变 - **关键转变博主**: 博主C - **转变原因**: [摘要为什么改变看法] - **代表观点**: "[具体观点]" — 博主C ### 热度变化 🌡️ | 股票 | 之前提及 | 现在提及 | 变化 | |------|----------|----------|------| | XXX | 5 | 25 | ⬆️ +400% | | YYY | 20 | 3 | ⬇️ -85% | ### 分析 [总结市场情绪变化的整体趋势]
当用户想要查找情绪转变时,请遵循以下步骤:
-
获取多日汇总数据 调用获取近期日期(今日、昨日、几天前)的数据,以对比不同时间的情绪变化。
get_daily_summary -
识别情绪变化的股票代码 对比汇总数据,找出:
- 从看涨转为看跌的股票
- 从看跌转为看涨的股票
- 提及量增加/减少的股票
-
获取详细情绪数据 对于有显著变化的股票代码,调用以了解哪些博主改变了观点。
get_ticker_sentiment -
搜索转变原因 对情绪变化的股票代码调用,找出情绪转变背后的原因。
search_viewpoints -
呈现结果 按以下格式输出结果:
## 情绪转变追踪 🔄 ### 转向看涨 📈 #### TICKER1 - **变化**: 看跌 → 看涨 - **时间**: X天前开始转变 - **关键转变博主**: 博主A, 博主B - **转变原因**: [摘要为什么改变看法] - **代表观点**: "[具体观点]" — 博主A ### 转向看跌 📉 #### TICKER2 - **变化**: 看涨 → 看跌 - **时间**: X天前开始转变 - **关键转变博主**: 博主C - **转变原因**: [摘要为什么改变看法] - **代表观点**: "[具体观点]" — 博主C ### 热度变化 🌡️ | 股票 | 之前提及 | 现在提及 | 变化 | |------|----------|----------|------| | XXX | 5 | 25 | ⬆️ +400% | | YYY | 20 | 3 | ⬇️ -85% | ### 分析 [总结市场情绪变化的整体趋势]
Tool Sequence
工具调用流程
- +
get_daily_summary(date=today)+get_daily_summary(date=yesterday)→ Compare over timeget_daily_summary(date=3_days_ago) - Identify tickers with changed sentiment
- → For each changed ticker
get_ticker_sentiment(changed_ticker) - → Find reasoning
search_viewpoints(changed_ticker) - Compile shift analysis
- +
get_daily_summary(date=today)+get_daily_summary(date=yesterday)→ 跨时间对比get_daily_summary(date=3_days_ago) - 识别情绪变化的股票代码
- → 针对每个情绪变化的股票代码
get_ticker_sentiment(changed_ticker) - → 查找转变原因
search_viewpoints(changed_ticker) - 整理情绪转变分析报告
Notes
注意事项
- Sentiment shifts can be leading indicators
- A blogger changing their view is often more significant than new bloggers joining
- Track both direction changes and intensity changes
- Include context for why shifts happened (news, earnings, etc.)
- 情绪转变可作为领先指标
- 博主改变观点通常比新博主加入更有意义
- 同时追踪情绪方向变化和强度变化
- 需包含情绪转变的背景原因(新闻、财报等)