name: tv-multi-timeframe
description: >-
Multi-timeframe technical analysis and candlestick pattern recognition via
TradingView MCP (get_multi_timeframe_analysis, advanced_candle_pattern,
consecutive_candles_scan).
TV Multi-Timeframe
Multi-timeframe technical analysis and candlestick pattern recognition via TradingView MCP (get_multi_timeframe_analysis, advanced_candle_pattern, consecutive_candles_scan).
Triggers
Use when the user asks to "multi-timeframe analysis via TV", "TV MTF", "TradingView candlestick patterns", "multi-timeframe TA", "TV 멀티타임프레임", "TV 캔들스틱 패턴", "다중 시간대 분석", "tv-multi-timeframe", or wants MCP-powered cross-timeframe analysis with candlestick pattern detection.
Do NOT use for native TA computation (use tab-technical-analysis). Do NOT use for single-timeframe TA cross-validation (use tab-tradingview-ta). Do NOT use for Pine Script generation (use pine-script-generator).
Adapter
backend/app/services/tradingview_mcp_adapter.py — TradingViewTAService singleton: ta_service
Workflow
Mode 1: Multi-Timeframe Analysis
- Call
ta_service.get_multi_timeframe(symbol, exchange) - Analyzes across 5m, 15m, 1h, 4h, 1d, 1W timeframes simultaneously
- Identifies timeframe alignment (all bullish, mixed, all bearish)
- Reports trend strength and key levels per timeframe
Mode 2: Candlestick Pattern Scan
- Call
ta_service.get_candlestick_patterns(symbol, exchange, timeframe) - Detects advanced patterns: doji, hammer, engulfing, morning/evening star, three soldiers/crows, etc.
- Reports pattern name, type (bullish/bearish/neutral), reliability score
Mode 3: Consecutive Candles Scan
- Call the
consecutive_candles_scanMCP tool via_call_mcp_tool - Finds stocks with N consecutive up/down candles for momentum detection
- Useful for breakout and breakdown screening
Mode 4: Fibonacci Levels
- Call
ta_service.get_fibonacci(symbol, exchange, timeframe, period) - Auto-calculated retracement and extension levels
- Key support/resistance zones based on Fibonacci ratios
Output Format
Report results in Korean with:
- Timeframe alignment summary (e.g., "3/5 timeframes bullish")
- Candlestick patterns with reliability rating
- Fibonacci levels as a reference table
- Trade setup suggestion based on multi-timeframe confluence