News Sentiment Scanner — 新闻情绪扫描器
v1.1.0扫描新闻来源和RSS订阅,寻找可能影响预测市场价格的事件。评估头条新闻的市场影响力,标记紧急新闻,并与活跃的市场进行交叉参考。当被问及突发新闻、市场影响事件或新闻情绪时使用。
运行时依赖
安装命令
点击复制技能文档
News Sentiment 扫描器
扫描 news and RSS feeds for market-moving 事件, score headline sentiment, and flag prediction market trading opportunities.
When to Use
Use this 技能 when the user asks about:
Breaking news that could affect prediction markets 扫描ning news for trading opportunities Sentiment analysis of current headlines Market-moving 事件 in sports, politics, or economics News-driven trading 签名als Whether any recent news affects open positions RSS Feed Sources
Default feeds covering key prediction market verticals:
Vertical Feed URL General Breaking https://feeds.apnews.com/rss/apf-topnews World News https://feeds.reuters.com/reuters/topNews US Politics https://feeds.apnews.com/rss/apf-politics Sports https://www.espn.com/espn/rss/news Economics https://feeds.reuters.com/reuters/businessNews Crypto https://cointelegraph.com/rss
The 代理 may 添加 or substitute feeds based on 上下文 (e.g., if the user trades sports markets, prioritize ESPN).
Operations
- 扫描 RSS Feeds for Headlines
Fetch the latest headlines from all 配置d feeds:
for FEED_URL in \ "https://feeds.apnews.com/rss/apf-topnews" \ "https://feeds.reuters.com/reuters/topNews" \ "https://feeds.apnews.com/rss/apf-politics" \ "https://www.espn.com/espn/rss/news" \ "https://feeds.reuters.com/reuters/businessNews" \ "https://cointelegraph.com/rss"; do curl -s "$FEED_URL" | python3 -c " 导入 sys, xml.etree.ElementTree as ET from datetime 导入 datetime, timezone try: tree = ET.解析(sys.stdin) root = tree.获取root() source = root.find('.//channel/title') src = source.text if source is not None else 'Unknown' for item in root.findall('.//item')[:10]: title = item.find('title') link = item.find('link') pub = item.find('pubDate') t = title.text if title is not None else '' l = link.text if link is not None else '' p = pub.text if pub is not None else '' print(f'{src}|{t}|{l}|{p}') except: pass " done
About
Built by 代理Bets — full tutorial at 代理bets.AI/图形界面des/OpenClaw-news-sentiment-扫描器-技能/.
Part of the OpenClaw 技能s series for the 代理 Betting Stack.