V buy sell indicatorV buy sell indicator is a non-repainting signal system that identifies potential market reversals with structured precision. 
⚠ Disclaimer: This V buy sell indicator is an analytical tool for educational purposes. It does not guarantee trading results. Always use proper risk management.
Göstergeler ve stratejiler
CB RSI Laguerre Self Adjusting with Fractal Energy [6.1]The "CB RSI Laguerre Self Adjusting with Fractal Energy  " (shortened as CB_RSILg_FE ) is a custom technical indicator that combines two core components: a Laguerre-filtered RSI (a smoothed, adaptive version of the Relative Strength Index) and Fractal Energy (FE) (a measure of market "energy" or volatility compression). The indicator focuses on identifying polarity changes (shifts from bullish to bearish momentum or vice versa) in highly liquid assets. Inspired by Mobius' use in ThinkorSwim. 
The strategy emphasizes trading when RSI Laguerre and FE are in "confluence" (alignment). 
For example:
 
 High FE (>0.6) suggests price compression/sideways movement, building energy for a breakout.
 Low FE (<0.3) indicates trend exhaustion.
 RSI Laguerre crossings at key levels (0.2 for oversold, 0.8 for overbought) signal potential entries, with FE providing context on whether the market is ready for a move.
 
The indicator provides visual plots, alerts, bubbles, and a table to guide manual trading. It uses Gaussian smoothing to reduce noise in price data, making it suitable for options or spot trading where volatility timing is key. For options, adjust FE length (nFE) to match your holding period (shorter for energy build-up, longer for reversion).
Step-by-Step Breakdown of How the Indicator Works
I'll explain the code's logic sequentially, referencing key sections. 
 1. Inputs: 
 
 User-configurable parameters like nFE (Fractal Energy length, default 8), Glength (Gaussian filter length, default 13), betaDev (Gaussian beta deviation, default 8), source data (src, default close), ATR settings for targets, and display options.
 How it works: These allow customization. For example, nFE=8 is a base for short-term FE; increase for longer-term analysis.
 
 2. Gaussian Filter Calculations: 
 
 Computes smoothed versions of open (Go), high (Gh), low (Gl), and close/source (Gc) using a 4-pole Gaussian filter.
 Formulas: Based on alpha/beta derived from wavelength (w) and deviation.
 Derived values: o, h, l, c from filtered data (e.g., h = max(Gh, Gc ) to capture smoothed highs).
 How it works: This pre-processes price data to remove noise, creating a "filtered" OHLC for subsequent calculations. It's like applying a low-pass filter to focus on trends.
 Why it's important: Reduces false signals in noisy markets.
 
 3. Fractal Energy (FE, gamma): 
 
 Formula: gamma = log(sum(h - l, nFE) / (highest(Gh, nFE) - lowest(Gl, nFE))) / log(nFE)
 How it works: Measures "fractal dimension" or market efficiency. It's a gauge of mean-reversion vs. linearity:
 
 High gamma (>0.6): Sideways/compressed market, building energy (think "squeeze" for breakout).
 Low gamma (<0.3): Trending market nearing exhaustion (think "running out of gas").
 Descending gamma: Trend strengthening; ascending: Reversion building.
 Plotted in yellow.
 Why it's important: Provides context for RSI signals. Trade when FE aligns (e.g., enter on RSI signal if FE >0.6 for high-probability polarity change).
 
 4. Laguerre Filters and RSI Calculation: 
 
 Laguerre filters (L0 to L3): Adaptive IIR filters using gamma (FE) as the damping factor.
 L0 = (1 - gamma) * Gc + gamma * L0 , and similar for L1-L3.
 CU/CD: Cumulative up/down differences between filters (e.g., CU1 = L0 >= L1 ? L0 - L1 : 0).
 RSI: RSI = CU / (CU + CD) (normalized between 0 and 1).
 How it works: Laguerre RSI is a self-adjusting oscillator. Gamma makes it adaptive: higher gamma (high FE) slows adaptation for sideways markets; lower gamma speeds it for trends. This creates a smoother RSI less prone to whipsaws.
 Plotted in aqua, with levels at 0.2 (oversold, red cloud), 0.8 (overbought, green cloud), 0.5 (mid), 0.618/0.382 (FE thresholds).
 rsiu: Tracks "up" state (1 after crossing 0.8 or 0.2, resets on crossunder 0.8 if RSI <=0.2). Used for conditional signals.
 Why it's important: Standard RSI lags; Laguerre adapts via FE for better timing.
 
 5. Plots, Clouds, and Alerts: 
 
 Plots: RSI (aqua), gamma (yellow), hidden levels.
 Clouds: Red (0-0.2, oversold), Green (0.8-1, overbought).
 Alerts: If AlertOn=true, triggers on RSI crossunder 0.8 ("RSI Cross Below 0.8" – potential short) or crossover 0.2 ("RSI Cross Above 0.2" – potential long).
 How it works: Visual aids for quick interpretation.
 
 6. ATR and Target Calculation: 
 
 ATR: Smoothed true range over atr_length (default 14).
 Target: Entry price +/- (atr_factor * ATR), rounded to tick size.
 Goal met: goalu=1 if long and high >= target; goald=1 if short and low <= target (persists until new signal).
 How it works: Provides risk-based profit targets (e.g., 3x ATR for reward:risk).
 
 7. Entry and Direction Logic: 
 
 cond_long: RSI crossover 0.2 (from oversold) OR (if not in rsiu ==1, crossover 0.8 – captures reversals from below).
 cond_short: RSI crossunder 0.8 (from overbought) OR (if in rsiu ==1, crossunder 0.2 – captures failures in up mode).
 Entry: Close price on condition; persists.
 u_d: 1 (long), -1 (short); persists.
 How it works: Detects polarity shifts. The conditional clauses (using rsiu) handle two scenarios: standard OS/OB crosses and "failure" crosses (e.g., crossing 0.8 from low when not up).
 Bubbles/Table: Display entry/target on chart (e.g., entry bubble at signal bar, table with FE/RSI/Entry/Target info).
M5 Predictor by AbdullayevXAUUSD M5 Predictive System 
A multi-layer scoring system that predicts the next 5-minute candle direction for Gold.
 📊 THE LOGIC: 
This indicator combines 4 key factors to predict where the next candle will go:
1. Higher Timeframe Context - checks if M15 and H1 trends align
2. Current Candle Strength - analyzes body size, volume, and close position
3. Market Position - measures distance from VWAP and key levels
4. Price Patterns - detects engulfings, traps, and trend structures
Each factor gives a score. Total score ≥ +3 = BUY signal, ≤ -3 = SELL signal.
 🎯 HOW TO USE: 
- Green arrow + "BUY X%" = Go long at candle open
- Red arrow + "SELL X%" = Go short at candle open
- Higher % = stronger confidence
- Dashed lines show Stop Loss and Take Profit levels
- No signal = market is choppy or weak setup
 ⚙️ FEATURES: 
✓ Automatic Stop/Take levels based on ATR
✓ Time-of-day filter (stronger signals during London/NY sessions)
✓ Chop filter (no signals when market ranges)
✓ Confidence scoring (50-100%)
✓ Built-in alerts
 💡 BEST FOR: 
Gold (XAUUSD) scalpers on 5-minute timeframe who want clear entry/exit levels with probability-based signals.
 ⚠️ Not financial advice. Use proper risk management.
MomentumQ Ratio MatrixMomentumQ Ratio Matrix — Intermarket Risk & Sector Relationship Dashboard
The  MomentumQ Ratio Matrix  is a compact, on-chart dashboard designed to help traders quickly interpret intermarket relationships and sector leadership through key ETF ratios.
It visualizes the balance between  risk-on vs. risk-off sentiment ,  growth vs. value rotation , and  defensive vs. cyclical behavior  — giving you an instant read of where capital is flowing in the U.S. market.
 What It Does 
The indicator compares weekly and daily percentage returns for five critical sector ETF pairs. Each pair represents a specific aspect of market structure or investor preference.
When a ratio is  rising , it means the  first sector is outperforming the second  — signaling increased risk appetite or leadership from growth sectors.
When a ratio is  falling , it indicates  defensiveness, capital rotation, or weakening momentum  in risk-oriented areas.
 Examples: 
 
 XLY/XLP  ↑ → Consumers are spending more on discretionary items (risk-on).
  XLY/XLP  ↓ → Money shifts into staples (risk-off, defensive tone).
 XLK/XLF  ↑ → Technology leads Financials (growth leadership).
  XLK/XLF  ↓ → Financials lead, signaling preference for value or cyclicals.
 XLI/XLU  ↑ → Industrials outperform Utilities (economic optimism).
  XLI/XLU  ↓ → Utilities outperform (defensive capital rotation).
 XLE/XLB  ↑ → Energy leading Materials (inflation or commodity strength).
  XLE/XLB  ↓ → Materials outperform (cooling inflationary trends).
 XLV/XLU  ↑ → Healthcare stronger than Utilities (mild defensiveness, but stable risk appetite).
  XLV/XLU  ↓ → Utilities lead (risk aversion, defensive positioning).
 
Color-coded cells highlight each ratio’s short-term and medium-term performance:
 
 Green → Ratio rising (risk-on, cyclical, or growth leadership).
 Red → Ratio falling (risk-off, defensive, or value rotation).
 Gray → Neutral performance.
 
 Key Features 
 
 Essential Ratio Coverage  — Tracks the five most meaningful ETF ratios for intermarket and sentiment analysis.
 Multi-Timeframe Analysis  — Displays both Weekly and Daily (or Previous Day) changes for each ratio.
 Adaptive Table Layout  — Adjustable size, position, and decimal precision to fit any chart.
 Light / Dark Mode Support  — Automatically adapts to match your TradingView theme.
 Performance-Based Coloring  — Green for strength, red for weakness, and gray for neutral.
 
 How to Use 
 
 Add the indicator to any chart (symbol-independent).
 Choose your table position and size from the settings.
 Toggle between Today and PrevD mode for different time comparisons.
 Use the color-coded returns to gauge where capital is flowing.
 Watch for shifts across multiple ratios to confirm changing market regimes.
 
When most ratios are green, the market generally favors growth and higher risk assets (risk-on).
When most are red, defensive sectors and value stocks tend to lead (risk-off).
 Why It’s Valuable 
 
 Condenses intermarket and macro relationships into one visual dashboard.
 Helps identify leadership shifts between risk, growth, and defensive sectors.
 Provides a real-time snapshot of market sentiment without switching charts.
 Supports both short-term tactical and long-term trend confirmation.
 
 Disclaimer 
The MomentumQ Ratio Matrix is designed for educational and analytical purposes only.
It does not constitute financial advice or guarantee profitability.
Always conduct independent analysis and apply proper risk management when trading.
EZ-TRADEZ PROEZ-TRADEZ PRO gives optimized buy/sell signals for Forex, Stocks, and Crypto. It includes stop loss and take profit levels, backtested non-repainting signals, and adjustable volatility filters
EZ-TRADEZ CRYPTOEZ-TRADEZ CRYPTO gives optimized buy/sell signals for stocks. It includes stop loss and take profit levels, backtested non-repainting signals, and adjustable volatility filters
Session Precision Combinations[RICHECAPITAL]The Precise Sessions Indicator provides exact segmentation of data streams into defined sessions for granular performance analysis. By isolating activity within configurable time windows, it enables users to track metrics, monitor engagement, and detect temporal trends with exceptional accuracy. Whether used for user behavior tracking, server performance monitoring, or event-driven analytics, it ensures that insights are tied precisely to relevant time segments — eliminating noise and improving interpretability.
ICT Daily Wick QuadrantsICT DAILY WICK QUADRANTS
Inspired by ICT's teachings, this indicator allows you to view previous daily wicks (adjustable ratio to body threshold) on any timeframe chart, both at their origin and conveniently ahead of price. 
Color coding, day of week labels, and directional arrows allow you to easily identify and visualize any notable daily candles wick in order to anticipate potential price behavior at that qaudrant. Keeping your chart clean and free of clutter is important. 
Thanks to a great idea by @fadizeidan aka (fadi), the lines will remain muted to an adjustable degree according to a user adjusted distance of price. This will only highlight levels nearby and relevant to current price action, while fading out more distant levels. Of course this is optional and adjustable.  
Each daily candle wick label contains options to show the percentage (0%,25%,50%,75%,100%), the direction of the candle (arrow up for up close, arrow down for down close), the open, close, lower quadrant, mid, upper quadrant, and high/low of that candle, and the day of the week. There is also a set of labels with the same option
EZ-TRADES STOCKSEZ-TRADEZ STOCKS gives optimized buy/sell signals for stocks. It includes stop loss and take profit levels, backtested non-repainting signals, and adjustable volatility filters
EZ-TRADEZ FOREX)EZ-TRADEZ FOREX gives optimized buy/sell signals for Forex. It includes stop loss and take profit levels, backtested non-repainting signals, and adjustable volatility filters
ScalpMaster – Breaker BlocksIdeal for scalpers📈and intraday traders who rely on breaker-block reactions and market-structure shifts to refine entries and exits.
Add it to your chart, enable alerts for Signal UP and Signal DN, and combine with your own bias or higher-timeframe analysis.
✅ Automatic breaker-block detection (+BB / –BB)
✅ Real-time signal UP / signal DN
✅ Market-structure swing and PD Array visualization
✅ Optional take-profit targets (R:R zones)
✅ Alert conditions for every signal event
✅ Works on any timeframe & asset
MomentumQ Breadth 2.0MomentumQ Breadth 2.0 
The  MomentumQ Breadth 2.0  is a user-friendly overlay tool that helps traders analyze market breadth directly on the price chart. It supports multiple indices, flexible time frames, and optional background coloring to highlight bullish, neutral, and bearish conditions.
 How It Works: 
 Index Selection 
Choose between major market indices for analysis:
 
 S&P 500
 NASDAQ
 Dow Jones Industrial Average (DJIA)
 Russell 2000
 
 Time Period Customization 
Select from different moving-average periods to suit your strategy:
 
 5-Day
 20-Day
 50-Day
 100-Day
 150-Day
 200-Day
 
Shorter periods react faster to changes in participation, while longer periods show broader market trends.
 Dynamic Symbol Mapping 
The indicator automatically selects the correct breadth symbol based on the chosen index and time period using TradingView’s  request.security()  function. No manual lookup is needed.
 Symbols Used 
 S&P 500 
 
 5-Day: S5FD
 20-Day: S5TW
 50-Day: S5FI
 100-Day: S5OH
 150-Day: S5OF
 200-Day: S5TH
 
 NASDAQ 
 
 5-Day: NDFD
 20-Day: NDTW
 50-Day: NDFI
 100-Day: NDOH
 150-Day: NDOF
 200-Day: NDTH
 
 Dow Jones Industrial Average (DJIA) 
 
 5-Day: DIFD
 20-Day: DITW
 50-Day: DIFI
 100-Day: DIOH
 150-Day: DIOF
 200-Day: DITH
 
 Russell 2000 
 
 5-Day: R2FD
 20-Day: R2TW
 50-Day: R2FI
 100-Day: R2OH
 150-Day: R2OF
 200-Day: R2TH
 
 Key Features 
 
 Overlay mode displays the breadth line directly on the price chart.
 Dynamic background coloring highlights key breadth zones:
Above 70 = Bearish/Overbought, 50–70 = Slightly Bearish, 30–50 = Slightly Bullish, Below 30 = Bullish/Oversold.
 Fully customizable colors and transparency.
 Automatic adjustment for dark or light chart themes.
 Toggle background coloring on or off in the settings.
 
 Concepts and Calculations 
Market breadth measures how many stocks are participating in a market move. The indicator uses predefined symbols showing the percentage of index constituents trading above their chosen moving average. A rising breadth line indicates strong participation, while a falling line signals weakness or narrowing leadership.
 How to Use 
 
 Add the MomentumQ Breadth 2.0 to your TradingView chart.
 Open the settings panel.
 Select your preferred index and time period.
 Enable or disable background coloring as desired.
 Interpret the breadth readings:
Above 70 = strong momentum (possible overbought), around 50 = neutral, below 30 = weak momentum (possible oversold).
 
 Why It’s Useful 
 
 Shows market participation directly over price action.
 Covers four major indices and six time frames.
 Highlights sentiment transitions through color shading.
 Helps identify overbought, oversold, or neutral conditions quickly.
 
 Disclaimer 
The MomentumQ Breadth 2.0 is for analytical purposes only and does not guarantee profitability. All trading involves risk, and market conditions can change quickly. Always use appropriate risk management. Past performance does not guarantee future results.
 Thank You for Your Support 
This is a free tool created to help traders visualize market breadth with clarity and flexibility. Feedback and suggestions are welcome to guide future updates.
Breakout line - AndurilThis line shows the highest daily closing price of last 20 days default (can be adjusted from the settings). to help you to understand consolidation points and breakouts. 
@falaterranova - BRXBRX  is a multi-timeframe trend indicator designed to highlight dynamic price shifts with clarity and discipline. It focuses on two key components: trend identification and adaptive support/resistance mapping.
The  trend module (BRX)  captures directional strength and potential reversals in real time, helping traders stay aligned with dominant momentum while filtering out minor fluctuations. It is not a repainting system and adapts to volatility conditions through internal thresholds that adjust automatically to market behavior.
The  Support & Resistance system  complements the trend logic by continuously scanning for reaction zones, validating them through recurrence and structural strength. These zones act as visual anchors for traders, helping to contextualize price movements within meaningful ranges rather than isolated candles. It dynamically updates as new pivots are confirmed, preserving clarity even during rapid market changes.
This script does not provide entry or exit guarantees. Instead, it enhances decision-making by visually organizing market context—allowing traders to interpret structure, momentum, and risk zones with greater precision.
 Intended use:  discretionary confirmation tool for trend-following or breakout strategies.
 Best suited for:  experienced traders who rely on multi-timeframe confluence and prefer to validate trades with visual structure.
 Exclusive access for VIP members or annual subscribers. 
 Click
 here to contact us privately on Telegram for more information.
@falaterranova - BRXBRX  is a multi-timeframe trend indicator designed to highlight dynamic price shifts with clarity and discipline. It focuses on two key components: trend identification and adaptive support/resistance mapping.
The  trend module (BRX)  captures directional strength and potential reversals in real time, helping traders stay aligned with dominant momentum while filtering out minor fluctuations. It is not a repainting system and adapts to volatility conditions through internal thresholds that adjust automatically to market behavior.
The  Support & Resistance system  complements the trend logic by continuously scanning for reaction zones, validating them through recurrence and structural strength. These zones act as visual anchors for traders, helping to contextualize price movements within meaningful ranges rather than isolated candles. It dynamically updates as new pivots are confirmed, preserving clarity even during rapid market changes.
This script does not provide entry or exit guarantees. Instead, it enhances decision-making by visually organizing market context—allowing traders to interpret structure, momentum, and risk zones with greater precision.
 Intended use:  discretionary confirmation tool for trend-following or breakout strategies.
 Best suited for:  experienced traders who rely on multi-timeframe confluence and prefer to validate trades with visual structure.
 Exclusive access for VIP members or annual subscribers. 
 Click
 here to contact us privately on Telegram for more information.
Earnings CountdownAdd to a chart to show a text box with how long to next earnings. 
Being updated to add functionality from original open source Pine script
Dynamic S/R Zones (Verified Pivots)Dynamic S/R Zones V1.2 
 Overview 
Dynamic S/R Zones V1.2 is a Pine v6 structure visualizer that highlights nearby Support/Resistance zones from confirmed swing pivots on the current chart and an optional higher timeframe (HTF). It can also plot simple Fibonacci guide levels (33% / 50% / 66%) between the most recent swing points. All HTF requests use lookahead_off to avoid forward-looking data, and S/R anchors are derived from verified pivots to minimize repainting. Optional “touch-verified” coloring flips a level’s display once price trades through it.
This tool is an illustrative S/R map for chart review and education.
 How it works 
 Verified Pivots (Non-Repainting): 
• Minor S/R uses ta.pivothigh/ta.pivotlow with a symmetric lookback (“Pivot Strength”).
• Lines anchor only on confirmed pivots, so once drawn they remain stable.
• A de-dup buffer filters out levels that are too close together.
 HTF Major Zones: 
• HTF OHLC is requested via request.security(..., lookahead=barmerge.lookahead_off).
• The same pivot logic runs on the HTF series; lines appear after the HTF bar closes.
• Major lines can be shown alongside (or instead of) minor lines.
 Touch-Verified Coloring (optional): 
• When a level is touched (high ≥ level ≥ low), it flips from neutral to a side color:
– Support (price above) ≈ green; Resistance (price below) ≈ red.
• The verification state is persistent for that line.
 Fibonacci Guides (optional): 
• Draws 33% / 50% / 66% between the last opposing swing high/low.
• Verification/coloring modes:
 
  Pivot-Based: uses the most recent swing direction.
  HTF Trend-Based: uses a fast/slow EMA comparison on a user-selected HTF.
  Bounce/Reject Mode: color on touch regardless of trend interpretation.
 
• One arrow per bar (optional) indicates a newly verified fib touch.
 What it displays 
• Minor S/R lines from current-TF verified pivots (non-repainting anchors).
• Major S/R lines from HTF pivots (confirmed on HTF close).
• Optional labels that state level type, price, HTF tag, and Verified/Unverified status.
• Optional Fibonacci guide lines with labels, plus single-arrow confirmations.
• Coloring that reflects touch verification and current side (support/resistance).
 Why it’s original 
• Focuses on confirmed structure (minor + HTF) with de-duplication for clarity.
• Offers hybrid fib verification (pivot-based, HTF-trend-based, or bounce/reject) to let users study structure from multiple perspectives without asserting signals.
• Maintains persistent verification per level and avoids lookahead on HTF for stable, review-friendly visuals.
• Provides a compact workflow for scanning: minor structure, HTF context, then fib context.
 Configuration & usage notes 
• Pivot Strength: Higher values = stricter confirmation (fewer lines, more stable).
• Lookback Range: Prunes older lines; increase for broader context.
• HTF for Major S/R: Daily/4H/Weekly etc.; lines confirm on that timeframe’s close.
• Min Distance Between Levels: Helps reduce clutter from nearby duplicates.
• Touch-Verified Coloring: Enable for quick support/resistance side cues.
• Fibs: Choose coloring mode (Pivot-Based, HTF Trend-Based, or Bounce/Reject).
• HTF Trend TF / EMAs: Only affect coloring when using HTF trend mode for fibs.
• Performance: Labels and line counts can be tuned down on very long histories.
 Limitations & assumptions 
• Pivot detection depends on chart timeframe, liquidity, and chosen pivot length.
• HTF lines update after the HTF bar closes (by design, to avoid lookahead).
• Optional Realtime pivots for fibs (if enabled) are provisional and can shift until a swing verifies.
• Coloring and arrows are descriptive—they do not imply entries, exits, or probabilities.
 Legal Disclaimer 
These tools visualize calculations on historical data for charting and educational use only. They are not signals, recommendations, or promises of future results. Markets involve risk, and past results do not guarantee future outcomes. Provided “as is,” without warranties. Consider consulting a qualified professional before making decisions.
Opening Range HarmoniX
This is an all-in-one, modular toolkit designed for intraday traders, especially those focusing on the New York session. It combines a fully customizable Opening Range (OR) with a suite of essential indicators (Moving Average, VWAP, Supertrend, and Pivots) to provide a complete and clean view of the market.
All modules (indicators) can be toggled on or off individually, and the entire settings menu is fully translated in both English and Farsi (Persian).
 Key Features
1. Customizable Opening Range (OR):
Range Timeframe: Set your OR timeframe (5, 15, or 30 min).
Precise Start Time: Define the exact start hour and minute (default 9:30 NY Time).
Key Levels: Includes OR High, OR Low, and a crucial Mid Line for price equilibrium.
Extension Method: Choose how lines extend: "Until NY Session Close" (16:00) or for a fixed "Number of Bars".
Full Styling: Complete control over color, width, and line style (solid, dashed, dotted) for all levels.
2. Dynamic Day Label:
Automatically displays the day of the week (in English or Farsi) and the selected OR timeframe (e.g., "Monday - 15m") at the start of the range.
3. Built-in Indicator Suite (All Toggleable):
Moving Average (MA):
Multiple Types: Choose from SMA, EMA, WMA, HMA, or VWMA.
Dynamic Coloring: MA line color automatically changes based on its upward (Uptrend) or downward (Downtrend) slope.
VWAP (Daily):
Features similar dynamic coloring to quickly identify the intraday trend bias.
Supertrend:
A classic trend-following tool with customizable ATR Period and Factor.
Dynamic trend-based coloring (uptrend/downtrend).
Pivot Points:
Classic high/low pivots with customizable lookback periods (left/right) to spot key turning points in the market.
💡 Core Concept
Use the Opening Range levels (High, Low, and Mid) as primary support/resistance and to establish the bias for the day. Then, use the additional indicators (MA, VWAP, Supertrend) to confirm trend direction and identify entry/exit opportunities in relation to the OR levels.
RTH VWAP with Deviation BandsRTH session VWAP calculation
3 deviation bands (customizable multipliers)
Visual customization (colors, widths, transparency)
Optional info table showing current values
Alert conditions for VWAP and band crosses
Rolling Compound ReturnRolling Compound Return Indicator - Summary
This indicator calculates and displays the compounded return over rolling time periods, showing how an investment would have performed if held for the specified lookback length.
How it works:
1. Rolling calculation - For each bar, looks back N periods and compounds all the returns together using the formula: (1 + return₁) × (1 + return₂) × ... × (1 + returnₙ) - 1
2. Multiple timeframes - Allows comparison of up to 3 different rolling periods simultaneously:
    * Period 1 (default 20 bars): Blue line
    * Period 2 (default 50 bars): Orange line
    * Period 3 (default 100 bars): Purple line
3. Visual elements:
    * Lines plotted as percentage returns on dedicated Y-axis
    * Zero reference line to distinguish gains from losses
    * Optional green/red fill showing positive/negative zones
    * Info table displaying current values for each period
4. Key insight - Unlike simple moving averages of returns, this shows the actual cumulative effect of holding through all the ups and downs over the rolling window.
Use case: Helps identify whether recent price action (over your chosen lookback period) has resulted in net gains or losses, and how different time horizons compare. For example, you might see the 20-period showing +5% while the 50-period shows -2%, indicating recent strength after a longer decline.
The indicator updates on every bar to show the "rolling N-period return" at each point in time.
HTF Ranges - AWR/AMR/AYR [bilal]📊 Overview
Professional higher timeframe range indicator for swing and position traders. Calculate Average Weekly Range (AWR), Average Monthly Range (AMR), and Average Yearly Range (AYR) with precision projection levels.
 ✨ Key Features 
📅 Three Timeframe Modes
AWR (Average Weekly Range): Weekly swing targets - Default 4 weeks
AMR (Average Monthly Range): Monthly position targets - Default 6 months
AYR (Average Yearly Range): Yearly extremes - Default 9 years
🎯 Dual Anchor Options
Period Open: Week/Month/Year opening price
RTH Open: First RTH session (09:30 NY) of the period
📐 Projection Levels
100% Range Levels: Upper and lower targets from anchor
Fractional Levels: 33% and 66% zones for partial targets
Custom Mirrored Levels: Set any percentage (0-200%) with automatic mirroring
Example: 25% shows both 25% and 75%
Example: 150% shows both 150% and -50%
📊 Information Table
Active range type (AWR/AMR/AYR)
Average range value for selected period
Current period range and percentage used
Distance remaining to targets (up/down)
Color-coded progress (green/orange/red)
🎨 Fully Customizable
Orange theme by default (differentiates from daily indicators)
Line colors, styles (solid/dashed/dotted), and widths
Toggle labels on/off
Adjustable lookback periods for each timeframe
Independent settings for each range type
⚡ Smart Features
Lines start at actual period open (not fixed lookback)
Automatically tracks current period high/low
Works on any chart timeframe
Real-time range tracking
Alert conditions when targets reached or exceeded
🎯 Use Cases
AWR (Weekly Ranges):
Swing trade targets (3-7 day holds)
Weekly support/resistance zones
Identify weekly trend vs rotation
Compare daily moves to weekly context
AMR (Monthly Ranges):
Position trade targets (2-4 week holds)
Monthly breakout levels
Institutional-level zones
Earnings play targets
AYR (Yearly Ranges):
Major reversal zones
Long-term support/resistance
Identify macro trend strength
Annual high/low projections
💡 Trading Strategies
AWR Strategy (Swing Trading):
Week opens near AWR lower level = potential long setup
Target AWR 66% and 100% levels
Week hits AWR upper in first 2 days = watch for reversal
Use fractional levels as scale-in/scale-out points
AMR Strategy (Position Trading):
Month opens near AMR extremes = fade setup
Month breaks AMR in week 1 = expansion (trend) month
Target opposite AMR extreme for swing positions
Use 33%/66% for partial profit taking
AYR Strategy (Long-term Context):
Price near AYR extremes = major reversal zones
Breaking AYR levels = historic moves (rare)
Use for macro trend confirmation
Great for yearly forecasting and planning
📊 Range Interpretation
<33% Range Used: Early in period, room for expansion
33-66% Range Used: Normal progression
66-100% Range Used: Extended, approaching extremes
>100% Range Used: Expansion period - trending or high volatility
⚙️ Settings Guide
Lookback Periods:
AWR: 4 weeks (standard) - adjust to 8-12 for smoother average
AMR: 6 months (standard) - seasonal patterns
AYR: 9 years (standard) - captures full cycles
Anchor Type:
Period Open: Use for clean week/month/year open reference
RTH Open: Use if you only trade day session, ignores overnight gaps
Custom Levels:
25% = quartile targets
75% = three-quarter targets
80% = "danger zone" for reversals
111% = extended breakout target
🔄 Combine with ADR Indicator
Run both indicators together for complete multi-timeframe analysis:
ADR for intraday precision
AWR/AMR/AYR for swing/position context
See if today's ADR move is significant in weekly/monthly context
Multi-timeframe confluence = highest probability setups
💼 Ideal For
Swing Traders: Use AWR for 3-10 day holds
Position Traders: Use AMR for 2-8 week holds
Long-term Investors: Use AYR for macro context
Index Futures Traders: ES, NQ, YM, RTY
Multi-timeframe Analysis: Combine with daily ADR






















