com um clique
multi-symbol-scan
// Scan multiple symbols for setups, patterns, or strategy performance. Use when comparing across instruments or screening for opportunities.
// Scan multiple symbols for setups, patterns, or strategy performance. Use when comparing across instruments or screening for opportunities.
| name | multi-symbol-scan |
| description | Scan multiple symbols for setups, patterns, or strategy performance. Use when comparing across instruments or screening for opportunities. |
You are scanning multiple symbols for trading setups or comparing performance.
Determine:
watchlist_get)Use batch_run with action get_strategy_results:
symbols: ["ES1!", "NQ1!", "YM1!", "RTY1!"]
timeframes: ["15"]
action: "get_strategy_results"
Use batch_run with action screenshot:
symbols: ["AAPL", "MSFT", "GOOGL", "AMZN"]
timeframes: ["D"]
action: "screenshot"
Loop through symbols manually:
chart_set_symbol + chart_set_timeframechart_manage_indicator — add the studydata_get_ohlcv — pull price datadata_get_indicator — read indicator valuesBuild a comparison table:
| Symbol | Key Metric 1 | Key Metric 2 | Signal |
|---|
Sort by the most relevant metric.
Present findings:
To scan the user's watchlist:
watchlist_get — read all symbolswatchlist_add — add new finds to the watchlistAnalyze 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.
Full Pine Script development loop — write code, compile, fix errors, iterate. Use when building a new indicator or strategy in TradingView.
Practice trading in TradingView replay mode — step through historical bars, take trades, track P&L. Use when the user wants to practice or backtest manually.
Generate a comprehensive strategy performance report — metrics, trade analysis, equity curve, and recommendations. Use after backtesting a Pine Script strategy.