Multi-source trading analyzer (`/drunk-trading-analyzer`) combining crypto data (TradingView), stock data (Alpha Vantage), and market intelligence (Yahoo Finance) into unified analysis reports with price trends, technical indicators, and sentiment analysis.
数据来源:ClawHub。 在 ClawSkills 查看
选择你使用的 Agent
方法一:命令行安装(推荐)
推荐(无需提前安装 clawhub)
npx clawhub@latest --dir ~/.claude/skills install drunk-trading-analyzer或使用 clawhub CLI(需提前安装)
clawhub --dir ~/.claude/skills install drunk-trading-analyzer⚠️ 需要 Node.js 18+,没有 Node?请使用下方方法二直接下载 ZIP。 安装 Node.js →
方法二:手动下载安装(无需 Node)
下载 ZIP,解压后将文件夹放到以下路径,重启 Agent 即可:
安装路径
~/.claude/skills/drunk-trading-analyzer/💡解压后将文件夹放到上方路径,重启 Agent 即可生效
--- name: trading-analyzer description: Multi-source trading analyzer (/drunk-trading-analyzer) combining crypto data (TradingView), stock data (Alpha Vantage), and market intelligence (Yahoo Finance) into unified analysis reports with price trends, technical indicators, and sentiment analysis. metadata: { "openclaw": { "emoji": "📈", "os": ["darwin", "linux", "win32"], "mcp_servers": ["tradingview-mcp", "alphavantage", "yahoo-finance-server"], "description": "Uses MCP (Model Context Protocol) tools auto-discovered by mcporter for seamless integration with TradingView, Alpha Vantage, and Yahoo Finance APIs", }, } ---
Multi-source market analysis combining cryptocurrency and stock data with AI-powered insights.
# List available TradingView tools
mcporter list tradingview-mcp
# Analyze a specific coin
mcporter call tradingview-mcp.coin_analysis symbol=BTCUSDT exchange=BINANCE timeframe=15m
# Find bullish coins
mcporter call tradingview-mcp.top_gainers exchange=BINANCE timeframe=4h limit=25
# Detect volume breakouts
mcporter call tradingview-mcp.volume_breakout_scanner exchange=KUCOIN timeframe=15m volume_multiplier=2.0
# List available Alpha Vantage and Yahoo Finance tools
mcporter list alphavantage
mcporter list yahoo-finance-server
# Get company fundamentals
mcporter call alphavantage.get_ticker_info symbol=AAPL
# Fetch latest news
mcporter call yahoo-finance-server.get_ticker_news symbol=AAPL count=10
# Get stock price history
mcporter call alphavantage.get_price_history symbol=AAPL period=1y interval=1d
# Get earnings data
mcporter call alphavantage.ticker_earning symbol=AAPL period=quarterly
# 1. Get immediate technical overview
mcporter call tradingview-mcp.coin_analysis symbol=BTCUSDT
# 2. Identify breakout opportunities
mcporter call tradingview-mcp.smart_volume_scanner \
exchange=BINANCE min_volume_ratio=2.0 min_price_change=2.0
# 3. Find bullish signals
mcporter call tradingview-mcp.top_gainers exchange=BINANCE timeframe=4h
# 1. Get company metrics
mcporter call alphavantage.get_ticker_info symbol=TSLA
# 2. Get sentiment from latest news
mcporter call yahoo-finance-server.get_ticker_news symbol=TSLA count=5
# 3. Confirm trend with historical data
mcporter call alphavantage.get_price_history symbol=TSLA period=1y interval=1d
Use crypto screeners to identify opportunities:
# Top performers
mcporter call tradingview-mcp.top_gainers exchange=BINANCE timeframe=1h limit=50
# Volume + momentum
mcporter call tradingview-mcp.smart_volume_scanner \
exchange=KUCOIN min_volume_ratio=3.0 rsi_range=oversold
# Top stock sectors
mcporter call yahoo-finance-server.get_top_entities \
entity_type=performing_companies sector=technology count=10
Combine multiple data sources for comprehensive analysis - use scripting or agent calls to orchestrate these tool calls together.
| Tool | Purpose | | -------------------------- | -------------------------------------------------------- | | coin_analysis | Detailed analysis on specific coin (indicators, metrics) | | smart_volume_scanner | Volume + RSI + price change combination scan | | volume_breakout_scanner | Coins with volume and price breakouts | | top_gainers | Best performing coins (Bollinger Band filtered) | | top_losers | Worst performing coins | | advanced_candle_pattern | Progressive candle size patterns across timeframes | | consecutive_candles_scan | Growing/shrinking consecutive candles |
| Tool | Purpose | | ------------------- | ----------------------------------------- | | get_ticker_info | Company fundamentals, metrics, governance | | get_price_history | Historical OHLC data for trend analysis | | ticker_earning | Earnings data and upcoming dates |
| Tool | Purpose | | ------------------ | ----------------------------------- | | get_ticker_news | Recent news articles with sentiment | | get-top-entities | Top stocks/ETFs by sector |
BINANCE (default highest liquidity)KUCOINBYBIT5m, 15m, 1h, 4h, 1D (default), 1W, 1Mmarkdown (default) - Formatted reportjson - Raw data structureAutomatically routes to correct analyzer:
# Trading Analysis: BTCUSDT
## Price Overview
Current: $45,200 (-2.3%) | 24h High: $46,100 | Low: $44,800
Volume: $28.5B | Change: -$1,050
## Technical Analysis (1D)
Trend: Bearish | RSI: 35 (Oversold) | MACD: Negative
Bollinger Bands: Below MA | Support: $44,200 | Resistance: $46,500
## Market Data
Exchange: BINANCE | Sentiment: Neutral-Bearish
## Recommendation
Signal: HOLD | Risk: Moderate
# Trading Analysis: AAPL
## Price Overview
Current: $278.12 (+0.80%) | Open: $277.12 | Volume: 50.4M
52-week High: $305.25 | Low: $201.50
## Company Fundamentals
P/E Ratio: 28.5 | Market Cap: $2.8T | Dividend: 0.92%
Revenue Growth: 2.3% | Profit Margin: 28.1%
## Latest News (5 articles)
1. "Apple announces AI features" - CNBC (2h ago) [Positive]
2. "Q1 earnings beat estimates" - Reuters (1d ago) [Positive]
## Recommendation
Outlook: BULLISH | Target: $295 | Risk: Low
# Verify MCP servers running
echo "Check .vscode/mcp.json configuration"
# Debug API keys
echo "Ensure Alpha Vantage API key is set"
# Test connectivity
python3 -c "import requests; print(requests.__version__)"
To add new data sources:
analyzers/ directoryanalyze(symbol, options) interfaceMIT
安装 Trading Analyzer 后,可以对 AI 说这些话来触发它
Help me get started with Trading Analyzer
Explains what Trading Analyzer does, walks through the setup, and runs a quick demo based on your current project
Use Trading Analyzer to multi-source trading analyzer (`/drunk-trading-analyzer`) combining...
Invokes Trading Analyzer with the right parameters and returns the result directly in the conversation
What can I do with Trading Analyzer in my finance & investment workflow?
Lists the top use cases for Trading Analyzer, with example commands for each scenario
将技能文件夹放到 ~/.claude/skills/drunk-trading-analyzer/ 目录(个人级,所有项目可用),或 .claude/skills/drunk-trading-analyzer/(项目级)。重启 AI 客户端后,用 /drunk-trading-analyzer 主动调用,或让 AI 根据上下文自动发现并使用。
Trading Analyzer 支持 Claude、Cursor、OpenClaw,可与这些 AI 平台无缝集成,扩展其能力。
Trading Analyzer 可免费安装使用。请查阅仓库了解许可证信息。
Multi-source trading analyzer (`/drunk-trading-analyzer`) combining crypto data (TradingView), stock data (Alpha Vantage), and market intelligence (Yahoo Finance) into unified analysis reports with price trends, technical indicators, and sentiment analysis.
Trading Analyzer 属于「Finance & Investment」分类,该分类的技能帮助 AI 智能体在此领域执行专业任务。
Automate my finance & investment tasks using Trading Analyzer
Identifies repetitive steps in your workflow and sets up Trading Analyzer to handle them automatically