Agent Skills
› tradesdontlie/tradingview-mcp
› chart-analysis
chart-analysis
GitHub用于执行TradingView图表技术分析。涵盖设置交易对与周期、添加指标、导航关键日期、绘制标注、截图及数据获取,最终提供包含价格、支撑阻力、指标信号及趋势判断的综合分析报告。
Trigger Scenarios
用户请求进行技术分析
用户要求审查或解读图表
Install
npx skills add tradesdontlie/tradingview-mcp --skill chart-analysis -g -y
SKILL.md
Frontmatter
{
"name": "chart-analysis",
"description": "Analyze a chart — set up symbol\/timeframe, add indicators, scroll to key dates, annotate, and screenshot. Use when the user wants technical analysis or chart review."
}
Chart Analysis Workflow
You are performing technical analysis on a TradingView chart.
Step 1: Set Up the Chart
chart_set_symbol— switch to the requested symbolchart_set_timeframe— set the appropriate timeframe- Wait for the chart to load (the tool handles this)
Step 2: Add Indicators
Use chart_manage_indicator to add studies. Common names (must use FULL names):
- "Relative Strength Index" (not RSI)
- "Moving Average Exponential" (not EMA)
- "Moving Average" (for SMA)
- "MACD"
- "Bollinger Bands"
- "Volume"
- "VWAP"
- "Average True Range"
After adding, use indicator_set_inputs to customize settings (e.g., change EMA length to 200).
Step 3: Navigate to Key Areas
chart_scroll_to_date— jump to a specific date of interestchart_set_visible_range— zoom to a specific date windowchart_get_visible_range— check what's currently visible
Step 4: Annotate
Use drawing tools to mark up the chart:
draw_shapewithhorizontal_linefor support/resistancedraw_shapewithtrend_linefor trend channels (needs two points)draw_shapewithtextfor annotations
Step 5: Capture and Analyze
capture_screenshot— screenshot the annotated chartdata_get_ohlcv— pull recent price data for quantitative analysisquote_get— get the current real-time pricesymbol_info— get symbol metadata (exchange, type, session)
Step 6: Report
Provide the analysis:
- Current price and recent range
- Key support/resistance levels identified
- Indicator readings (RSI overbought/oversold, MACD crossover, etc.)
- Overall bias (bullish/bearish/neutral) with reasoning
Cleanup
If you added indicators the user didn't ask for, remove them:
chart_manage_indicatorwith action "remove" and the entity_iddraw_clearto remove all drawings if they were temporary
Version History
- 1d733f5 Current 2026-07-05 14:43


