L.I.N.E.L.I.N.E. Model (London Imbalance, New York Entries)
The L.I.N.E. indicator is designed to highlight London session fair value gaps (FVGs) created between 2:30am and 8:30am EST, and track how NYSE volume reacts to those levels on major US indices (Nasdaq & Dow).
Pattern grafici
KT_Global Bond Yields by CountryGlobal Bond Yields Indicator Summary
The Global Bond Yields by Country indicator, developed for Trading View (Pine Script v5), provides a comprehensive tool for visualizing and analyzing government bond yields across multiple countries and maturities. Below are its key features:
Features
Country Selection: Choose from 20 countries, including the United States, China, Japan, Germany, United Kingdom, and more, to display their respective bond yields.
Multiple Maturities: Supports 18 bond maturities ranging from 1 month to 40 years, allowing users to analyze short-term to long-term yield trends.
Customizable Display:
Toggle visibility for each maturity (1M, 3M, 6M, 1Y, 2Y, 3Y, 4Y, 5Y, 6Y, 7Y, 8Y, 9Y, 10Y, 15Y, 20Y, 25Y, 30Y, 40Y) individually.
Option to show or hide all maturities with a single toggle for streamlined analysis.
10Y-2Y Yield Spread: Plots the difference between 10-year and 2-year bond yields, a key indicator of yield curve dynamics, with an option to enable/disable.
Zero Line Reference: Displays a dashed grey horizontal line at zero for clear visual reference.
Color-Coded Plots: Each maturity is plotted with a distinct color, ranging from lighter shades (short-term) to darker shades (long-term), for easy differentiation.
Country Label: Displays the selected country's name as a large, prominent label on the chart for quick identification.
Error Handling: Alerts users if an invalid country is selected, ensuring robust operation.
Data Integration: Fetches bond yield data from Trading View's database (e.g., TVC:US10Y) with support for ignoring invalid symbols to prevent errors.
This indicator is ideal for traders and analysts monitoring global fixed-income markets, yield curve shapes, and cross-country comparisons.
مؤشر الدعم/المقاومة + أهداف + ملصقات//@version=5
indicator("مؤشر الدعم/المقاومة + أهداف + ملصقات", overlay=true)
// === الإعدادات ===
length = input.int(20, "عدد الشموع لحساب الدعم/المقاومة")
numTargets = input.int(3, "عدد الأهداف", minval=1, maxval=5)
// === حساب الدعم والمقاومة ===
resistance = ta.highest(high, length)
support = ta.lowest(low, length)
dist = resistance - support
// === خطوط الدعم والمقاومة ===
var line resLine = na
var line supLine = na
var label resLbl = na
var label supLbl = na
if barstate.isfirst
resLine := line.new(bar_index, resistance, bar_index+1, resistance, extend=extend.right, color=color.yellow, width=2)
supLine := line.new(bar_index, support, bar_index+1, support, extend=extend.right, color=color.yellow, width=2)
resLbl := label.new(bar_index, resistance, "مقاومة / دخول كول", style=label.style_label_down, color=color.green, textcolor=color.white)
supLbl := label.new(bar_index, support, "دعم / دخول بوت", style=label.style_label_up, color=color.red, textcolor=color.white)
else
line.set_xy1(resLine, bar_index, resistance)
line.set_xy2(resLine, bar_index+1, resistance)
line.set_xy1(supLine, bar_index, support)
line.set_xy2(supLine, bar_index+1, support)
label.set_x(resLbl, bar_index)
label.set_y(resLbl, resistance)
label.set_text(resLbl, "مقاومة / دخول كول " + str.tostring(resistance, format.mintick))
label.set_x(supLbl, bar_index)
label.set_y(supLbl, support)
label.set_text(supLbl, "دعم / دخول بوت " + str.tostring(support, format.mintick))
// === أهداف فوق المقاومة (كول) ===
var line longTargets = array.new_line()
var label longLabels = array.new_label()
if barstate.isfirst
for i = 1 to numTargets
tLine = line.new(bar_index, na, bar_index+1, na, extend=extend.right, color=color.green)
tLbl = label.new(bar_index, na, "", style=label.style_label_left, color=color.green, textcolor=color.white)
array.push(longTargets, tLine)
array.push(longLabels, tLbl)
for i = 0 to array.size(longTargets)-1
t = resistance + dist * (i+1)
l = array.get(longTargets, i)
lb = array.get(longLabels, i)
line.set_xy1(l, bar_index, t)
line.set_xy2(l, bar_index+1, t)
label.set_x(lb, bar_index)
label.set_y(lb, t)
label.set_text(lb, "هدف " + str.tostring(i+1) + " " + str.tostring(t, format.mintick))
// === أهداف تحت الدعم (بوت) ===
var line shortTargets = array.new_line()
var label shortLabels = array.new_label()
if barstate.isfirst
for i = 1 to numTargets
tLine = line.new(bar_index, na, bar_index+1, na, extend=extend.right, color=color.red)
tLbl = label.new(bar_index, na, "", style=label.style_label_left, color=color.red, textcolor=color.white)
array.push(shortTargets, tLine)
array.push(shortLabels, tLbl)
for i = 0 to array.size(shortTargets)-1
t = support - dist * (i+1)
l = array.get(shortTargets, i)
lb = array.get(shortLabels, i)
line.set_xy1(l, bar_index, t)
line.set_xy2(l, bar_index+1, t)
label.set_x(lb, bar_index)
label.set_y(lb, t)
label.set_text(lb, "هدف " + str.tostring(i+1) + " " + str.tostring(t, format.mintick))
ICT Fair Value Gap (FVG) DetectorFair Value Gap (FVG) Indicator
Purpose: Highlights price gaps between three consecutive candles, which signal areas of imbalance that may later act as support or resistance.
How It Works: The script looks for a gap between the high of two bars ago and the low of the current bar (bullish FVG) or the low of two bars ago and the high of the current bar (bearish FVG).
Visuals: These gaps are marked as transparent boxes on the chart, extended to the right until they are "filled" or mitigated by price returning into the gap.
Customization: You can adjust which gaps show, their colors, thresholds, and other display options.
Bionic Candlestick IndikatorBionic Candlestick Indicator for TradingViewOverviewThe Bionic Candlestick Indicator is a customizable Pine Script Version 6 indicator designed for TradingView. It visually highlights key candlestick patterns to identify bullish, bearish, and Doji signals, helping traders analyze market trends and potential reversals. The indicator offers flexible display options, allowing users to plot custom candlesticks or color the chart background based on detected patterns, with optimized performance for large charts.FeaturesCandlestick Patterns:Strong Bullish: Close = High and Close > Open (e.g., strong buying pressure).
Strong Bearish: Close = Low and Close < Open (e.g., strong selling pressure).
Bullish Pullback: Close > Open with a larger High-to-Close distance.
Bearish Pullback: Close < Open with a larger Low-to-Close distance.
Doji Patterns: Bullish Doji, Bearish Doji, Equilibrium Doji (Open = Close with balanced wicks), and Empty Doji (High = Low and Open = Close).
Customizable Colors: Choose colors for each pattern (e.g., yellow/green for bullish, blue/red for bearish, purple for Equilibrium Doji).
Display Options:Plot custom candlesticks over the chart or color the background.
Toggle visibility of specific patterns (bullish, bearish, Doji, Equilibrium).
Performance Optimization: Limits calculations to a user-defined number of bars (max_bars) to reduce lag on large charts.
How to UseAdd the Indicator:Copy the provided Pine Script code into TradingView’s Pine Editor.
Click “Add to Chart” to apply the indicator.
Adjust Visual Order:To ensure the indicator displays correctly, go to the indicator list in TradingView, click the gear icon next to “Bionic Candlestick Indikator,” and select “Visual Order > Bring to Front.”
If “Draw Above Chart” is enabled, hide the chart’s default candlesticks:Go to Chart Settings > Symbol > uncheck “Candles” to avoid overlap.
Configure Settings:Open the indicator’s settings and adjust the following:Bullish/Bearish/Doji/Equilibrium Signals: Enable or disable specific candlestick patterns.
Candlestick Colors: Select colors for each pattern (e.g., yellow, green, blue, red, purple, gray).
Draw Above Chart: Check to plot custom candlesticks; uncheck to color the chart background.
Maximum Bars to Calculate: Set to a value like 2000–5000 to limit calculations and improve performance (set to 0 for no limit).
Save the settings.
Interpretation:Bullish Signals (Yellow/Green): Indicate potential buying opportunities or upward momentum.
Bearish Signals (Blue/Red): Suggest selling pressure or downward momentum.
Doji Patterns (Dark Green/Dark Red/Purple/Gray): Highlight market indecision or potential reversals.
Combine with other indicators (e.g., RSI, moving averages) for confirmation.
Performance Tips:Set “Maximum Bars to Calculate” to a lower value (e.g., 2000) to reduce lag on charts with many bars.
Use TradingView’s Pine Profiler to identify performance bottlenecks.
Test on smaller timeframes or chart ranges to ensure smooth rendering.
NotesVisual Order: If the indicator only appears after clicking the chart, ensure it is set to “Bring to Front” in the visual order, and disable default candlesticks if plotting custom ones.
Performance: Lowering “Maximum Bars to Calculate” reduces computational load but may skip older signals. Adjust based on your chart size and needs.
Compatibility: The indicator uses Pine Script Version 6. If TradingView does not support Version 6, change @version=6 to @version=5 and retest.
Debugging: If issues persist, check for conflicts with other indicators or chart settings, and ensure the chart is refreshed.
This indicator is ideal for traders looking to visually identify key candlestick patterns with customizable options, optimized for performance on TradingView charts. For support or further customization, refer to TradingView’s documentation or community forums.
All in 1 by PKAll in one indicator comprising of stock name and sector, adr %, Market cap, and moving averages
TWS - ATM CE/PE Price Lines + PCRThis indicator is used for PCR & put & call line display on same chart.
TradeStockOnev4Professional Trading Strategy
Specializes in trading uptrends, riding long-term waves
Limits frequent entries
Suitable for medium- to long-term stock trading
ICT Fractal HTF Candles [TFR]ICT HTF Fractal Candles
This indicator overlays higher timeframe (HTF) candles directly on your current chart for better multi-timeframe analysis. It plots up to the last 4 candles from a user-selected timeframe (5m, 15m, 1h, 4h, or 1D) with customizable body and border colors.
Features:
Displays the last 4 higher timeframe candles (open, high, low, close) on your current chart.
Customizable bullish, bearish, and inside close candle colors.
Optional midpoint wick lines (top and bottom) for precision reference, with extendable length for clarity.
Optional candle midpoint line for additional confluence.
Overlay mode allows you to see HTF structure without switching chart timeframes.
Timeframe label display so you always know which HTF is being plotted.
Offset control for shifting candle position.
Use Case:
This tool helps traders apply ICT concepts like PO3, midpoint reference levels, and multi-timeframe confirmation without constantly switching between charts. It’s particularly useful for identifying liquidity zones, midpoint reactions, and higher timeframe market structure while executing on a lower timeframe.
C25_EngulfingEngulfing Testing Script. Best used for 5m MNQ futures. Can work on others with tweaks to parameters
TradeIQ 3.31 • Smart Market Direction [JA]TradeIQ is designed to guide traders with predictive arrows that highlight potential market peaks and reversal zones. It also provides entry point guidance along with suggested TP/SL zones, giving you a practical framework for trade planning.
✅ Key Features:
• Predictive arrows for possible turning points
• Visual guide for entry opportunities
• Suggested TP/SL zones for trade management
• Scalping signals to capture quick, short-term opportunities
• Works across Forex, Gold, Crypto, and Indices
• Fully customizable to match your trading style
Built from years of trading experience, TradeIQ gives traders a clear visual roadmap to support decision-making — not rigid signals.
👉 Perfect for traders who want guidance, structure, and clarity in the markets.
HTF Candles HTF Candles
Features
• 1-minute, 5-minute, 1-hour, 4-hour, and previous-day daily candles
• Visualizes the remaining time and number of candles from the lower timeframe that form the next higher-timeframe candle.”
•
TradeIQ 3.31 • Smart Market Direction [KO]TradeIQ is designed to guide traders with predictive arrows that highlight potential market peaks and reversal zones. It also provides entry point guidance along with suggested TP/SL zones, giving you a practical framework for trade planning.
✅ Key Features:
• Predictive arrows for possible turning points
• Visual guide for entry opportunities
• Suggested TP/SL zones for trade management
• Scalping signals to capture quick, short-term opportunities
• Works across Forex, Gold, Crypto, and Indices
• Fully customizable to match your trading style
Built from years of trading experience, TradeIQ gives traders a clear visual roadmap to support decision-making — not rigid signals.
👉 Perfect for traders who want guidance, structure, and clarity in the markets.
Premium & Liquidity Zones By TradingSmurf ver.20250911=========================================
Premium & Liquidity Zones (PLZ) + AEMA
=========================================
Features:
----------
• Liquidity Zones (Daily / Weekly / Monthly)
- Previous Highs/Lows with text labels
- Auto purge when liquidity is swept
• Adaptive EMA (Kaufman-style)
- Fast = 2, Slow = 30, Efficiency = 10
- Toggle On/Off
• Premium & Discount Zones
- Supply/Demand imbalance shading
• Market Structure Tools
- BOS (Break of Structure) / CHoCH detection
- Order Blocks
- Fair Value Gaps (FVGs)
- MSS signals
- Swing High/Low labels
• Signals & Alerts
- SSMA crossover Buy/Sell signals
- BOS, CHoCH, MSS alerts
Usage:
-------
All-in-one Smart Money Concepts (SMC) toolkit
for liquidity, structure, and adaptive trend
confirmation.
ICT NDOG/NWOGICT NDOG / NWOG — Opening Gap Visualizer
Plots daily (NDOG) and weekly (NWOG) opening gaps.
An opening gap is the price range between the previous close and the new session’s open.
Features:
• Optional border lines at gap high/low.
• Optional Consequent Encroachment line (50%).
• Optional Quadrant lines (25% and 75%).
• Color customization
• Custom NDOG and NWOG amount (separated)
*Also included in ICT ULT (All In One) Indicator
*Feel free to suggest improvement in the comments
TradeIQ 3.31 • Smart Market Direction [EN]
TradeIQ is designed to guide traders with predictive arrows that highlight potential market peaks and reversal zones. It also provides entry point guidance along with suggested TP/SL zones, giving you a practical framework for trade planning.
✅ Key Features:
• Predictive arrows for possible turning points
• Visual guide for entry opportunities
• Suggested TP/SL zones for trade management
• Scalping signals to capture quick, short-term opportunities
• Works across Forex, Gold, Crypto, and Indices
• Fully customizable to match your trading style
Built from years of trading experience, TradeIQ gives traders a clear visual roadmap to support decision-making — not rigid signals.
👉 Perfect for traders who want guidance, structure, and clarity in the markets.
Manipulation Ribbon [FxScripts]Manipulation Ribbon
Designed to detect areas of price manipulation by Market Makers vs areas where it is trading in a natural, price-driven state. By identifying zones of control and imbalance, the ribbon provides a clear visualization of where price is being held or artificially displaced, offering key insights into potential future direction.
Indicator Function
Unlike traditional oscillators, the Manipulation Ribbon plots a continuous line or ribbon, with no defined y-axis. The ribbon dynamically adapts to market conditions, allowing the user to spot potential manipulation and price containment vs natural price movement.
Calculation Methodology
The Manipulation Ribbon is derived exclusively from price action. The underlying algorithm evaluates where price is, where it should be and where it’s being held.
The resulting ribbon reflects these dynamics in real time, providing a visual framework for interpreting price behavior at a granular level.
Operational Use: Divergences
The primary use of the Manipulation Ribbon is to locate divergences between price and the ribbon.
There are two distinct types of divergence to look for:
Price Containment: Where the ribbon moves but price doesn’t. This can help identify zones where price is being held, often preceding sharp movements once control is released.
Price Manipulation: Where price moves but the ribbon doesn’t. This can help identify liquidity sweeps, often preceding swift reversals once the liquidity has been taken.
Analytical Scenarios
High Liquidity Sweep: Price forms a higher high while the ribbon forms a lower high. Indicates a liquidity sweep may be occurring at the highs and a potential bearish reversal may be imminent.
Low Liquidity Sweep: Price forms a lower low while the ribbon forms a higher low. Indicates a liquidity sweep may be occurring at the lows and a potential bullish reversal may be imminent.
Top Edge Hold: Upwards movement of the ribbon without price followthrough. Indicates price may be being held at the highs, suggesting Market Makers are artificially holding price down in order to create a top edge and potential bearish reversal.
Bottom Edge Hold: Downwards movement of the ribbon without price followthrough. Indicates price may be being held at the lows, suggesting Market Makers are artificially holding price up in order to create a bottom edge and potential bearish reversal.
Settings
Guides: Option to have dynamic guides applied to your chart. Customizable style, color and width.
Guide Lookback: Due to the ribbon having a non-standard y-axis scale, it’s not possible to plot standard interval guides. Due to technical limitations this value is not calculable automatically either. The upper and lower bounds of the guides are therefore calculated using a user-inputted lookback function. In order to ensure the guides use the correct y-axis on the chart, simply input the average number of bars in your current viewport using the ruler, the guides will automatically update to match this.
Line 1 / Band 1: Option to turn on/off Line 1 and Band 1 alongside updating color and linewidth. Line 1 and Band 1 use the current chart symbol as their source.
Line 2 / Band 2: Option to add a second line and/or band to the chart. Use this to compare any correlated instrument e.g. BTCUSDT and ETHUSDT (as visualized in the chart above) or other pairs such as XAUUSD/XAUEUR or ES/NQ. Due to differences in y-axis scaling it's advised to add this as an additional indicator on a new pane (as per chart above).
Inverse Line 2 / Band 2: Option to show/hide the inverse of Line 2 and Band 2. This is useful for comparing inversely correlated symbols e.g. EURUSD and USDCHF.
Performance and Optimization
Backtesting Results: The Manipulation Ribbon has undergone extensive backtesting across various instruments, timeframes and market conditions, demonstrating strong performance in identifying where price is out of sync with its natural state. User backtesting is strongly encouraged as it allows traders to gain familiarity with the ribbon using their preferred instruments and timeframes.
Optimization for Diverse Markets: The Manipulation Ribbon can be used on crypto, forex, indices, commodities and stocks. The Manipulation Ribbon's algorithmic foundation ensures consistent performance across a variety of instruments. The lack of complex settings makes it easy for the trader to set up and go.
Educational Resources and Support
Users of the Manipulation Ribbon benefit from comprehensive educational resources and full access to FxScripts Support. This ensures traders can maximize the potential of the Manipulation Ribbon and other tools in the Sigma Indicator Suite by learning best practices and gaining insights from an experienced team of traders.
Table Logic ExtractorTable Logic Extractor v2.0
Advanced multi-timeframe analysis with intelligent trade recommendations!
Overview:
This sophisticated indicator provides comprehensive market analysis through multiple technical indicators and timeframes. It combines EMA analysis, RSI momentum, MACD signals, Bollinger Bands, volume analysis, divergence detection, and intelligent trade recommendations with support/resistance distance calculations and trading style detection.
Key Features:
✅ Multi-Indicator Analysis - EMA, RSI, MACD, Bollinger Bands, Volume, ATR
✅ Multi-Timeframe Analysis - M1, M5, M15, M30 trend comparison
✅ Divergence Detection - Bullish and bearish divergence with strength calculation
✅ Support/Resistance Analysis - Distance calculations with Fibonacci levels
✅ Trading Style Detection - Trend, Range, Breakout, Scalping identification
✅ Intelligent Trade Signals - Style-based trade recommendations with confidence levels
✅ Risk Management - Stop Loss and Take Profit calculations
✅ Comprehensive Table - Real-time analysis with 14 different metrics
How It Works:
The indicator uses advanced analysis:
• Multi-Timeframe - M1, M5, M15, M30 trend analysis
• Style Detection - Automatic trading style identification
• S/R Analysis - Fibonacci-based support/resistance levels
• Weighted Scoring - EMA (2.0), RSI (1.5), MACD (1.5), BB (1.0), Volume (1.0)
• Intelligent Signals - Style-based trade recommendations
Trading Style Detection:
• TREND TRADING - Strong trend + aligned timeframes (Green)
• RANGE TRADING - Low volatility + sideways movement (Yellow)
• BREAKOUT TRADING - High volume + near levels (Orange)
• SCALPING - High volatility + quick moves (Red)
Information Table (14 Metrics):
Real-time display showing:
• ATR volatility with signal (HIGH/MED/LOW/NORMAL VOL)
• Divergence status with strength percentage
• S/R Distance with Fibonacci levels
• Stop Loss (2.0:1 ratio) and Take Profit 1 (1.5:1 ratio)
• Multi-Timeframe analysis (M1, M5, M15, M30)
• Scalping signals with confidence levels
• Current trend with strength percentage
• Intelligent trade recommendations
Trade Recommendations:
• TREND BUY/SELL - All timeframes aligned (High confidence)
• SHORT-TERM BUY/SELL - M5 signal only (Medium confidence)
• SCALPING BUY/SELL - M5 vs higher timeframes (Low confidence)
• WAIT - No clear signal (No confidence)
Support/Resistance Analysis:
• Fibonacci Levels: 23.6%, 38.2%, 50% retracements
• Distance Categories: Very Near (Red), Near (Orange), Medium (Yellow), Far (Green)
• ATR-based distance measurement
• Real-time proximity alerts
Scalping Detection:
Specialized signals based on:
• High volatility (ATR ratio > 1.5)
• Quick price moves (fast momentum)
• Volume confirmation (high volume spikes)
• RSI extremes (oversold/overbought)
Settings:
• EMA - Fast (9), Slow (21), Trend (50)
• RSI - Length (14), Overbought (70), Oversold (30)
• MACD - Fast (12), Slow (26), Signal (9)
• Bollinger Bands - Length (20), Multiplier (2.0)
• ATR - Length (14) for volatility measurement
• Volume Threshold - 1.5x average volume
• Divergence - Lookback (3), Threshold (0.5)
Best Practices:
🎯 Adapt strategy to detected trading style
📊 Use multi-timeframe analysis for confirmation
⚡ Monitor S/R distances for entry timing
🛡️ Always use calculated Stop Loss levels
🔍 Watch for divergence signals
📈 Follow intelligent trade recommendations
Pro Tips:
• Table provides all essential information in one place
• Trading style detection helps adapt your strategy
• S/R distance shows proximity to key levels
• Confidence levels indicate signal reliability
• Multi-timeframe alignment increases success rate
• Scalping signals work best in high volatility
Alerts:
• Trend Change Alert - "Trend changed across timeframes"
• Divergence Alert - "Divergence detected"
• Scalping Alert - "Scalping opportunity"
• Trade Signal Alert - "Trade recommendation available"
Version 2.0 Improvements:
• Advanced multi-timeframe analysis (M1, M5, M15, M30)
• Intelligent trading style detection
• Comprehensive support/resistance analysis
• Professional trade recommendations with confidence levels
• Scalping detection with specialized signals
• Risk management with calculated SL/TP levels
• 14-metric comprehensive information table
Created with ❤️ for the trading community
This indicator is free to use for both commercial and non-commercial purposes.
TradeIQ 3.31 • Smart Market Direction [TH]TradeIQ is designed to guide traders with predictive arrows that highlight potential market peaks and reversal zones. It also provides entry point guidance along with suggested TP/SL zones, giving you a practical framework for trade planning.
✅ Key Features:
• Predictive arrows for possible turning points
• Visual guide for entry opportunities
• Suggested TP/SL zones for trade management
• Scalping signals to capture quick, short-term opportunities
• Works across Forex, Gold, Crypto, and Indices
• Fully customizable to match your trading style
Built from years of trading experience, TradeIQ gives traders a clear visual roadmap to support decision-making — not rigid signals.
👉 Perfect for traders who want guidance, structure, and clarity in the markets.
Complexity v3.2Complex Trend Analyzer v6.1 v3.2
Advanced multi-indicator trend analysis with dynamic timeframe adaptation!
Overview:
This sophisticated indicator combines multiple technical analysis tools for comprehensive trend analysis. It features EMA crossovers, RSI momentum, MACD signals, Bollinger Bands, volume analysis, divergence detection, and multi-timeframe analysis with dynamic parameter adaptation based on market volatility.
Key Features:
✅ Multi-Indicator Analysis - EMA, RSI, MACD, Bollinger Bands, Volume, ATR
✅ Divergence Detection - Bullish and bearish divergence with strength calculation
✅ Dynamic Timeframe Adaptation - Parameters adjust automatically based on timeframe
✅ Trend Tracking - Complete trend lifecycle with BUY/SELL/END signals
✅ Multi-Timeframe Analysis - M5, M15, M30 trend comparison
✅ Risk Management - Volatility filtering and warning system
✅ Visual Clarity - Clean labels, trend lines, and information table
How It Works:
The indicator uses a weighted scoring system:
• EMA (2.0) - Primary trend direction
• RSI (1.5) - Momentum confirmation
• MACD (1.5) - Trend momentum
• Bollinger Bands (1.0) - Volatility context
• Volume (1.0) - Volume confirmation
• Price Action (0.5 each) - Higher highs/lows
Signal Logic:
• BUY - Weighted score > threshold + filters passed
• SELL - Weighted score > threshold + filters passed
• END - Trend reversal conditions met
Visual Elements:
• 🟢 BUY - Green label with trend tracking
• 🔴 SELL - Red label with trend tracking
• ⚫ END - Gray label marking trend end
• × BUY - Green crosses for bullish divergence
• × SELL - Red crosses for bearish divergence
• ⚠️ - Warning signals for trend reversals
Information Table:
Real-time display showing:
• ATR volatility with signal (HIGH/MED/LOW/NORMAL VOL)
• Divergence status with strength percentage
• BUY/SELL signal count and overall signal
• Multi-Timeframe analysis (M5, M15, M30)
• Current trend with strength percentage
• Detailed trend strength analysis
Dynamic Adaptation:
Parameters automatically adjust based on timeframe:
• M1 - Fastest reaction (1.5-7.5 bars)
• M3 - Quick response (2-10 bars)
• M5 - Standard setting (3-15 bars)
• M15 - Slower, more reliable (4-20 bars)
Settings:
• EMA - Fast (9), Slow (21), Trend (50)
• RSI - Length (14), Overbought (70), Oversold (30)
• MACD - Fast (12), Slow (26), Signal (9)
• Bollinger Bands - Length (20), Multiplier (2.0)
• ATR - Length (14) for volatility measurement
• Volume Threshold - 1.5x average volume
Best Practices:
🎯 Works best in trending markets
📊 Use as overlay on main chart
⚡ Combine with price action analysis
🛡️ Always use proper risk management
🔍 Watch for divergence signals
⚠️ Pay attention to warning signals
Pro Tips:
• Green background = Strong uptrend, Red background = Strong downtrend
• Orange background = Risk zone (high volatility/RSI extremes)
• × marks indicate divergence opportunities
• ⚠️ warnings signal potential trend reversals
• Use multi-timeframe analysis for confirmation
• Monitor the information table for comprehensive market view
Alerts:
• BUY Alert - "BUY signal detected"
• SELL Alert - "SELL signal detected"
• Divergence Alert - "Divergence detected"
• Warning Alert - "Trend warning"
Version 3.2 Improvements:
• Enhanced multi-indicator analysis
• Improved divergence detection with strength calculation
• Advanced dynamic timeframe adaptation
• Comprehensive risk management system
• Professional visual presentation
• Weighted scoring system for better accuracy
Created with ❤️ for the trading community
This indicator is free to use for both commercial and non-commercial purposes.
MONEYZEYAH | SMART TREND LINESAutomatically detects swing highs/lows, draws trend lines, marks key support/resistance levels, and highlights breakouts for fast trend analysis. 📈🚩