ADX BoxDescription:
The ADX Box indicator provides traders with a quick and intuitive way to monitor the current trend strength based on the Average Directional Index (ADX), calculated with a customisable period (default: 7 periods).
This compact indicator neatly displays the current ADX value rounded to one decimal place, along with a clear directional arrow:
Green upward triangle (▲): Indicates that ADX is rising above its moving average, signaling increasing trend strength.
Red downward triangle (▼): Indicates that ADX is declining below its moving average, signaling weakening trend strength.
Key Features:
Small and clean visual representation.
Dynamically updates in real-time directly on the chart.
Ideal for quick trend strength assessment without cluttering your workspace.
Recommended Usage:
Quickly identifying whether market trends are strengthening or weakening.
Enhancing decision-making for trend-following or breakout trading strategies.
Complementing other indicators such as ATR boxes for volatility measurement.
Feel free to use, share, and incorporate this indicator into your trading setups for clearer insights and more confident trading decisions!
Multitimeframe
Multi-Fibonacci Trend Average[FibonacciFlux]Multi-Fibonacci Trend Average (MFTA): An Institutional-Grade Trend Confluence Indicator for Discerning Market Participants
My original indicator/Strategy:
Engineered for the sophisticated demands of institutional and advanced traders, the Multi-Fibonacci Trend Average (MFTA) indicator represents a paradigm shift in technical analysis. This meticulously crafted tool is designed to furnish high-definition trend signals within the complexities of modern financial markets. Anchored in the rigorous principles of Fibonacci ratios and augmented by advanced averaging methodologies, MFTA delivers a granular perspective on trend dynamics. Its integration of Multi-Timeframe (MTF) filters provides unparalleled signal robustness, empowering strategic decision-making with a heightened degree of confidence.
MFTA indicator on BTCUSDT 15min chart with 1min RSI and MACD filters enabled. Note the refined signal generation with reduced noise.
MFTA indicator on BTCUSDT 15min chart without MTF filters. While capturing more potential trading opportunities, it also generates a higher frequency of signals, including potential false positives.
Core Innovation: Proprietary Fibonacci-Enhanced Supertrend Averaging Engine
The MFTA indicator’s core innovation lies in its proprietary implementation of Supertrend analysis, strategically fortified by Fibonacci ratios to construct a truly dynamic volatility envelope. Departing from conventional Supertrend methodologies, MFTA autonomously computes not one, but three distinct Supertrend lines. Each of these lines is uniquely parameterized by a specific Fibonacci factor: 0.618 (Weak), 1.618 (Medium/Golden Ratio), and 2.618 (Strong/Extended Fibonacci).
// Fibonacci-based factors for multiple Supertrend calculations
factor1 = input.float(0.618, 'Factor 1 (Weak/Fibonacci)', minval=0.01, step=0.01, tooltip='Factor 1 (Weak/Fibonacci)', group="Fibonacci Supertrend")
factor2 = input.float(1.618, 'Factor 2 (Medium/Golden Ratio)', minval=0.01, step=0.01, tooltip='Factor 2 (Medium/Golden Ratio)', group="Fibonacci Supertrend")
factor3 = input.float(2.618, 'Factor 3 (Strong/Extended Fib)', minval=0.01, step=0.01, tooltip='Factor 3 (Strong/Extended Fib)', group="Fibonacci Supertrend")
This multi-faceted architecture adeptly captures a spectrum of market volatility sensitivities, ensuring a comprehensive assessment of prevailing conditions. Subsequently, the indicator algorithmically synthesizes these disparate Supertrend lines through arithmetic averaging. To achieve optimal signal fidelity and mitigate inherent market noise, this composite average is further refined utilizing an Exponential Moving Average (EMA).
// Calculate average of the three supertends and a smoothed version
superlength = input.int(21, 'Smoothing Length', tooltip='Smoothing Length for Average Supertrend', group="Fibonacci Supertrend")
average_trend = (supertrend1 + supertrend2 + supertrend3) / 3
smoothed_trend = ta.ema(average_trend, superlength)
The resultant ‘Smoothed Trend’ line emerges as a remarkably responsive yet stable trend demarcation, offering demonstrably superior clarity and precision compared to singular Supertrend implementations, particularly within the turbulent dynamics of high-volatility markets.
Elevated Signal Confluence: Integrated Multi-Timeframe (MTF) Validation Suite
MFTA transcends the limitations of conventional trend indicators by incorporating an advanced suite of three independent MTF filters: RSI, MACD, and Volume. These filters function as sophisticated validation protocols, rigorously ensuring that only signals exhibiting a confluence of high-probability factors are brought to the forefront.
1. Granular Lower Timeframe RSI Momentum Filter
The Relative Strength Index (RSI) filter, computed from a user-defined lower timeframe, furnishes critical momentum-based signal validation. By meticulously monitoring RSI dynamics on an accelerated timeframe, traders gain the capacity to evaluate underlying momentum strength with precision, prior to committing to signal execution on the primary chart timeframe.
// --- Lower Timeframe RSI Filter ---
ltf_rsi_filter_enable = input.bool(false, title="Enable RSI Filter", group="MTF Filters", tooltip="Use RSI from lower timeframe as a filter")
ltf_rsi_timeframe = input.timeframe("1", title="RSI Timeframe", group="MTF Filters", tooltip="Timeframe for RSI calculation")
ltf_rsi_length = input.int(14, title="RSI Length", minval=1, group="MTF Filters", tooltip="Length for RSI calculation")
ltf_rsi_threshold = input.int(30, title="RSI Threshold", minval=0, maxval=100, group="MTF Filters", tooltip="RSI value threshold for filtering signals")
2. Convergent Lower Timeframe MACD Trend-Momentum Filter
The Moving Average Convergence Divergence (MACD) filter, also calculated on a lower timeframe basis, introduces a critical layer of trend-momentum convergence confirmation. The bullish signal configuration rigorously mandates that the MACD line be definitively positioned above the Signal line on the designated lower timeframe. This stringent condition ensures a robust indication of converging momentum that aligns synergistically with the prevailing trend identified on the primary timeframe.
// --- Lower Timeframe MACD Filter ---
ltf_macd_filter_enable = input.bool(false, title="Enable MACD Filter", group="MTF Filters", tooltip="Use MACD from lower timeframe as a filter")
ltf_macd_timeframe = input.timeframe("1", title="MACD Timeframe", group="MTF Filters", tooltip="Timeframe for MACD calculation")
ltf_macd_fast_length = input.int(12, title="MACD Fast Length", minval=1, group="MTF Filters", tooltip="Fast EMA length for MACD")
ltf_macd_slow_length = input.int(26, title="MACD Slow Length", minval=1, group="MTF Filters", tooltip="Slow EMA length for MACD")
ltf_macd_signal_length = input.int(9, title="MACD Signal Length", minval=1, group="MTF Filters", tooltip="Signal SMA length for MACD")
3. Definitive Volume Confirmation Filter
The Volume Filter functions as an indispensable arbiter of trade conviction. By establishing a dynamic volume threshold, defined as a percentage relative to the average volume over a user-specified lookback period, traders can effectively ensure that all generated signals are rigorously validated by demonstrably increased trading activity. This pivotal validation step signifies robust market participation, substantially diminishing the potential for spurious or false breakout signals.
// --- Volume Filter ---
volume_filter_enable = input.bool(false, title="Enable Volume Filter", group="MTF Filters", tooltip="Use volume level as a filter")
volume_threshold_percent = input.int(title="Volume Threshold (%)", defval=150, minval=100, group="MTF Filters", tooltip="Minimum volume percentage compared to average volume to allow signal (100% = average)")
These meticulously engineered filters operate in synergistic confluence, requiring all enabled filters to definitively satisfy their pre-defined conditions before a Buy or Sell signal is generated. This stringent multi-layered validation process drastically minimizes the incidence of false positive signals, thereby significantly enhancing entry precision and overall signal reliability.
Intuitive Visual Architecture & Actionable Intelligence
MFTA provides a demonstrably intuitive and visually rich charting environment, meticulously delineating trend direction and momentum through precisely color-coded plots:
Average Supertrend: Thin line, green/red for uptrend/downtrend, immediate directional bias.
Smoothed Supertrend: Bold line, teal/purple for uptrend/downtrend, cleaner, institutionally robust trend.
Dynamic Trend Fill: Green/red fill between Supertrends quantifies trend strength and momentum.
Adaptive Background Coloring: Light green/red background mirrors Smoothed Supertrend direction, holistic trend perspective.
Precision Buy/Sell Signals: ‘BUY’/‘SELL’ labels appear on chart when trend touch and MTF filter confluence are satisfied, facilitating high-conviction trade action.
MFTA indicator applied to BTCUSDT 4-hour chart, showcasing its effectiveness on higher timeframes. The Smoothed Length parameter is increased to 200 for enhanced smoothness on this timeframe, coupled with 1min RSI and Volume filters for signal refinement. This illustrates the indicator's adaptability across different timeframes and market conditions.
Strategic Applications for Institutional Mandates
MFTA’s sophisticated design provides distinct advantages for advanced trading operations and institutional investment mandates. Key strategic applications include:
High-Probability Trend Identification: Fibonacci-averaged Supertrend with MTF filters robustly identifies high-probability trend continuations and reversals, enhancing alpha generation.
Precision Entry/Exit Signals: Volume and momentum-filtered signals enable institutional-grade precision for optimized risk-adjusted returns.
Algorithmic Trading Integration: Clear signal logic facilitates seamless integration into automated trading systems for scalable strategy deployment.
Multi-Asset/Timeframe Versatility: Adaptable parameters ensure applicability across diverse asset classes and timeframes, catering to varied trading mandates.
Enhanced Risk Management: Superior signal fidelity from MTF filters inherently reduces false signals, supporting robust risk management protocols.
Granular Customization and Parameterized Control
MFTA offers unparalleled customization, empowering users to fine-tune parameters for precise alignment with specific trading styles and market conditions. Key adjustable parameters include:
Fibonacci Factors: Adjust Supertrend sensitivity to volatility regimes.
ATR Length: Control volatility responsiveness in Supertrend calculations.
Smoothing Length: Refine Smoothed Trend line responsiveness and noise reduction.
MTF Filter Parameters: Independently configure timeframes, lookback periods, and thresholds for RSI, MACD, and Volume filters for optimal signal filtering.
Disclaimer
MFTA is meticulously engineered for high-quality trend signals; however, no indicator guarantees profit. Market conditions are unpredictable, and trading involves substantial risk. Rigorous backtesting and forward testing across diverse datasets, alongside a comprehensive understanding of the indicator's logic, are essential before live deployment. Past performance is not indicative of future results. MFTA is for informational and analytical purposes only and is not financial or investment advice.
Forexsom MA Crossover SignalsA Trend-Following Trading Indicator for TradingView
Overview
This indicator plots two moving averages (MA) on your chart and generates visual signals when they cross, helping traders identify potential trend reversals. It is designed to be simple yet effective for both beginners and experienced traders.
Key Features
✅ Dual Moving Averages – Plots a Fast MA (default: 9-period) and a Slow MA (default: 21-period)
✅ Customizable MA Types – Choose between EMA (Exponential Moving Average) or SMA (Simple Moving Average)
✅ Clear Buy/Sell Signals – Displays "BUY" (green label) when the Fast MA crosses above the Slow MA and "SELL" (red label) when it crosses below
✅ Alerts – Get notified when new signals appear (compatible with TradingView alerts)
✅ Clean Visuals – Easy-to-read moving averages with adjustable colors
How It Works
Bullish Signal (BUY) → Fast MA crosses above Slow MA (suggests uptrend)
Bearish Signal (SELL) → Fast MA crosses below Slow MA (suggests downtrend)
Best Used For
✔ Trend-following strategies (swing trading, day trading)
✔ Confirming trend reversals
✔ Filtering trade entries in combination with other indicators
Customization Options
Adjust Fast & Slow MA lengths
Switch between EMA or SMA for smoother or more responsive signals
Why Use This Indicator?
Simple & Effective – No clutter, just clear signals
Works on All Timeframes – From scalping (1M, 5M) to long-term trading (4H, Daily)
Alerts for Real-Time Trading – Never miss a signal
Forex Fire EMA/MA/RSI StrategyEURUSD
The entry method in the Forex Fire EMA/MA/RSI Strategy combines several conditions across two timeframes. Here's a breakdown of how entries are determined:
Long Entry Conditions:
15-Minute Timeframe Conditions:
EMA 13 > EMA 62 (short-term momentum is bullish)
Price > MA 200 (trading above the major trend indicator)
Fast RSI (7) > Slow RSI (28) (momentum is increasing)
Fast RSI > 50 (showing bullish momentum)
Volume is increasing compared to 20-period average
4-Hour Timeframe Confluence:
EMA 13 > EMA 62 (larger timeframe confirms bullish trend)
Price > MA 200 (confirming overall uptrend)
Slow RSI (28) > 40 (showing bullish bias)
Fast RSI > Slow RSI (momentum is supporting the move)
Additional Precision Requirement:
Either EMA 13 has just crossed above EMA 62 (crossover)
OR price has just crossed above MA 200
Short Entry Conditions:
15-Minute Timeframe Conditions:
EMA 13 < EMA 62 (short-term momentum is bearish)
Price < MA 200 (trading below the major trend indicator)
Fast RSI (7) < Slow RSI (28) (momentum is decreasing)
Fast RSI < 50 (showing bearish momentum)
Volume is increasing compared to 20-period average
4-Hour Timeframe Confluence:
EMA 13 < EMA 62 (larger timeframe confirms bearish trend)
Price < MA 200 (confirming overall downtrend)
Slow RSI (28) < 60 (showing bearish bias)
Fast RSI < Slow RSI (momentum is supporting the move)
Additional Precision Requirement:
Either EMA 13 has just crossed under EMA 62 (crossunder)
OR price has just crossed under MA 200
The key aspect of this strategy is that it requires alignment between the shorter timeframe (15m) and the larger timeframe (4h), which helps filter out false signals and focuses on trades that have strong multi-timeframe support. The crossover/crossunder requirement further refines entries by looking for actual changes in direction rather than just conditions that might have been in place for a long time.
ICT Breakers (BOS / MSS - Market Structure) [ICTProTools]The Breakers (Market Structure) indicator is designed to help traders identify true breaker structures , a key concept in Inner Circle Trader (ICT) methodology. In market structure, Breakers represent powerful shifts where a key high or low is broken, leading to a reversal in market direction. Most tools misinterpret structure shifts, using internal structure , leading to fake breakouts. This tool solves that problem by filtering out false signals , providing clear & structured insights , all with multi-timeframe compatibility.
💎 Key Features
⚡️ Breakers in action
The indicator shows the structure following ICT instructions. A breaker is defined by two lines:
The first line confirms the previous trend (it could be interpreted as a BOS).
The second line highlights the moment price breaks structure (with candle body or wick based on your chosen settings), signaling a shift in trend direction (like an MSS).
Furthermore, it’s important to note that a breaker not only shows the structure, but also defines a potential Point of Interest (POI), an area where price may retrace before continuing its trend.
Here, we can observe two clear structure shifts.
On the far left, the market was in a bearish trend, illustrated by the first visible (dotted and red) line. Shortly after, the second (solid and green) line appears, showing a break that initiates a new bullish trend.
This upward movement continues, with the last confirmation marked by a top structure line. And finally, the structure is broken once again indicating a transition back into a bearish trend.
💪 Real Structure with True Highs / Lows
Unlike many indicators that detect internal breakouts , this tool follows ICT’s true market structure rules .
In a bearish trend , a bullish breaker is only confirmed when the high that created the low is broken , and conversely for a bullish scenario.
Fake breakouts are ignored, preventing misleading signals.
In the image above, the white breakout is correctly ignored by the indicator, as it doesn't align with ICT’s structural rules. That white high is simply part of the internal structure, not the true swing point. Instead, the green line highlights the key level that truly matters, the one whose rupture would have confirmed a real change in market structure.
🔔 Smart Alerts for Structure Updates
Stay one step ahead with customizable alerts designed to notify you instantly when market structure changes occur.
Get notified for BOS (Continuation) and / or MSS (Breaker) events.
Set alerts for bullish , bearish , or both directions.
Choose between once or repeated alerts , based on your strategy.
This feature allows traders to remain focused and reactive , even when monitoring multiple markets.
In the alert settings, select which structure shifts you want to be notified of. Whether you're a scalper or a swing trader, the alerts keep you connected to key moments without needing to constantly monitor the chart.
⏳ Multi-Timeframe Structure
All features of the indicator are fully compatible with higher timeframes .
Get a broader view of market structure without switching timeframes.
Monitor higher timeframe structures and receive alerts, all without leaving your analysis chart .
In this example, the market structure of the 30m timeframe is displayed while on a 5m chart, providing a clearer perspective.
✨ Customization & User Control
Make it yours! The indicator allows full customization:
Swing bars (to confirm high / low)
Select your mode for Breakers (MSS) , using the candle body only or body / wick
Line style (type, width, color)
Choice of displayed timeframe
Activate any alert , with the frequency you want
🎯 Conclusion
✅ Avoid false signals by focusing on true ICT Breakers
✅ Smart alerts to never miss a structural shift
✅ Multi-timeframe support for enhanced analysis
✅ Clean & professional design for an optimal trading experience
Lower Timeframe *MALower Timeframe Moving Average (MA) Indicator
This indicator calculates a moving average using data from a lower timeframe than the chart's current timeframe.
It provides potentially earlier signals and smoother price action by incorporating more granular price data. It also allows you to keep the same reference frame for your moving average regardless of your currently selected period.
Key Features:
- Uses lower timeframe data to calculate moving averages on higher timeframes
- Supports multiple MA types: SMA, EMA, WMA, VWMA, RMA, and HMA
- Allows selection of various price inputs (close, open, high, low, hl2, hlc3, ohlc4)
- Automatically adjusts MA length based on the ratio between chart timeframe and selected sub-timeframe
15m
5m
Trendline Breaks with Multi Fibonacci Supertrend StrategyTMFS Strategy: Advanced Trendline Breakouts with Multi-Fibonacci Supertrend
Elevate your algorithmic trading with institutional-grade signal confluence
Strategy Genesis & Evolution
This advanced trading system represents the culmination of a personal research journey, evolving from my custom " Multi Fibonacci Supertrend with Signals " indicator into a comprehensive trading strategy. Built upon the exceptional trendline detection methodology pioneered by LuxAlgo in their " Trendlines with Breaks " indicator, I've engineered a systematic framework that integrates multiple technical factors into a cohesive trading system.
Core Fibonacci Principles
At the heart of this strategy lies the Fibonacci sequence application to volatility measurement:
// Fibonacci-based factors for multiple Supertrend calculations
factor1 = input.float(0.618, 'Factor 1 (Weak/Fibonacci)', minval = 0.01, step = 0.01)
factor2 = input.float(1.618, 'Factor 2 (Medium/Golden Ratio)', minval = 0.01, step = 0.01)
factor3 = input.float(2.618, 'Factor 3 (Strong/Extended Fib)', minval = 0.01, step = 0.01)
These precise Fibonacci ratios create a dynamic volatility envelope that adapts to changing market conditions while maintaining mathematical harmony with natural price movements.
Dynamic Trendline Detection
The strategy incorporates LuxAlgo's pioneering approach to trendline detection:
// Pivotal swing detection (inspired by LuxAlgo)
pivot_high = ta.pivothigh(swing_length, swing_length)
pivot_low = ta.pivotlow(swing_length, swing_length)
// Dynamic slope calculation using ATR
slope = atr_value / swing_length * atr_multiplier
// Update trendlines based on pivot detection
if bool(pivot_high)
upper_slope := slope
upper_trendline := pivot_high
else
upper_trendline := nz(upper_trendline) - nz(upper_slope)
This adaptive trendline approach automatically identifies key structural market boundaries, adjusting in real-time to evolving chart patterns.
Breakout State Management
The strategy implements sophisticated state tracking for breakout detection:
// Track breakouts with state variables
var int upper_breakout_state = 0
var int lower_breakout_state = 0
// Update breakout state when price crosses trendlines
upper_breakout_state := bool(pivot_high) ? 0 : close > upper_trendline ? 1 : upper_breakout_state
lower_breakout_state := bool(pivot_low) ? 0 : close < lower_trendline ? 1 : lower_breakout_state
// Detect new breakouts (state transitions)
bool new_upper_breakout = upper_breakout_state > upper_breakout_state
bool new_lower_breakout = lower_breakout_state > lower_breakout_state
This state-based approach enables precise identification of the exact moment when price breaks through a significant trendline.
Multi-Factor Signal Confluence
Entry signals require confirmation from multiple technical factors:
// Define entry conditions with multi-factor confluence
long_entry_condition = enable_long_positions and
upper_breakout_state > upper_breakout_state and // New trendline breakout
di_plus > di_minus and // Bullish DMI confirmation
close > smoothed_trend // Price above Supertrend envelope
// Execute trades only with full confirmation
if long_entry_condition
strategy.entry('L', strategy.long, comment = "LONG")
This strict requirement for confluence significantly reduces false signals and improves the quality of trade entries.
Advanced Risk Management
The strategy includes sophisticated risk controls with multiple methodologies:
// Calculate stop loss based on selected method
get_long_stop_loss_price(base_price) =>
switch stop_loss_method
'PERC' => base_price * (1 - long_stop_loss_percent)
'ATR' => base_price - long_stop_loss_atr_multiplier * entry_atr
'RR' => base_price - (get_long_take_profit_price() - base_price) / long_risk_reward_ratio
=> na
// Implement trailing functionality
strategy.exit(
id = 'Long Take Profit / Stop Loss',
from_entry = 'L',
qty_percent = take_profit_quantity_percent,
limit = trailing_take_profit_enabled ? na : long_take_profit_price,
stop = long_stop_loss_price,
trail_price = trailing_take_profit_enabled ? long_take_profit_price : na,
trail_offset = trailing_take_profit_enabled ? long_trailing_tp_step_ticks : na,
comment = "TP/SL Triggered"
)
This flexible approach adapts to varying market conditions while providing comprehensive downside protection.
Performance Characteristics
Rigorous backtesting demonstrates exceptional capital appreciation potential with impressive risk-adjusted metrics:
Remarkable total return profile (1,517%+)
Strong Sortino ratio (3.691) indicating superior downside risk control
Profit factor of 1.924 across all trades (2.153 for long positions)
Win rate exceeding 35% with balanced distribution across varied market conditions
Institutional Considerations
The strategy architecture addresses execution complexities faced by institutional participants with temporal filtering and date-range capabilities:
// Time Filter settings with flexible timezone support
import jason5480/time_filters/5 as time_filter
src_timezone = input.string(defval = 'Exchange', title = 'Source Timezone')
dst_timezone = input.string(defval = 'Exchange', title = 'Destination Timezone')
// Date range filtering for precise execution windows
use_from_date = input.bool(defval = true, title = 'Enable Start Date')
from_date = input.time(defval = timestamp('01 Jan 2022 00:00'), title = 'Start Date')
// Validate trading permission based on temporal constraints
date_filter_approved = time_filter.is_in_date_range(
use_from_date, from_date, use_to_date, to_date, src_timezone, dst_timezone
)
These capabilities enable precise execution timing and market session optimization critical for larger market participants.
Acknowledgments
Special thanks to LuxAlgo for the pioneering work on trendline detection and breakout identification that inspired elements of this strategy. Their innovative approach to technical analysis provided a valuable foundation upon which I could build my Fibonacci-based methodology.
This strategy is shared under the same Attribution-NonCommercial-ShareAlike 4.0 International (CC BY-NC-SA 4.0) license as LuxAlgo's original work.
Past performance is not indicative of future results. Conduct thorough analysis before implementing any algorithmic strategy.
Quantum Motion Oscillator-QMO (TechnoBlooms)Quantum Motion Oscillator (QMO) is a momentum indicator designed for traders who demand precision. Combining multi-timeframe weighted linear regression with EMA crossovers, QMO offers a dynamic view of market momentum, helping traders anticipate trend shifts with greater accuracy.
This oscillator is inspired by quantum mechanics and wave theory, where market movement is seen as a series of probabilistic waves rather than rigid structures.
The histogram is plotted in proportion to the price movement of the candlesticks.
KEY FEATURES
1. Multi-Timeframe Histogram - Integrates 1 to 5 weighted linear regression averages, reducing lag while maintaining accuracy.
2. EMA Crossover Signal - Uses a Short and Long EMA to confirm trend shifts with minimal noise.
3. Adaptive Trend Analysis - Self-adjusting mechanics make QMO effective in both ranging and trending markets.
4. Scalable for Different Trading Styles - Works seamlessly for scalping, intraday, swing and position trading.
ADVANCED PROFESSIONAL INSIGHTS
1. Wave Dynamics and Market Flow - Inspired by wave mechanics, QMO reflects the energy accumulation and dissipation in price movements.
Expanding histogram waves = Strong momentum surge
Contracting waves = Momentum weakening, potential reversal zone.
2. Liquidity and Order Flow Applications - QMO works well alongside liquidity concepts and smart money techniques:
Combine with Fair Value Gaps & Order Blocks -> Enter when QMO signals align with liquidity zones.
Avoid False Moves - If price sweeps liquidity, but QMO momentum diverges, it is a sign of potential smart money manipulation.
TR FVG & Swing High Low FinderTR FVG & Swing Level Finder
Overview:
The TR FVG & Swing Level Finder is a powerful Pine Script indicator designed for traders who want to identify Fair Value Gaps (FVGs) and Swing Highs/Lows on their charts. This indicator combines two essential technical analysis tools into one, helping traders spot potential areas of support, resistance, and trend reversals. FVGs are price gaps that often act as areas of interest for price to return to, while swing highs and lows help identify key turning points in the market. The indicator is highly customizable, allowing users to adjust colors, limits, and display options to suit their trading style.
Key Features:
1: Fair Value Gap (FVG) Detection:
- Identifies Bullish FVGs: Occur when the high of two candles ago is lower than the low of the current candle, indicating a potential upward price movement.
- Identifies Bearish FVGs: Occur when the low of two candles ago is higher than the high of the current candle, indicating a potential downward price movement.
- Displays FVGs as colored boxes on the chart, with customizable border and fill colors based on the timeframe.
- Labels each FVG box with the corresponding timeframe (e.g., "1m FVG", "1h FVG", "Daily FVG").
2: Swing High and Swing Low Detection:
- Detects Swing Highs: A 3-candle pattern where the middle candle's high is higher than the highs of the candles on either side.
- Detects Swing Lows: A 3-candle pattern where the middle candle's low is lower than the lows of the candles on either side.
- Draws a solid black line with 50% opacity at each swing high and low, extending 5 bars to the right for better visibility.
- Adds a small Swing High or Swing Low label at the right end of each line, colored according to user-defined settings.
3: Timeframe-Specific FVG Visualization:
- FVGs are color-coded based on the chart's timeframe, making it easy to distinguish between FVGs on different timeframes.
- Each timeframe has its own fill color for bullish and bearish FVGs, with adjustable transparency for better chart clarity.
- A dashed black line is drawn in the middle of each FVG box to highlight the midpoint of the gap.
4: Customizable Display Options:
- FVG Limit: Control the maximum number of FVGs displayed on the chart (from 1 to 20).
- Extend Options for FVG Boxes:
- "None": FVG boxes extend only 2 bars to the right.
- "Limited": FVG boxes extend a user-defined number of candles to the right (1 to 100 candles).
- "Default": FVG boxes extend 3 bars to the right of the current bar.
- Color Customization:
- Set border colors for bullish and bearish FVGs.
- Adjust fill colors for FVGs on different timeframes (1m, 5m, 15m, 30m, 1h, 4h, Daily, Weekly, Monthly).
- Customize the colors of swing high and swing low labels.
5: Performance Optimization:
- The indicator only plots FVGs and swings on the last confirmed bar (barstate.islastconfirmedhistory), ensuring efficient performance and reducing chart clutter.
- Limits the number of displayed FVGs and swings to the user-defined fvgLimit, keeping the chart clean and focused on the most recent price action.
6: Inputs and Customization:
- Number of FVGs to Show (fvgLimit): Set the maximum number of FVGs and swings to display (default: 3, range: 1 to 20).
- Bullish FVG Border Color (bullishColor): Choose the border color for bullish FVGs (default: green).
- Bearish FVG Border Color (bearishColor): Choose the border color for bearish FVGs (default: red).
- Swing High Color (swingHighColor): Set the color for swing high labels (default: blue).
- Swing Low Color (swingLowColor): Set the color for swing low labels (default: purple).
- Extend Options:
- Extend Option (extendOption): Choose how far FVG boxes extend to the right ("None", "Limited", or "Default"; default: "Default").
- Extend Candles (extendCandles): If "Limited" is selected, specify the number of candles to extend FVG boxes (default: 8, range: 1 to 100).
- Timeframe-Specific Fill Colors:
- Customize fill colors for bullish and bearish FVGs on various timeframes (1m, 5m, 15m, 30m, 1h, 4h, Daily, Weekly, Monthly).
- Each fill color has a default transparency (e.g., 93% for most timeframes, 90% for 30m), which can be adjusted as needed.
How to Use:
1: Add the Indicator to Your Chart:
- Open TradingView, go to the Pine Editor, and paste the script.
- Click "Add to Chart" to apply the indicator to your current chart.
2: Adjust Settings:
- Open the indicator settings by clicking the gear icon next to the indicator name on your chart.
- Modify the inputs to suit your preferences:
- Set the number of FVGs and swings to display.
- Choose your preferred colors for FVGs and swings.
- Adjust the extend options for FVG boxes.
3: Interpret the Indicator:
- FVG Boxes: Look for colored boxes on the chart, which represent Fair Value Gaps. Bullish FVGs (green borders by default) suggest potential buying opportunities, while bearish FVGs (red borders by default) suggest potential selling opportunities. The label inside each box indicates the timeframe of the FVG.
- Swing Highs and Lows: Identify key turning points with solid black lines (50% opacity) at swing highs and lows. Each line extends 5 bars to the right, with an "SH" (Swing High) or "SL" (Swing Low) label at the end. Swing highs can act as resistance levels, while swing lows can act as support levels.
4: Combine with Your Strategy:
- Use FVGs to identify areas where price might return to fill the gap, often acting as support or resistance.
- Use swing highs and lows to spot potential trend reversals or to set stop-loss and take-profit levels.
- Combine the indicator with other tools (e.g., trendlines, moving averages) for a more comprehensive trading strategy.
Notes:
- The indicator works on all timeframes, but the appearance of FVGs and swings will vary depending on the chart's timeframe.
- For best results, use the indicator on a clean chart to avoid visual clutter, especially if you increase the fvgLimit.
- The swing high/low lines are drawn with 50% opacity to ensure they don’t overpower other chart elements, but they are still clearly visible.
Author’s Note:
This script was developed to help traders identify key price levels with ease. I hope it adds value to your trading! If you have any feedback or suggestions for improvement, feel free to leave a comment. Happy trading!
Exact Dynamic Yield SpreadYield Spread Overlay
"Yield Spread Overlay" is an indicator that displays the yield spread between two currencies based on their respective 10-year bond yields. It overlays directly onto the Forex chart, allowing real-time visualization of the relationship between the yield spread and the currency pair's price movements.
This indicator saves time by avoiding the manual addition of bond yields. Unlike manual methods, it supports smaller timeframes (1h, 4h, etc.), making it particularly useful.
Several customization options are available to suit individual preferences:
Custom Display: Adjust the line thickness and color.
Scale Position: Choose between displaying the scale on the right or left side of the chart.
This indicator helps traders better understand currency relationships and can serve as an additional tool within a Forex trading strategy.
All feedback, suggestions, and critiques—positive or negative—are welcome to continually improve this tool.
Multi-Timeframe EMAsThis TradingView indicator provides a comprehensive overview of price momentum by overlaying multiple Exponential Moving Averages (EMAs) from different timeframes onto a single chart. By combining 1-hour, 4-hour, and daily EMAs, you can observe short-term trends while simultaneously monitoring medium-term and long-term market dynamics. The 1-hour EMA 13 and EMA 21 help capture rapid price changes, which is useful for scalpers or intraday traders looking to identify sudden momentum shifts. Meanwhile, the 4-hour EMA 21 offers a more stable, intermediate perspective, filtering out some of the noise found in shorter intervals. Finally, the daily EMAs (13, 25, and 50) highlight prevailing market sentiment over a longer period, enabling traders to assess higher-level trends and gauge whether short-term signals align with overarching tendencies. By plotting all these EMAs together, it becomes easier to detect confluences or divergences across different time horizons, making it simpler to refine entries and exits based on multi-timeframe confirmation. This script is especially helpful for swing traders and position traders who wish to ensure that smaller timeframe strategies do not conflict with long-term market direction.
Standard Deviation (fadi)The Standard Deviation indicator uses standard deviation to map out price movements. Standard deviation measures how much prices stray from their average—small values mean steady trends, large ones mean wild swings. Drawing from up to 20 years of data, it plots key levels using customizable Fibonacci lines tied to that standard deviation, giving traders a snapshot of typical price behavior.
These levels align with a bell curve: about 68% of price moves stay within 1 standard deviation, 95% within roughly 2, and 99.7% within roughly 3. When prices break past the 1 StDev line, they’re outliers—only 32% of moves go that far. Prices often snap back to these lines or the average, though the reversal might not happen the same day.
How Traders Use It
If prices surge past the 1 StDev line, traders might wait for momentum to fade, then trade the pullback to that line or the average, setting a target and stop.
If prices dip below, they might buy, anticipating a bounce—sometimes a day or two later. It’s a tool to spot overstretched prices likely to revert and/or measure the odds of continuation.
Settings
Higher Timeframe: Sets the Higher Timeframe to calculate the Standard Deviation for
Show Levels for the Last X Days: Displays levels for the specified number of days.
Based on X Period: Number of days to calculate standard deviation (e.g., 20 years ≈ 5,040 days). Larger periods smooth out daily level changes.
Mirror Levels on the Other Side: Plots symmetric positive and negative levels around the average.
Fibonacci Levels Settings: Defines which levels and line styles to show. With mirroring, negative values aren’t needed.
Background Transparency: Turn on Background color derived from the level colors with the specified transparency
Overrides: Lets advanced users input custom standard deviations for specific tickers (e.g., NQ1! at 0.01296).
VICI Algo-V TableVICI Trading Solutions is proud to introduce another powerful tool from our internal trading process: ALGO V ATR Table.
This streamlined, data-rich table is designed to give traders quick and easy access to key support and resistance levels using Average True Range (ATR) data—without cluttering the chart. It’s a perfect complement to our previously released ALGO V indicator, which plots significant ATR-based levels directly on the chart. While that tool is highly effective, we understand that too much on the screen can overwhelm your workspace. That’s why we developed this clean, corner-based ATR Table —so you can stay focused on execution with clarity and confidence.
How It Works:
- The table displays critical ATR levels across multiple timeframes, helping you identify areas of potential support and resistance with precision.
- Each timeframe row is color-coded to reflect its current trend state:
- 🟩 Green – Price is above the cloud and trending up .
- 🟥 Red – Price is below the cloud and trending down .
- ⬜ Gray – Price is inside the cloud and in a neutral/indecisive zone.
- The number next to a gray level shows the price that must be broken to transition to a bullish or bearish trend.
This simple color system allows for immediate insight into market structure and directional bias across multiple timeframes—without second guessing or crowding your chart.
⚠️ Important Note: Due to how TradingView handles higher time frame data, this indicator is designed to function best when applied to a 5-minute or lower time frame. We recommend adding this to your execution chart for the most accurate and responsive data.
Recommended Use:
We suggest pairing this with the original ALGO V indicator to better understand how these levels behave, especially when they appear gray (neutral). This combination provides a full-spectrum view of trend strength, key zones, and potential breakouts .
Whether you’re a scalper, day trader, or swing trader, the ALGO V ATR Table will instantly add value to your trading workflow—offering clear, concise, and actionable insight at a glance.
Algo-V Indicator Can Be Found HERE:
Melody Markets RSI UT+🎵 Melody Markets RSI UT+ – The Reinvented RSI Indicator 🎵
📌 Indicator Description
The Melody Markets RSI UT+ takes the Relative Strength Index (RSI) to the next level by incorporating acceleration zones and the ability to display RSI levels from higher timeframes directly on the price chart.
Unlike traditional RSI indicators that appear in a separate window, Melody Markets RSI UT+ transforms RSI bands into dynamic levels around the price, making market analysis more intuitive and responsive.
🔍 Key Features
✅ RSI integrated into the main chart → No need for a separate window, the RSI is displayed as bands around the price.
✅ RSI Acceleration Zones → Detects bullish and bearish acceleration movements, highlighting price momentum.
✅ Multi-TF RSI Display → View RSI levels from higher timeframes (5min, 15min, 1H, 4H, D...) without switching charts.
✅ Automatic RSI Breakout Detection → Highlights reintegrations and breakouts of RSI boundaries to anticipate reversals.
✅ Fully Customizable → Enable/disable RSI levels, adjust colors and styles of RSI zones, and fine-tune indicator sensitivity.
✅ Built-in Alerts → Get notified when the price crosses a key RSI level or reintegrates an acceleration zone.
📖 How to Use Melody Markets RSI UT+?
1️⃣ Enable RSI Zones → Display RSI bands directly around the price to spot strength or weakness areas.
2️⃣ Identify RSI Accelerations → Colored zones highlight explosive bullish or bearish movements.
3️⃣ Track Higher TF RSI Levels → Enable RSI levels from higher timeframes (H1, H4, D...) to identify key support and resistance zones.
4️⃣ Use RSI Alerts → Get instant notifications when a breakout or reintegration of an RSI level occurs.
5️⃣ Refine Your Entries & Exits → Combine this indicator with other technical tools to confirm your trading decisions.
🎯 Who Is This Indicator For?
🔹 Scalpers & Day Traders → Huge time-saver with an RSI directly integrated into the main chart.
🔹 Swing Traders → Easily track key RSI levels without constantly switching timeframes.
🔹 Beginners & Advanced Traders → A more intuitive and fluid RSI reading, perfect for anticipating market moves.
🔥 Conclusion
Melody Markets RSI UT+ is a game-changing indicator that redefines how RSI is used in trading. Its seamless integration into the main chart, combined with higher TF visualization and acceleration zones, allows traders to make sharper decisions with unmatched clarity.
📌 Add it to your chart now and unlock a new way to trade RSI! 🚀
Melody Markets HL🎵 Melody Markets HL – The Ultimate Multi-TF Highs & Lows Indicator 🎵
📌 Indicator Description
The Melody Markets HL indicator is designed to display key levels from multiple timeframes on a single chart, regardless of your selected timeframe. It allows you to see the Highs and Lows of any timeframe you choose, even on ultra-low timeframes like 1 minute or seconds!
Thanks to advanced point management, each level is precisely drawn at the right moment and disappears exactly at the timeframe shift, ensuring perfect synchronization. This makes it ideal for trading on lower timeframes while maintaining a clear view of higher TF key levels.
🔍 Key Features
✅ Displays Highs & Lows from multiple TFs on a single chart → Trade efficiently on lower TFs while tracking key levels from higher periods.
✅ Full control over displayed TFs → Choose to display only monthly, weekly, daily, 4H, 1H, 15min, 5min, or any other selected TF.
✅ Perfect synchronization → Lines appear exactly when the High or Low is reached and disappear precisely when the timeframe changes.
✅ Easy cycle recognition → A colored background highlights new periods (day, 4H, 1H, 15min…) to help structure your market analysis.
✅ Optimized for Scalping & Intraday → Designed to keep lower TF trading smooth by preventing visual clutter.
✅ Fully customizable → Enable/disable selected TFs, change line colors, thickness, and styles to fit your trading strategy.
📖 How to Use Melody Markets HL?
1️⃣ Select which TFs to display → Choose the TFs for which you want to see Highs & Lows (M, W, D, 4H, 1H, 15min, 5min, or any other available TF).
2️⃣ Trade on a lower TF with major levels → Stay in 1min, 5s, 10s, etc. and see how price reacts to higher TF levels.
3️⃣ Anticipate reversals → Highs and Lows from higher TFs act as dynamic support and resistance, perfect for entry validation.
4️⃣ Use period color highlights → The colored background marks cycle shifts for better market structure understanding.
5️⃣ Customize to match your style → Adjust colors, thickness, and line styles for an optimized display.
🎯 Who Is This Indicator For?
🔹 Scalpers & Day Traders → Trade efficiently on 1min or second-based TFs while tracking key levels.
🔹 Swing Traders → Observe major levels on a lower TF without switching charts.
🔹 Beginners & Experienced Traders → A perfect tool for structuring the market and understanding the influence of major TFs.
🔥 Conclusion
Melody Markets HL is the ideal tool for trading effectively on lower TFs without losing sight of higher timeframe key levels. Its intelligent and precise display system helps you structure your trading and optimize decision-making.
📌 Add it to your chart and enhance your market analysis today! 🚀
CandelaCharts - X Model📝 Overview
The X Model Indicator is a sophisticated trading strategy designed to identify high-probability entry points for both long and short positions. It utilizes a combination of key market levels, price action patterns, and multi-timeframe analysis to generate precise signals.
The model offers tailored entry conditions for both long and short trades, ensuring optimized risk-reward setups.
📦 Features
Previous Day High/Low (ERL): Resistance level from the previous day’s high/low.
H1 Bullish/Bearish FVG (IRL): A Bullish Fair Value Gap (FVG) on the 1-hour chart indicating price target potential.
m15 MSS / SMT: Market Structure Shift and Smart Money Technique on the 15-minute chart confirming the market's direction.
Only Short/Long Above/Below 00:00: Triggers short positions only after midnight to avoid potential market noise from earlier sessions.
⚙️ Settings
Core
Status: Filter models based on status
Bias: Controls what model type will be displayed, bullish or bearish
Fractal: Controls the timeframe pairing will be used
Sweep: Shows the sweep that forms a model
I-sweep: Controls the visibility of invalidated sweeps
D-purge: Plots the double purge sweeps
CISD: Displays the Change In State of Delivery for a model
Labels: Adjust the HTF candle label size
History
History: Controls the amount of past models displayed on the chart
HTF
Candles: Controls the number of HTF candles that will be visible on the chart
Open: Highlights with a line the open price of the current HTF candle
Show True Day Open: Display True Day Open line
Offset: Controls the distance of HTF from the current chart
Space: Controls the space between HTF candles
Size: Controls the size of HTF candles
LTF
H/L Line: Displays on the LTF chart High and Low of each HTF candle
O/C Line: Displays on the LTF chart Open and Close of each HTF candle
PD Arrays
PD Array: Displays ICT PD Arrays
CE Line: Style the equilibrium line of the PD Array
Border: Style the border of the PD Array
Projections
StDev: Controls standard deviation available levels
Labels: Controls the size of standard deviation levels
Anchor: Controls the anchor point of standard deviation levels (wick, body)
Lines: Controls the line widths and color of standard deviation levels
Dashboard
Panel: Display information about the current model
💡 Framework
The model incorporates multiple timeframe alignments for increased precision and reliability. The following timeframes are utilized for a comprehensive view of the market:
1m - 5m - 1H
2m - 15m - 4H
3m - 20m - 8H
5m - 30m - 12H
15m - 1H - 1D
1H - 4H - 1W
4H - 1D - 1M
1D - 1W - 3M
1W - 1M - 12M
These alignments ensure that the model captures both short-term price movements and longer-term trends, allowing for well-informed decision-making across various market conditions.
The X Model Indicator employs a precise set of conditions for both short and long entries, designed to capture optimal market opportunities based on key price levels, market imbalances, and institutional activity. These conditions combine multiple timeframes, price action patterns, and market sentiment to enhance the accuracy of entry signals.
Here's how each condition works:
Short Entry Conditions:
Previous Day High (ERL): The previous day’s high acts as a significant resistance level for the market. A price rejection or failure to break above this level indicates a potential short opportunity, as the market may reverse or consolidate.
H1 Bullish FVG (IRL): A Bullish Fair Value Gap (FVG) on the 1-hour chart highlights an area of price imbalance. This signals that the price may attempt to move back into this gap, providing a high-probability short entry if combined with other bearish signals.
m15 MSS / SMT: On the 15-minute chart, the Momentum Shift (MSS) and Smart Money Tool (SMT) indicators are used to confirm market manipulation or shift in momentum. If these indicators show bearish market activity, they strengthen the case for a short position.
Only Short Above 00:00: To avoid noise from earlier market sessions, the model only triggers short entries after midnight (00:00), ensuring that the trade occurs during a more stable, predictable phase of the trading day.
Long Entry Conditions:
Previous Day Low (ERL): The previous day’s low serves as a support level, marking an area where the price is likely to bounce. If the price pulls back and tests this level, it suggests a high-probability long entry, especially when other indicators align.
H1 Bearish FVG (IRL): A Bearish Fair Value Gap (FVG) on the 1-hour chart shows an imbalance to the downside, where the price may reverse and move upwards. This gap is often seen as an opportunity for the price to return to equilibrium, presenting a favorable long entry.
m15 MSS / SMT: The Momentum Shift (MSS) and Smart Money Tool (SMT) on the 15-minute chart help identify the market’s true intentions. A shift towards bullish momentum or signs of smart money accumulation increases the likelihood of a successful long entry.
Only Long Below 00:00: To focus on the market’s early session dynamics, the model only triggers long entries before midnight (00:00), capturing potential moves during quieter periods when the price can show clearer directional trends.
⚡️ Showcase
Introducing X Model is a powerful trading tool designed to elevate your market analysis and boost your trading success.
Bearish Model
Bullish Model
Unlock your full trading potential and experience the difference with X Model — your ultimate tool for smarter, more informed trading decisions.
🚨 Alerts
This script offers alert options for all model types. The alerts need to be setup manually from Tradingview.
Bearish Model
A bearish model alert is triggered when a model forms, signaling a high sweep on HTF and CISD on LTF.
Bullish Model
A bullish model alert is triggered when a model forms, signaling a low sweep on HTF and CISD on LTF.
⚠️ Disclaimer
These tools are exclusively available on the TradingView platform.
Our charting tools are intended solely for informational and educational purposes and should not be regarded as financial, investment, or trading advice. They are not designed to predict market movements or offer specific recommendations. Users should be aware that past performance is not indicative of future results and should not rely on these tools for financial decisions. By using these charting tools, the purchaser agrees that the seller and creator hold no responsibility for any decisions made based on information provided by the tools. The purchaser assumes full responsibility and liability for any actions taken and their consequences, including potential financial losses or investment outcomes that may result from the use of these products.
By purchasing, the customer acknowledges and accepts that neither the seller nor the creator is liable for any undesired outcomes stemming from the development, sale, or use of these products. Additionally, the purchaser agrees to indemnify the seller from any liability. If invited through the Friends and Family Program, the purchaser understands that any provided discount code applies only to the initial purchase of Candela's subscription. The purchaser is responsible for canceling or requesting cancellation of their subscription if they choose not to continue at the full retail price. In the event the purchaser no longer wishes to use the products, they must unsubscribe from the membership service, if applicable.
We do not offer reimbursements, refunds, or chargebacks. Once these Terms are accepted at the time of purchase, no reimbursements, refunds, or chargebacks will be issued under any circumstances.
By continuing to use these charting tools, the user confirms their understanding and acceptance of these Terms as outlined in this disclaimer.
Time Marker Pro: Vertical Line at Key Times)Smart Vertical Line at Specific Time (with Timezone, Color, and Width Controls)
This script draws a vertical line on your chart at a user-defined time once per day, based on the selected timezone.
🕒 Key Features:
Set your target hour and minute
Choose from a list of common timezones (Tehran, UTC, New York, etc.)
Customize the line color and thickness
Works across all intraday timeframes (1min, 5min, 15min, etc.)
Adjusts automatically to bar intervals — no need for exact time matching
This is perfect for traders who want to:
Highlight the start of a session
Mark specific news times, breakouts, or routine entries
Visualize key time-based levels on the chart
MA CloudThis indicator plots a Moving Average (MA) cloud with ultra-smooth visuals, designed to help traders identify trend direction, momentum, and volatility in a clear and intuitive way.
Features:
Multiple MA types: choose between EMA, SMA, WMA, or RMA
Adaptive cloud width: based on standard deviation of price to visualize volatility
Smoothing controls: post-processed smoothing gives a silky, curved appearance
Multi-Timeframe (MTF) support: default to chart timeframe, or override to any custom timeframe (e.g. 1H, 1D, etc.)
Custom styling: adjustable colours, line thickness, and cloud opacity
Use cases:
Quickly assess trend strength and direction
Use cloud thickness as a volatility proxy
Spot pullback entries during trending conditions
Combine with price action or support/resistance for confluence
Settings:
MA Type – select your preferred moving average method
MA Length – period for the average
Cloud Width Factor – adjusts the distance of the cloud edges
Smoothing Length – softens the output for a polished look
Timeframe – optional override to analyse data from a higher or lower timeframe
Integrated Reversal & Divergence DetectionThe Integrated Reversal & Divergence Detection indicator (IntgRevDiv) combines two powerful technical analysis systems into one comprehensive tool:
Advanced Reversal Detection System: Identifies potential market reversals using volume analysis, RSI divergence, and smart money techniques.
Divergence Indicator System: Detects regular and hidden divergences using multiple technical indicators and fractal patterns.
This integration provides confirmation from multiple analysis methods, resulting in higher quality trading signals.
Divergence Lines
When System B detects divergences, it draws lines connecting the relevant price pivots:
Green Lines: Connect bullish divergence pivot points.
Red Lines: Connect bearish divergence pivot points.
Information Tables
The indicator displays two information tables:
System A Table (Bottom Right):
Current signal status (BUY/SELL/NEUTRAL)
Volume, RSI, and SMT divergence status.
Composite signal information.
Divergence Table (Top Right):
Divergence existence indicators (+/-).
Consecutive divergence count.
Divergence quality rating.
Phase change indicators.
This system analyzes multiple factors to detect potential market reversals:
Volume Delta Analysis:
Calculates the difference between buying and selling volume.
Detects divergence between price action and volume.
When price increases but volume decreases, it may signal weakness.
RSI Divergence Detection:
Regular Divergence: Price makes a higher high but RSI makes a lower high (bearish) or price makes a lower low but RSI makes a higher low (bullish).
Hidden Divergence: Price makes a lower high but RSI makes a higher high (bearish) or price makes a higher low but RSI makes a lower low (bullish).
Smart Money Technique (SMT):
Analyzes correlation between the current instrument and a reference symbol.
Detects divergence in the correlation that may signal institutional activity.
Balance Range & Momentum Detection:
Identifies periods of price balance before breakouts.
Detects rapid price movements that may indicate reversals.
This system also focuses exclusively on detecting divergences using:
Multiple Technical Indicators:
MACD: Momentum and trend-following indicator.
Awesome Oscillator (AO): Momentum indicator.
RSI: Oscillator showing overbought/oversold conditions.
Fractal Pattern Detection:
Identifies swing highs and lows using fractals.
Uses these pivot points to detect divergences.
Phase Change Monitoring:
Detects when the histogram switches from positive to negative or vice versa.
Provides additional confirmation of trend changes.
Consecutive Divergence Tracking:
Counts consecutive bullish/bearish divergences.
Assigns quality ratings based on the count:
1 divergence: "Normal Dive".
2 divergences: "Good Dive".
3+ divergences: "Strong Dive".
Multi-Timeframe Analysis:
Apply the indicator to multiple timeframes.
Look for alignment of signals across timeframes.
Use longer timeframes for trend direction, shorter for entry timing.
Signal Filtering Based on Quality:
For higher probability trades, only take signals when:
Divergence quality shows "Good" or "Strong".
Phase change indicators show "+" in the direction of your trade.
Multiple divergence types (Volume, RSI, SMT) show agreement.
Combining with Support/Resistance:
Use the indicator's signals near key support/resistance levels.
Buy signals near support areas have higher probability.
Sell signals near resistance areas have higher probability.
Market Regime Adaptation:
I n trending markets: Focus on hidden divergences and SMT.
In ranging markets: Focus on regular divergences and RSI.
In high volatility: Increase the Volume Delta Threshold.
In low volatility: Decrease the Fractal Periods.
Signal Combination Logic Selection:
For fewer but higher quality signals: Use "Consensus" mode.
For more trading opportunities: Use "Enhanced" mode.
To emphasize price action reversals: Use "System A Priority".
To emphasize technical divergences: Use "System B Priority".
Market-Specific Adjustments:
Stocks/Indices: Focus on Volume Delta and RSI divergence.
Forex: Emphasize SMT and RSI divergence.
Crypto: Balance all three with slightly higher weight on Volume.
Commodities: Focus on MACD for divergence detection.
This indicator provides multiple layers of market analysis through its integrated approach. By understanding each component's function and how they work together, you can develop a nuanced trading strategy that takes advantage of high-probability reversal and divergence setups across various market conditions.
CandelaCharts - CRT Model📝 Overview
The Candle Range Theory (CRT) is a trading concept that focuses on analyzing the price movement within the range of individual candlesticks to understand market dynamics and predict future price actions.
It posits that each candlestick represents a distinct range of price action, defined by its high, low, open, and close, and that price movements are structured within these ranges.
📦 Features
Timeframe Pairing: This indicator highlights movements on lower timeframes within higher timeframe candles, providing insights into micro trends, structural changes, and potential entry points.
Bias Selection: This feature allows analysts to manage bias and identify setups, displaying bullish, bearish, or neutral models that align with higher timeframe trends.
Double Purge Sweeps: A double purge is a type of sweep where the price breaks both the high and low of the previous candle (through the wicks) before closing within the range of that same candle.
CRT Times: Times when high-probability CRTs occur.
HTF Candles: The CRT Model is rooted in the ICT Power of Three, assisting traders in identifying key turning points and market transitions across multiple timeframes.
Dashboard: Create a customizable table that displays key details such as timeframe pairing, time to next candle close, bias, and time filter settings.
Any Market: Ideal for all markets - stocks, forex, crypto, futures, commodities and more - delivering consistent results and insights across diverse trading environments.
⚙️ Settings
Core
Status: Filter models based on status
Bias: Controls what model type will be displayed, bullish or bearish
Fractal: Controls the timeframe pairing will be used
Mean: Plots the equilibrium of the previous HTF candle
Liquidity: Displays the liquidity levels that belongs to the model
Sweep: Shows the sweep that forms a model
I-sweep: Controls the visibility of invalidated sweeps
D-purge: Plots the double purge sweeps
CISD: Displays the Change In State of Delivery for a model
Labels: Adjust the HTF candle label size
C-area: Highlights the region between current candle open and previous candle equilibrium
History
History: Controls the mount of past models displayed on the chart
Time
2-3-4: Filter models based on 2-3-4 AM hours
7-8-9: Filter models based on 7-8-9 AM hours
8-9-10: Filter models based on 8-9-10 AM / PM hours
1-5-9: Filter models based on 1-5-9 AM / PM hours
2-6-10: Filter models based on 2-6-10 AM / PM hours
Custom: Filter models based on Custom hours
HTF
Candles: Controls the number of HTF candles that will be visible on the chart
Open: Highlights with a line the open price of current HTF candle
Show True Day Open: Display True Day Open line
Offset: Controls the distance of HTF from the current chart
Space: Controls the space between HTF candles
Size: Controls the size of HTF candles
LTF
H/L Line: Displays on the LTF chart High and Low of each HTF candle
O/C Line: Displays on the LTF chart Open and Close of each HTF candle
Projections
StDev: Controls standard deviation available levels
Labels: Controls the size of standard deviation levels
Anchor: Controls the anchor point of standard deviation levels (wick, body)
Lines: Controls the line widths and color of standard deviation levels
Dashboard
Panel: Display information about current model
💡 Framework
The CRT Model is designed to analyze and interpret price action patterns through various components, each of which plays a critical role in identifying market trends and providing actionable insights.
The model incorporates the following timeframe alignments:
15s - 5m
1m - 15m
2m - 20m
3m - 30m
5m - 1H
15m - 4H
30m - 12H
1H - 1D
4H - 1W
1D - 1M
1W - 3M
Below are the key components that make up the model:
Sweep
D-purge
CISD
Mean
C-area
Projections
Liquidity
The CRT Model follows a specific lifecycle, which highlights the current state of the model and determines whether a trade opportunity is valid.
The model's lifecycle includes the following statuses:
Formation (grey)
Invalidation (red)
Success (green)
By utilizing the phases of Formation, Invalidation, and Success, traders can efficiently manage their positions, reduce risk, and take advantage of high-probability setups offered by the CRT Model.
⚡️ Showcase
Introducing CRT Model is a powerful trading tool designed to elevate your market analysis and boost your trading success. Built with precision and advanced algorithms, this indicator helps you identify key trends, potential entry and exit points, and optimize your strategy for better decision-making.
HTF Candles
C-areas
Time Filters
Unlock your full trading potential and experience the difference with CRT Model — your ultimate tool for smarter, more informed trading decisions.
🚨 Alerts
This script offers alert options for all model types. The alerts need to be setup manually from Tradingview.
Bearish Model
A bearish model alert is triggered when a model forms, signaling a high sweep and CISD.
Bullish Model
A bullish model alert is triggered when a model forms, signaling a low sweep and CISD.
⚠️ Disclaimer
These tools are exclusively available on the TradingView platform.
Our charting tools are intended solely for informational and educational purposes and should not be regarded as financial, investment, or trading advice. They are not designed to predict market movements or offer specific recommendations. Users should be aware that past performance is not indicative of future results and should not rely on these tools for financial decisions. By using these charting tools, the purchaser agrees that the seller and creator hold no responsibility for any decisions made based on information provided by the tools. The purchaser assumes full responsibility and liability for any actions taken and their consequences, including potential financial losses or investment outcomes that may result from the use of these products.
By purchasing, the customer acknowledges and accepts that neither the seller nor the creator is liable for any undesired outcomes stemming from the development, sale, or use of these products. Additionally, the purchaser agrees to indemnify the seller from any liability. If invited through the Friends and Family Program, the purchaser understands that any provided discount code applies only to the initial purchase of Candela's subscription. The purchaser is responsible for canceling or requesting cancellation of their subscription if they choose not to continue at the full retail price. In the event the purchaser no longer wishes to use the products, they must unsubscribe from the membership service, if applicable.
We do not offer reimbursements, refunds, or chargebacks. Once these Terms are accepted at the time of purchase, no reimbursements, refunds, or chargebacks will be issued under any circumstances.
By continuing to use these charting tools, the user confirms their understanding and acceptance of these Terms as outlined in this disclaimer.
DUN Lines IndicatorThe DUN Lines indicator detects, filters and plots price imbalances (aka fair value gaps or fvgs/ifvgs). It is unique in the fact that it uses five timeframes and filters out overlapping, lower timeframe imbalances and fvgs below a user-definable size threshold.
Simply set your detection timeframes, colors and thresholds then set your chart to your preferred entry timeframe. When imbalances are mitigated, the FVG/IFVG is removed from the chart.
The indicator's default colors are my preferred ones for differentiating between timeframes, but these are easily changed. A single color with various levels of transparency to indicate timeframe strength is another approach that works nicely.
HTF Coloured PeriodThe "HTF Coloured Period" indicator colors the candles on the current chart based on the direction of a higher timeframe (HTF) candle. Here's how it works:
Higher Timeframe Selection :
- The user can set the higher timeframe period, which can be adjusted in minute increments. The default is 1 day (1440 minutes) , but it can be customized to any desired timeframe.
Higher Timeframe Data :
- The indicator compares the open and close prices of the higher timeframe's candle.
Direction Determination :
- If the higher timeframe candle is bullish ( close > open ), it considers the candle as green .
Coloring Candles :
- If the higher timeframe candle is bullish, the current chart's candles are colored green . If it's bearish, the candles are colored red .
The result is a visual indicator where the lower timeframe candles are color-coded based on whether the higher timeframe candle is bullish or bearish, helping to identify alignment with the higher timeframe trend.
Fibonacci Forecast IndicatorThis indicator projects potential price movements into the future based on user-defined Fibonacci-period moving averages. By default, it calculates Simple Moving Averages (SMAs) for the 3, 5, 8, 13, and 21 bars (though you can customize these values). For each SMA, it measures the distance between the current closing price and that SMA, then extends the price forward by the same distance.
Key Features
1. Fibonacci MAs:
- Uses Fibonacci numbers (3, 5, 8, 13, 21) for SMA calculations by default.
- Fully customizable periods to fit different trading styles.
2. Forecast Projection:
- If the current price is above a given SMA, the forecast line extends higher (bullish bias).
- If the current price is below the SMA, the forecast line extends lower (bearish bias).
- Forecast lines are anchored at the current bar and project forward according to the same Fibonacci intervals.
3. Clean Visualization:
- Draws a series of connected line segments from the current bar’s close to each forecast point.
- This approach offers a clear, at-a-glance visual of potential future price paths.
How to Use
1. Add to Chart:
- Simply apply the indicator to any chart and timeframe.
- Adjust the Fibonacci periods and styling under the indicator settings.
2. Interpretation:
- Each forecast line shows where price could potentially head if the current momentum (distance from the SMA) continues.
- When multiple lines are consistently above (or below) the current price, it may reinforce a bullish (or bearish) outlook.
3. Customization:
- You can modify the number of forecast lines, their color, and line width in the inputs.
- Change or add your own Fibonacci periods to experiment with different intervals.
Notes and Best Practices
- Confirmation Tool: This indicator is best used alongside other forms of technical or fundamental analysis. It provides a “what-if” scenario based on current momentum, not a guaranteed prediction.
- Not Financial Advice: Past performance doesn’t guarantee future results. Always practice proper risk management and consider multiple indicators or market factors before making trading decisions.
Give it a try, and see if these Fibonacci-based projections help visualize where price may be headed in your trading strategy!