بنقرة واحدة
chart-analysis
// 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.
// 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.
Post-trade review — pull losing trades from the strategy tester, screenshot each entry in context, and cluster common failure patterns. Use when the user asks "why am I losing?", "review my losses", or "what's wrong with my strategy?".
Daily morning scan — load saved morning layout, screenshot watchlist symbols, and summarize overnight pre-market state. Use when the user says "good morning", "morning prep", or asks for a pre-open briefing.
Cross-asset reasoning across a multi-pane layout — set a 2x2 grid, assign correlated symbols to each pane, and identify leader/laggard/divergence. Use when the user asks to "compare indices", "watch the complex", or wants correlated-asset reasoning.
Scan multiple symbols for setups, patterns, or strategy performance. Use when comparing across instruments or screening for opportunities.
Full Pine Script development loop — write code, compile, fix errors, iterate. Use when building a new indicator or strategy in TradingView.
Migrate Pine Script v4 / v5 source to v6 — analyze, apply migration rules, compile-check, iterate until clean. Use when the user hands over an older script or asks to "upgrade to v6" / "port this Pine code".
| 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. |
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.
chart_set_symbol — switch to the requested symbolchart_set_timeframe — set the appropriate timeframeUse chart_manage_indicator to add studies. Common names (must use FULL names):
After adding, use indicator_set_inputs to customize settings (e.g., change EMA length to 200).
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 visibleUse drawing tools to mark up the chart:
draw_shape with horizontal_line for support/resistancedraw_shape with trend_line for trend channels (needs two points)draw_shape with text for annotationscapture_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)Provide the analysis:
If you added indicators the user didn't ask for, remove them:
chart_manage_indicator with action "remove" and the entity_iddraw_clear to remove all drawings if they were temporary