Chart Analysis Workflow
You are performing technical analysis on a TradingView chart.
Power-toolkit shortcut: if you only need a snapshot read (state + quote + indicators + Pine graphics + OHLCV), call
chart_vision_readonce instead of stepping throughchart_get_state→data_get_study_values→data_get_pine_*→data_get_ohlcv.
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