# Send Trading Analyzer to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "drunk-trading-analyzer",
    "name": "Trading Analyzer",
    "source": "tencent",
    "type": "skill",
    "category": "数据分析",
    "sourceUrl": "https://clawhub.ai/baoduy/drunk-trading-analyzer",
    "canonicalUrl": "https://clawhub.ai/baoduy/drunk-trading-analyzer",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/drunk-trading-analyzer",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=drunk-trading-analyzer",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "drunk-trading-analyzer",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T09:33:06.142Z",
      "expiresAt": "2026-05-07T09:33:06.142Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=drunk-trading-analyzer",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=drunk-trading-analyzer",
        "contentDisposition": "attachment; filename=\"drunk-trading-analyzer-0.0.6.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "drunk-trading-analyzer"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/drunk-trading-analyzer"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/drunk-trading-analyzer",
    "downloadUrl": "https://openagent3.xyz/downloads/drunk-trading-analyzer",
    "agentUrl": "https://openagent3.xyz/skills/drunk-trading-analyzer/agent",
    "manifestUrl": "https://openagent3.xyz/skills/drunk-trading-analyzer/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/drunk-trading-analyzer/agent.md"
  }
}
```
## Documentation

### Trading Analyzer Skill

Multi-source market analysis combining cryptocurrency and stock data with AI-powered insights.

### Analyze Cryptocurrency

# 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

### Analyze Stock

# 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. Quick Crypto Analysis

# 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

### 2. Fundamental Stock Research

# 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

### 3. Market Screening

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

### 4. Consolidated Report

Combine multiple data sources for comprehensive analysis - use scripting or agent calls to orchestrate these tool calls together.

### TradingView (Crypto Analysis)

ToolPurposecoin_analysisDetailed analysis on specific coin (indicators, metrics)smart_volume_scannerVolume + RSI + price change combination scanvolume_breakout_scannerCoins with volume and price breakoutstop_gainersBest performing coins (Bollinger Band filtered)top_losersWorst performing coinsadvanced_candle_patternProgressive candle size patterns across timeframesconsecutive_candles_scanGrowing/shrinking consecutive candles

### Alpha Vantage (Stock Data)

ToolPurposeget_ticker_infoCompany fundamentals, metrics, governanceget_price_historyHistorical OHLC data for trend analysisticker_earningEarnings data and upcoming dates

### Yahoo Finance (Market Intelligence)

ToolPurposeget_ticker_newsRecent news articles with sentimentget-top-entitiesTop stocks/ETFs by sector

### Exchange Options (Crypto)

BINANCE (default highest liquidity)
KUCOIN
BYBIT

### Timeframes (Crypto)

5m, 15m, 1h, 4h, 1D (default), 1W, 1M

### Output Formats

markdown (default) - Formatted report
json - Raw data structure

### Asset Detection

Automatically routes to correct analyzer:

Crypto: Ends with USDT, USDC, BTC, ETH, BNB OR common crypto pairs (BTC, ETH, SOL, ADA)
Stock: 1-5 letter tickers (AAPL, TSLA, MSFT)
Fallback: Attempts stock lookup first, then crypto

### Crypto Report Structure

# 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

### Stock Report Structure

# 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

### Error Handling

Graceful fallback if MCP server unavailable
Partial reports if single data source fails
Caching support for repeated queries
Clear error messages with retry guidance

### Performance Notes

Cache queries within 5-minute windows
Parallel data fetching for multi-source reports
Typical analysis time: 2-5 seconds per asset

### Troubleshooting

# 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__)"

### Extensions

To add new data sources:

Create new analyzer in analyzers/ directory
Implement analyze(symbol, options) interface
Register in routing logic
Update tools reference

### License

MIT
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: baoduy
- Version: 0.0.6
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-04-30T09:33:06.142Z
- Expires at: 2026-05-07T09:33:06.142Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/drunk-trading-analyzer)
- [Send to Agent page](https://openagent3.xyz/skills/drunk-trading-analyzer/agent)
- [JSON manifest](https://openagent3.xyz/skills/drunk-trading-analyzer/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/drunk-trading-analyzer/agent.md)
- [Download page](https://openagent3.xyz/downloads/drunk-trading-analyzer)