SubZyro Previous Day High/LowThis indicator will draw the High and Low of the Previous day. The line will refresh every new day.
The color of the lines can be changed. However it will only plot a dotted line.
Pivot noktaları ve seviyeleri
Liquidation Heatmap Proxy [victhoreb]Author: victhoreb
This script was inspired by the Coinglass indicator: www.coinglass.com
It divides each bar into subbars determined by the intrabar period. For each bar, it considers subbars with a positive OID (open interest delta) (if the user sets "Filter by Signal" to true, it only considers subbars with OID > 0 from a main bar that had a peak in open interest). In these subbars, it considers opened long/short positions based on the intrabar price movement and the dispersion factor (which becomes completely unnecessary if the user is using Intrabar Resolution in ticks; in this case, set the dispersion factor = 0).
After determining the opened long and short positions, it determines, based on the user-selected leverages, the liquidation level for each position. The width of each level is given by syminfo.mintick * scale. The script uses the intrabar OID from the previous step to store an estimate of the number of contracts to be liquidated at each level. This estimate is used to color the levels by order of magnitude.
If there is a subsequent increase in liquidations at a pre-existing level, the script accumulates the estimated number of contracts to be liquidated and repaints the level. A note about a visual limitation of the script is important: in Coinglass' version, when there is a subsequent increase in liquidations at a pre-existing level, Coinglass paints the level a brighter color ONLY from the moment of the increase—however, this script does not do this; it repaints the entire level with the brighter color. Note: While accurate, this script is only a proxy. Use at your own risk.
This script has alerts for when there is liquidation in the long or short direction.
ai quant oculusAI QUANT OCULUS
Version 1.0 | Pine Script v6
Purpose & Innovation
AI QUANT OCULUS integrates four distinct technical concepts—exponential trend filtering, adaptive smoothing, momentum oscillation, and Gaussian smoothing—into a single, cohesive system that delivers clear, objective buy and sell signals along with automatically plotted stop-loss and three profit-target levels. This mash-up goes beyond a simple EMA crossover or standalone TRIX oscillator by requiring confluence across trend, adaptive moving averages, momentum direction, and smoothed price action, reducing false triggers and focusing on high‐probability turning points.
How It Works & Why Its Components Matter
Trend Filter: EMA vs. Adaptive MA
EMA (20) measures the prevailing trend with fixed sensitivity.
Adaptive MA (also EMA-based, length 10) approximates a faster-responding moving average, standing in for a KAMA-style filter.
Bullish bias requires AMA > EMA; bearish bias requires AMA < EMA. This ensures signals align with both the underlying trend and a more nimble view of recent price action.
Momentum Confirmation: TRIX
Calculates a triple-smoothed EMA of price over TRIX Length (15), then converts it to a percentage rate-of-change oscillator.
Positive TRIX reinforces bullish entries; negative TRIX reinforces bearish entries. Using TRIX helps filter whipsaws by focusing on sustained momentum shifts.
Gaussian Price Smoother
Applies two back-to-back 5-period EMAs to the price (“gaussian” smoothing) to remove short-term noise.
Price above the smoothed line confirms strength for longs; below confirms weakness for shorts. This layer avoids entries on erratic spikes.
Confluence Signals
Buy Signal (isBull) fires only when:
AMA > EMA (trend alignment)
TRIX > 0 (momentum support)
Close > Gaussian (price strength)
Sell Signal (isBear) fires under the inverse conditions.
Requiring all three conditions simultaneously sharply reduces false triggers common to single-indicator systems.
Automatic Risk & Reward Plotting
On each new buy or sell signal (edge detection via not isBull or not isBear ), the script:
Stores entryPrice at the signal bar’s close.
Draws a stop-loss line at entry minus ATR(14) × Stop Multiplier (1.5) by default.
Plots three profit-target lines at entry plus ATR × Target Multiplier (1×, 1.5×, and 2×).
All previous labels and lines are deleted on each new signal, keeping the chart uncluttered and focusing only on the current trade.
Inputs & Customization
Input Description Default
EMA Length Period for the main trend EMA 20
Adaptive MA Length Period for the faster adaptive EM A substitute 10
TRIX Length Period for the triple-smoothed momentum oscillator 15
Dominant Cycle Length (Reserved) 40
Stop Multiplier ATR multiple for stop-loss distance 1.5
Target Multiplier ATR multiple for first profit target 1.5
Show Buy/Sell Signals Toggle on-chart labels for entry signals On
How to Use
Apply to Chart: Best on 15 m–1 h timeframes for swing entries or 5 m for agile scalps.
Wait for Full Confluence:
Look for the AMA to cross above/below the EMA and verify TRIX and Gaussian conditions on the same bar.
A bright “LONG” or “SHORT” label marks your entry.
Manage the Trade:
Place your stop where the red or green SL line appears.
Scale or exit at the three yellow TP1/TP2/TP3 lines, automatically drawn by volatility.
Repeat Cleanly: Each new signal clears prior annotations, ensuring you only track the active setup.
Why This Script Stands Out
Multi-Layer Confluence: Trend, momentum, and noise-reduction must all align, addressing the weaknesses of single-indicator strategies.
Automated Trade Management: No manual plotting—stop and target lines appear seamlessly with each signal.
Transparent & Customizable: All logic is open, adjustable, and clearly documented, allowing traders to tweak lengths and multipliers to suit different instruments.
Disclaimer
No indicator guarantees profit. Always backtest AI QUANT OCULUS extensively, combine its signals with your own analysis and risk controls, and practice sound money management before trading live.
AI QUANT OCULUSAI QUANT OCULUS
Version 1.0 | Pine Script v6
Purpose & Innovation
AI QUANT OCULUS integrates four distinct technical concepts—exponential trend filtering, adaptive smoothing, momentum oscillation, and Gaussian smoothing—into a single, cohesive system that delivers clear, objective buy and sell signals along with automatically plotted stop-loss and three profit-target levels. This mash-up goes beyond a simple EMA crossover or standalone TRIX oscillator by requiring confluence across trend, adaptive moving averages, momentum direction, and smoothed price action, reducing false triggers and focusing on high‐probability turning points.
How It Works & Why Its Components Matter
Trend Filter: EMA vs. Adaptive MA
EMA (20) measures the prevailing trend with fixed sensitivity.
Adaptive MA (also EMA-based, length 10) approximates a faster-responding moving average, standing in for a KAMA-style filter.
Bullish bias requires AMA > EMA; bearish bias requires AMA < EMA. This ensures signals align with both the underlying trend and a more nimble view of recent price action.
Momentum Confirmation: TRIX
Calculates a triple-smoothed EMA of price over TRIX Length (15), then converts it to a percentage rate-of-change oscillator.
Positive TRIX reinforces bullish entries; negative TRIX reinforces bearish entries. Using TRIX helps filter whipsaws by focusing on sustained momentum shifts.
Gaussian Price Smoother
Applies two back-to-back 5-period EMAs to the price (“gaussian” smoothing) to remove short-term noise.
Price above the smoothed line confirms strength for longs; below confirms weakness for shorts. This layer avoids entries on erratic spikes.
Confluence Signals
Buy Signal (isBull) fires only when:
AMA > EMA (trend alignment)
TRIX > 0 (momentum support)
Close > Gaussian (price strength)
Sell Signal (isBear) fires under the inverse conditions.
Requiring all three conditions simultaneously sharply reduces false triggers common to single-indicator systems.
Automatic Risk & Reward Plotting
On each new buy or sell signal (edge detection via not isBull or not isBear ), the script:
Stores entryPrice at the signal bar’s close.
Draws a stop-loss line at entry minus ATR(14) × Stop Multiplier (1.5) by default.
Plots three profit-target lines at entry plus ATR × Target Multiplier (1×, 1.5×, and 2×).
All previous labels and lines are deleted on each new signal, keeping the chart uncluttered and focusing only on the current trade.
Inputs & Customization
Input Description Default
EMA Length Period for the main trend EMA 20
Adaptive MA Length Period for the faster adaptive EM A substitute 10
TRIX Length Period for the triple-smoothed momentum oscillator 15
Dominant Cycle Length (Reserved) 40
Stop Multiplier ATR multiple for stop-loss distance 1.5
Target Multiplier ATR multiple for first profit target 1.5
Show Buy/Sell Signals Toggle on-chart labels for entry signals On
How to Use
Apply to Chart: Best on 15 m–1 h timeframes for swing entries or 5 m for agile scalps.
Wait for Full Confluence:
Look for the AMA to cross above/below the EMA and verify TRIX and Gaussian conditions on the same bar.
A bright “LONG” or “SHORT” label marks your entry.
Manage the Trade:
Place your stop where the red or green SL line appears.
Scale or exit at the three yellow TP1/TP2/TP3 lines, automatically drawn by volatility.
Repeat Cleanly: Each new signal clears prior annotations, ensuring you only track the active setup.
Why This Script Stands Out
Multi-Layer Confluence: Trend, momentum, and noise-reduction must all align, addressing the weaknesses of single-indicator strategies.
Automated Trade Management: No manual plotting—stop and target lines appear seamlessly with each signal.
Transparent & Customizable: All logic is open, adjustable, and clearly documented, allowing traders to tweak lengths and multipliers to suit different instruments.
Disclaimer
No indicator guarantees profit. Always backtest AI QUANT OCULUS extensively, combine its signals with your own analysis and risk controls, and practice sound money management before trading live.
CME Price Limit Danger Zone AlertThis indicator will calculate the CME 2% price limits determined by previous day close. It will also provide a visual warning if price has reached the limit.
Gold Killzone Bias Suite🟡 Gold Killzone Bias Suite
The Gold Killzone Bias Suite is an advanced institutional-grade tool designed to generate high-confidence directional bias for XAU/USD (Gold) during the London and New York killzones.
Built for traders using a structured, confluence-driven approach, this tool blends price action, smart money principles, momentum, and volume into a real-time bias engine with a clean, easy-to-read dashboard.
🔧 Key Features
🕰️ Session-Based Bias (London / New York)
Independent bias calculation per session
Killzone times customizable with timezone support
Background highlighting (blue/red) for each session
📊 VWAP Engine
Reclaim & rejection detection
VWAP deviation alerts
Daily HTF VWAP integration
Score impact based on VWAP behaviour
📉 Market Structure (CHoCH / BOS)
Detects swing highs/lows
Labels bullish/bearish CHoCHs
Structure score contributes to session bias
💧 Liquidity Grabs
Detects stop hunts above highs / below lows
Confirms with candle rejection (body % filter)
Plots labels and adds to bias scoring
⚡ Momentum Filters
RSI: Bullish >55, Bearish <45
MACD: Histogram + Signal Line crossovers
Combined momentum score used in bias
🧠 Smart Money Proximity
Optional FVG/OB score toggle (placeholder for custom logic)
Adds static confluence for proximity-based setups
⏫ Higher Time Frame Context
Daily VWAP comparison
4H high/low structure breaks
Adds trend score to current session bias
🧠 How Bias Works
The suite uses a scoring model. Each confluence adds or subtracts points:
VWAP reclaim/reject: ±30
CHoCH/BOS: ±30
Liquidity grab: ±20
RSI/MACD: ±10
FVG/OB Proximity: +10
Daily VWAP trend: ±10
H4 Trend Break: ±10
Final Bias:
Bullish if score ≥ +20
Bearish if score ≤ -20
Neutral if between -19 and +19
A confidence % (capped at 100) is also shown, along with the contributing confluences (VWAP, Structure, Liquidity, etc.).
📋 Dashboard
A real-time dashboard shows for each session:
Session name and time
Bias (Bullish / Bearish / Neutral)
Confidence (%)
Confluences used
Position can be moved (Top Left, Top Right, etc.). Designed to be unobtrusive yet informative.
🧪 Best Practices
Use on 15m / 5m charts for intraday setups
Confirm with D1 or H4 structure for directional context
Combine with OB/FVG zones or SMT for entries
Use Trading View alerts for bias flips or liquidity grabs (custom logic can be added)
Bar Replay compatible for back testing and journaling bias shifts
🔐 Notes
Does not generate trade signals or alerts by default
Focused on bias generation and confluence stacking
Compatible with funded account trading models
📈 Built for traders who want a systematic, score-based approach to identifying directional edge in high-volume gold sessions.
Dynamic 50% Line [Daily and Weekly Range]This indicator automatically plots the 50% retracement level (midpoint) of the daily and weekly trading ranges. It helps traders identify key support/resistance zones where price may react, offering insights into potential reversal or continuation areas.
Auction Market Theory & the 50% Level
At its core, this indicator is built on Auction Market Theory (AMT), which views price movement as an ongoing auction process where buyers and sellers compete to establish value. The 50% midpoint represents fair value—the equilibrium where price is most likely to balance before continuing its trend or reversing.
When price deviates too far from this level, it often returns to balance (mean reversion) or accepts new value (breakout). By tracking the daily and weekly 50% lines, traders can:
Identify high-probability reversal zones (where price may reject fair value).
Spot trend continuation areas (where price accepts higher/lower value).
Align with institutional order flow, as large players often use these levels for execution.
This makes the indicator particularly powerful for traders who follow volume profile, order flow, or ICT concepts, as it visually maps the market’s ongoing auction process.
Features:
✅ Automated Daily & Weekly Midpoints – Calculates the 50% level from the high/low of each session.
✅ Customizable Line Styles – Choose between solid, dotted, or dashed lines for better visibility.
✅ Clear Labeling – Optional text labels show "50% Level" or custom text at your preferred position (left, middle, or right).
✅ Flexible Styling – Adjust line colors, thickness, and text size to match your chart theme.
How It Works:
Daily 50% Line: Resets at 6 PM NY time (new trading day).
Weekly 50% Line: Resets on Sunday at 6 PM NY time (new trading week).
The midpoint is calculated as:
(High + Low) / 2
Lines extend 500 bars forward for easy visibility.
Why Use This Indicator?
Unlike static Fibonacci tools, this dynamic indicator auto-updates the 50% level as new highs/lows form, saving time and improving accuracy. Whether you trade forex, stocks, or crypto, these levels often act as strong magnets for price action.
Daily Pivot Points + R1 S1 R2 S2 with PricesThis indicator automatically plots daily pivot points (PP) along with the first and second resistance (R1, R2) and support (S1, S2) levels on your chart. Each level is clearly labeled with its price, making it easy to identify key areas for potential reversals or breakouts. Perfect for day traders and swing traders looking for reliable intraday support and resistance zones.
Daily Levels3 simple daily levels
Todays Open will label any historical points an yesterdays close
There are plenty of these available but they all seemed overly complex so I adapted this to suit my needs
This indicator plots customizable daily session levels (Today's Open, Previous High/Low/Close) on intraday charts, with options for historical days back, session start/close times, labels, colours, and visibility. Ideal for forex and stock traders analysing prior sessions.
BB Opening Range
Master session-based trading with precision range analysis and dynamic extensions
📊 Overview
The BB Opening Range Indicator is a comprehensive session analysis tool that captures, visualizes, and extends price ranges for any defined trading session. Whether you're tracking overnight ranges, opening ranges, or custom session periods, this indicator provides institutional-grade visualization with intelligent range extensions and detailed quadrant analysis.
🎯 Key Features
Dynamic Session Tracking
Define custom session times (default: Midnight 00:00-00:30)
Automatic timezone adjustment for precise session detection
Handles sessions that cross midnight seamlessly
Visual session start/end markers with customizable lines
Intelligent Range Extension
Futures Close (17:00) - Extends ranges until 5:00 PM ET
End of Week - Maintains ranges through Friday close
Always - Continuous extension for persistent levels
Session End Only - Basic range without extension
Advanced Quadrant Analysis
Automatically divides ranges into four equal zones (0-25%, 25-50%, 50-75%, 75-100%)
Color-coded quadrants for instant visual reference
Optional quadrant border lines at 25%, 50%, and 75% levels
Customizable colors and opacity for each quadrant
Historical Range Analytics
Tracks multiple historical ranges (configurable 1-50)
Calculates average range size over customizable lookback period (up to 200 days)
Compares current range to historical average
Maintains clean chart with automatic old range cleanup
Professional Visualization
Clean, institutional-style range boxes with customizable borders
Opening price line overlay
Optional info table showing key levels and statistics
Smart label positioning that follows price action
Predictive next session indicator
📈 Use Cases
Opening Range Breakout Trading
Track the first 30-60 minutes of regular trading hours to identify key support/resistance levels for the day.
Overnight Range Analysis
Monitor overnight/globex sessions to gauge pre-market sentiment and identify potential gaps.
Custom Session Ranges
Define any time period relevant to your strategy - London open, New York open, Asian session, or custom intervals.
Multi-Timeframe Analysis
View how price respects historical session ranges across different timeframes for confluence.
⚙️ Settings Guide
Session Settings
Session Name: Label your session for easy identification
Session Time: Define start and end times (24-hour format)
Extend Until: Choose how long ranges remain visible
Lookback Days: Period for calculating average range size
Max Ranges: Number of historical ranges to display
Display Options
Show Quadrants: Toggle quadrant visualization
Show Info Table: Display statistics table
Table Position: Choose table location on chart
Session Lines: Show/hide session start and next session markers
Open Price Line: Display opening price within range
Label Settings
High/Low Labels: Show range extremes
Quadrant Labels: Display 25%, 50%, 75% levels
Open Price Label: Mark session opening price
Current Range Only: Limit labels to most recent range
Visual Styling
Border Settings: Customize box and quadrant borders
Line Widths: Adjust border and quadrant line thickness
Color Scheme: Full control over all visual elements
Volume Reinforced Supply/Demand Zoneswhen trading supply and demand i found a way to see which zones are high quality zones. this indicator tries to do that for you. its not nearly as good as doing it manually, but its pretty decent. feel free to fine tune the settings and see which works best for you.
the indicator uses volume and price movement to draw supply and demand zones. if the zone is tested, it will change color to let you know, so you can decide whether or not to use the zone.
if a zone is broken, it will display a signal which tells you which candle broke through the zone.
you can change in the settings the requirements for an area to be considered a zone.
Highest High & Lowest Low Extreme Range @MaxMaserati Highest High & Lowest Low @MaxMaserati
════════════════════════════════════════════
Every day, retail traders stare at charts wondering where the real support and resistance levels are, while institutions effortlessly identify the exact range boundaries that control price action. The mystery of institutional range identification has finally been solved with a revolutionary approach that transforms chaotic price movements into crystal-clear trading opportunities.
⚡ CORE INNOVATION
Range Boundary Detection System
This groundbreaking indicator automatically identifies the highest high and lowest low over your specified lookback period, creating an institutional-grade range box that reveals exactly where smart money expects price to respect key levels. No more guessing where the real boundaries are.
Smart Market Intelligence
The system automatically detects your market type and displays range measurements in the proper units - pips for forex, points for futures and indices, dollars for stocks. This precision eliminates confusion and provides instant context for your trading decisions.
Institutional Midline Precision
The 50% retracement level is automatically calculated and displayed as a dotted midline within the range box, revealing the exact equilibrium point where institutional algorithms expect price to find balance. This is where the smart money often makes their move.
Visual Clarity System
Clean pink range boxes with black labels eliminate chart clutter while highlighting only the most critical levels. The minimalist design ensures you focus on what matters most - the institutional range boundaries that drive price action.
Tips
**Look when the market break a swing, wait for pullback at the 50 level or at the order block where the movement started for entry.
**When the market is trending, it tends to stick to the line creating constant lower low or high highs
⚡ PRECISION TRADING SYSTEM
Phase 1: Range Identification
The indicator scans your chosen lookback period and identifies the absolute highest and lowest points, creating an institutional range box that represents the current market structure. This becomes your primary reference framework for all trading decisions.
Phase 2: Midline Analysis
Monitor price action around the 50% midline level. Institutions often use this equilibrium point for entries, exits, and position sizing decisions. When price approaches this level, heightened attention is required.
Phase 3: Boundary Respect Confirmation
Watch how price reacts at the range boundaries. Strong rejections indicate institutional support or resistance, while clean breaks suggest range expansion and potential trend continuation opportunities.
Phase 4: Range-Based Position Management
Use the range measurements to calculate proper position sizes and risk-reward ratios. The automatic unit conversion ensures precise risk management regardless of your trading instrument.
⚡ UNIVERSAL INTEGRATION
This indicator enhances every trading methodology without replacing your existing strategy. ICT traders use it to identify premium and discount ranges. SMC analysts leverage it for market structure confirmation. Supply and demand traders utilize it for zone validation. Fibonacci enthusiasts find the 50% midline invaluable for retracement analysis.
The beauty lies in its simplicity - it works flawlessly across all timeframes, from scalping on the 1-minute chart to position trading on the weekly. Every market respects these institutional range boundaries because they represent genuine supply and demand imbalances.
⚡ INSTITUTIONAL RANGE MASTERY
Market statistics reveal that 78% of significant price moves originate from range boundary interactions. While retail traders chase breakouts without context, institutions patiently wait for price to reach these predetermined levels before deploying their capital.
Training Your Market Vision
This indicator rewires your brain to see markets the way institutions do - as ranges with clear boundaries and equilibrium points rather than chaotic price movements. After consistent use, you'll naturally identify these levels even without the indicator, giving you a permanent edge in market analysis.
The institutional advantage becomes clear when you realize that these range boundaries often align with key psychological levels, previous day highs and lows, and algorithmic trading zones. This convergence creates powerful reversal and continuation signals that smart money exploits repeatedly.
Do not use it as a standalone indicator, backtest it and learn about swings before using it.
Compatible with: Forex | Stocks | Crypto | Futures | Indices
No Repainting | Real-Time Alerts | Multi-Timeframe Analysis
Monthly Open Lines (Historical, Accurate)📝 Description:
This indicator plots horizontal lines at every monthly open across the entire chart, helping traders easily identify key support/resistance levels based on the start of each month.
✅ Accurately tracks all historical monthly opens
✅ Lines extend fully across the screen (like regular horizontal lines)
✅ Black lines for clean, minimal visual impact
✅ Works on any timeframe (intraday, daily, etc.)
📊 Ideal For:
Price action traders
Support/resistance mapping
Monthly level breakout strategies
Institutional order flow tracking
Session High/Low/PD Selector with Realtime AlertsThis indicator displays key intraday and multi-day price levels directly on the chart for short-term traders. It includes:
Session Highs and Lows for Asia, London, and New York sessions
→ Automatically plots each completed session’s high and low, with lines extended to the right and labeled.
Previous Day High, Low, and Close
→ Draws levels from the prior daily candle with adjustable colors and labels.
Previous Week High and Low
→ Weekly key levels are plotted just like daily ones.
Real-time Alerts
→ Optional alerts trigger immediately when price touches or breaks any session, PDH/PDL, or PWH/PWL levels.
Fully Customizable
→ Toggle sessions, previous day/week levels, label positions, and colors per user preference.
Liquidity Hunter V2 Liquidity Hunter is a powerful swing-based tool designed to help traders visualize where liquidity is likely resting in the market. It automatically detects significant swing highs and lows using customizable left/right bar settings and highlights these levels with lines, boxes, and optional labels.
The indicator is ideal for spotting:
Liquidity zones where stop hunts may occur
Swing points for potential reversals or breakouts
Extended levels that remain visible until price fills them
Volume-based filters to isolate more meaningful moves
Highly customizable visuals let you control how boxes, lines, and labels appear — including size, style, and colors — so you can adapt it to any charting style. A great addition for traders focusing on smart money concepts, liquidity grabs, or clean technical structure.
Fundur - Trend TraderFundur - Trend Trader: Complete Trading Indicator Guide
Indicator Overview
The Fundur - Trend Trader is a comprehensive dual-timeframe analysis indicator that combines fair value structure analysis, risk-reward calculations, and dynamic trend identification into one powerful trading tool. This indicator is designed to provide traders with precise entry and exit points while offering complete risk management insights.
What Makes Trend Trader Unique?
The Trend Trader goes beyond traditional pivot point indicators by introducing Fair Value Structure Analysis - a methodology that analyzes the relationship between two timeframes to determine market bias and optimal trading opportunities. Unlike static indicators, Trend Trader provides dynamic analysis that adapts to market conditions in real-time.
Core Methodology
The indicator operates on the principle that markets oscillate between Premium (overvalued) and Discount (undervalued) zones relative to fair value levels. By analyzing these zones across multiple timeframes, traders can identify high-probability trade setups with clearly defined risk-reward parameters.
Key Features
🎯 Dual-Timeframe Fair Value Analysis
Higher Timeframe Structure : Primary trend direction and major levels
Lower Timeframe Structure : Refined entry opportunities and micro-trend analysis
Dynamic Relationship : Real-time analysis of timeframe alignment
📊 Comprehensive Level System
Fair Value (FV) : Central equilibrium level for entries
Premium Levels (P1, P2, P3) : Sell zones with increasing distance from fair value
Discount Levels (D1, D2, D3) : Buy zones with increasing distance from fair value
🧠 Intelligent Trend Detection
Session-to-Session Analysis : Compares current vs previous session fair values
Trend Signals : Clear LONG/SHORT setup identification
Structure Bias : Bullish/Bearish fair value structure determination
⚖️ Advanced Risk-Reward System
Real-Time R:R Calculations : Dynamic risk-reward ratios for all levels
Leverage Recommendations : Optimal position sizing based on measured risk
Risk Percentage Display : Precise risk calculations for informed decisions
🎨 Smart Visual Features
Level Hit Tracking : Automatically darkens touched levels during session
Squeeze Detection : Identifies low-volatility periods with special bar coloring
Dynamic Highlighting : Price-responsive level emphasis
Zone Fills : Visual premium and discount area identification
Setup Guide
Step 1: Adding the Indicator
Open TradingView and navigate to your desired chart
Click the "Indicators" button or press "/" key
Search for "Fundur - Trend Trader"
Add the indicator to your chart
Step 2: Basic Configuration
Timeframe Settings
Higher Timeframe : Default is Weekly (W), adjust based on your trading style:
Scalping : Use 4H for higher timeframe
Day Trading : Use Daily (D) for higher timeframe
Short-Term Swing Trading : Use Weekly (W) for higher timeframe
Long-Term Swing Trading : Use Monthly (M) for higher timeframe
Position Trading : Use Quarterly (3M) or Yearly (12M) for higher timeframe
History Bars :
Higher Timeframe: 10 bars (recommended)
Lower Timeframe: 50 bars (recommended)
Visual Settings
Line Widths : Adjust for visibility preference
Zone Fills : Enable for better visual zone identification
Bar Coloring : Enable structure and squeeze coloring
Step 3: Label Configuration
Essential Labels (Recommended Settings)
✅ Show All Labels: ON
✅ Show Trend Direction: ON
✅ Show Higher Timeframe Labels: ON
⚠️ Show Lower Timeframe Labels: OFF (avoid clutter initially)
✅ Show Price Values: ON
Label Style Options
Use Short Names : ON (P1, D2, FV instead of full names)
Combine Timeframe & Description : ON (creates compact labels like "W-FV")
Label Style : Choose between Modern or Classic
Step 4: Risk-Reward Setup
✅ Show Risk-Reward Analysis: ON
✅ Show Measured Risk Values: ON
✅ Apply Leverage to Calculations: ON
Leverage Multiplier : Start with 1.0, adjust based on your risk tolerance
Basic Trading Guide
Understanding Fair Value Structure
The indicator's foundation is the Fair Value Structure - the relationship between higher and lower timeframe fair value levels:
Bullish Structure (🔵)
Condition : Lower timeframe FV above higher timeframe FV
Bias : Look for LONG opportunities
Focus : Fair Value Structure for entries (continuation strategy)
Strategy : Enter long positions at Fair Value, take profits at Premium levels (P1, P2, P3)
Bearish Structure (🟠)
Condition : Lower timeframe FV below higher timeframe FV
Bias : Look for SHORT opportunities
Focus : Fair Value Structure for entries (continuation strategy)
Strategy : Enter short positions at Fair Value, take profits at Discount levels (D1, D2, D3)
Entry Strategies
Primary Strategy: Fair Value Continuation Entries
Setup : Price approaches fair value level with established structure bias
Entry : In Fair Value Structure (in between the lower timeframe and higher timeframe fair value)
Direction : Follow the structure bias (long in bullish structure, short in bearish structure)
Stop Loss: Two approaches available:
Advanced Method : Place stop shy of liquidation point to avoid liquidation
Hassle-Free Method : Previous high/low OR just beyond higher timeframe Fair Value
For Long Positions : Stop below higher timeframe Fair Value
For Short Positions : Stop above higher timeframe Fair Value
Profit Taking Strategy:
For Long Positions (Bullish Structure):
75% profits at Premium 1 (P1) - highest probability target
50% of remaining position at Premium 2 (P2)
Close entire position at Premium 3 (P3)
Move stop loss to break even after first profits
For Short Positions (Bearish Structure):
75% profits at Discount 1 (D1) - highest probability target
50% of remaining position at Discount 2 (D2)
Close entire position at Discount 3 (D3)
Move stop loss to break even after first profits
Alternative Strategy: Structure Transition Entries
Setup : Structure changes from bearish to bullish (or vice versa)
Entry : At new fair value level after structure confirmation
Risk Management : Tight stops during structure transition periods
Targets : Follow primary profit-taking methodology above
Risk Management Framework
Position Sizing Using Leverage Recommendations
The indicator calculates optimal leverage based on measured risk:
Conservative : Use 50% of recommended leverage
Moderate : Use 75% of recommended leverage
Aggressive : Use 100% of recommended leverage
Never exceed : 150% of recommended leverage
Stop Loss Placement
Follow the methodology outlined in the Primary Strategy section:
Advanced Method : Place stop shy of liquidation point to avoid forced liquidation
Hassle-Free Method : Use structural levels for clear invalidation
Long Positions : Stop below higher timeframe Fair Value
Short Positions : Stop above higher timeframe Fair Value
Alternative : Previous significant high/low levels
Analysis Setups
Setup 1: Scalping Configuration (1-5 minute charts)
Timeframe Settings:
Higher Timeframe: 4H (240)
Lower Timeframe: 1H (auto-calculated)
History: 5 bars for higher, 20 bars for lower
Visual Settings:
Enable all visual features for quick decision making
Use Classic label style for cleaner appearance
Enable squeeze coloring for volatility awareness
Trading Approach:
Focus on fair value continuation entries
Quick entries in fair value structure
Tight risk management using R:R table
Target P1/D1 levels for primary profits (75% position)
Setup 2: Day Trading Configuration (5-15 minute charts)
Timeframe Settings:
Higher Timeframe: Daily (D)
Lower Timeframe: 4H (auto-calculated)
History: 10 bars for higher, 30 bars for lower
Visual Settings:
Enable zone fills for clear premium/discount identification
Show both timeframe labels
Enable level hit tracking
Trading Approach:
Use structure bias for directional bias
Enter in fair value structure for continuation trades
75% profits at P1/D1, scale out to P2/D2, close at P3/D3
Hold positions across multiple sessions following structure
Setup 3: Short-Term Swing Trading Configuration (1-4 hour charts)
Timeframe Settings:
Higher Timeframe: Weekly (W)
Lower Timeframe: Daily (auto-calculated)
History: 15 bars for higher, 50 bars for lower
Visual Settings:
Emphasize higher timeframe levels
Show trend direction signals
Enable complete risk-reward analysis
Trading Approach:
Primary focus on higher timeframe structure
Patient entries in fair value structure
Follow standard profit-taking: 75% at P1/D1, scale to P3/D3
Use lower timeframe for refined fair value entries
Setup 4: Long-Term Swing Trading Configuration (4H charts)
Timeframe Settings:
Higher Timeframe: Monthly (M)
Lower Timeframe: Weekly (auto-calculated)
History: 20 bars for higher, 75 bars for lower
Visual Settings:
Clean label setup focusing on major levels
Enable trend direction for bias confirmation
Simplified visual approach for clarity
Trading Approach:
Monthly structure provides major trend direction
Entries in fair value structure
Hold positions for several weeks
Apply standard profit-taking methodology at premium/discount zones
Setup 5: Position Trading Configuration (Daily/Weekly charts)
Timeframe Settings:
Higher Timeframe: Quarterly (3M) or Yearly (12M)
Lower Timeframe: Monthly or Quarterly (auto-calculated)
History: 25 bars for higher, 100 bars for lower
Visual Settings:
Clean label setup focusing on key levels
Enable all alert systems
Simplified color scheme
Trading Approach:
Structure changes signal major macro trend shifts
Very patient entries in fair value structure confirmation
Long-term continuation trades targeting extended premium/discount levels
Hold positions for months to years following structure bias
Focus on major market cycles and long-term trend continuations
Setup 6: Multi-Asset Analysis Configuration
For Forex Pairs:
Adjust decimal precision for pip accuracy
Focus on daily/weekly structure
Use tight risk management due to leverage
For Crypto Assets:
Higher volatility requires wider stops
24/7 markets need continuous monitoring
Structure breaks often lead to extended moves
For Stock Indices:
Respect market hours for structure analysis
Economic events can override technical levels
Seasonal patterns affect structure behavior
Visual Components
Level Indicators
Solid Lines : Active levels based on current price position
Highlighted Levels : Levels within current price range
Darkened Levels : Previously touched levels during current session
Zone Fills
Red Zones : Premium areas (selling opportunities)
Green Zones : Discount areas (buying opportunities)
Cloud Fill : Area between dual timeframe fair values
Bar Coloring
Purple Bars : Squeeze conditions (low volatility)
Structure Colors : Based on price position relative to fair value levels
Labels and Information
Level Labels : Price values and targets for each level
Trend Signals : Clear LONG/SHORT setup indications
Risk-Reward Table : Comprehensive analysis panel
Risk Management
Built-in Risk Controls
Measured Risk System
The indicator automatically calculates risk percentages based on:
Distance from fair value to premium/discount levels
Current price position
Leverage settings applied
Optimal Leverage Calculations
Long Positions : Based on discount risk measurement
Short Positions : Based on premium risk measurement
Dynamic Adjustment : Changes with market conditions
Risk-Reward Ratios
Each level displays its R:R ratio considering:
Entry point (fair value or current price)
Target level
Stop loss level
Applied leverage
Recommended Risk Parameters
Conservative Trading
Maximum 1-2% risk per trade
Use 50% of recommended leverage
Target R:R ratios above 2:1
Focus on high-probability setups only
Moderate Trading
Maximum 2-3% risk per trade
Use 75% of recommended leverage
Accept R:R ratios above 1.5:1
Trade multiple setups with correlation awareness
Aggressive Trading
Maximum 3-5% risk per trade
Use up to 100% of recommended leverage
Accept R:R ratios above 1:1
Active management required
Alert System
Structure Alerts
Fair Value Structure Bullish : When structure turns bullish
Fair Value Structure Bearish : When structure turns bearish
Level Interaction Alerts
For each premium and discount level:
Touch Alerts : When price reaches the level
Cross Above : When price breaks above the level
Cross Below : When price breaks below the level
Range Alerts
Rising into FV : Price enters fair value range from below
Falling into FV : Price enters fair value range from above
Rising Above FV : Price breaks above fair value range
Falling Below FV : Price breaks below fair value range
Setting Up Alerts
Enable desired alert types in indicator settings
Create TradingView alerts using the indicator
Configure notification methods (email, SMS, app)
Test alerts with historical data first
Customization Options
Color Schemes
Fair Value Colors : Customize based on structure bias
Premium/Discount Colors : Match your chart theme
Dynamic Coloring : Automatically adjusts based on price position
Label Customization
Text Transparency : Adjust readability
Background Transparency : Control label prominence
Size Options : From tiny to large based on chart size
Position Options : Multiple screen positions available
Table Settings
Position : 9 different screen positions
Size : 4 size options for different screen resolutions
Transparency : Adjust for chart readability
Best Practices
Chart Setup Recommendations
Screen Real Estate Management
Use larger timeframes for cleaner appearance
Minimize lower timeframe labels on smaller screens
Position risk-reward table to avoid price action interference
Multi-Timeframe Analysis
Keep one chart with higher timeframe focus
Use secondary chart for lower timeframe entries
Synchronize timeframe selection across charts
Trading Psychology Integration
Patience with Structure
Wait for clear structure bias before trading
Avoid trading during structure transition periods
Respect the higher timeframe bias
Risk Management Discipline
Never ignore the calculated risk percentages
Use leverage recommendations as guidelines, not rules
Adjust position sizes based on market conditions
Entry Timing
Use lower timeframes for precise entries
Wait for price to reach significant levels
Confirm entries with additional confluence factors
Common Mistakes to Avoid
Over-Analysis
Don't wait for perfect setups that may never come
Focus on high-probability scenarios
Accept that not every level will hold
Ignoring Structure Bias
Don't fight the overall structure direction
Adjust strategies when structure changes
Respect multi-timeframe alignment
Poor Risk Management
Never risk more than the indicator suggests
Don't ignore stop loss levels
Avoid emotional position sizing
Advanced Techniques
Structure Transition Trading
Identify when structure is changing
Position for new bias direction
Use tight risk management during transitions
Level Confluence
Look for multiple level alignments
Combine with support/resistance
Use volume analysis for confirmation
Seasonal and Market Hour Awareness
Adjust for different market sessions
Consider seasonal patterns in structure
Account for economic calendar events
Conclusion
The Fundur - Trend Trader indicator represents a comprehensive approach to modern technical analysis, combining traditional pivot point methodology with advanced fair value structure analysis. By following the guidelines in this manual and adapting the settings to your trading style, you can harness the full power of this indicator for more informed and profitable trading decisions.
Remember that no indicator is perfect, and the Trend Trader should be used as part of a complete trading strategy that includes fundamental analysis, risk management, and proper psychology. Start with conservative settings and gradually increase sophistication as you become more familiar with the indicator's behavior in different market conditions.
For best results, practice with the indicator in demo accounts first, understand its behavior in various market conditions, and always prioritize risk management over profit potential.
Hourly Strong Pivot Rays with ClustersHourly pivots with areas of confluence clusters. Works best with strong stocks and indexes.
First week high/low of the monthThis is a simple indicator that draws two customizable horizontal lines representing the first week of the month.
Smart Money Footprint & MM Pattern Detector📊 Smart Money Footprint & MM Pattern Detector by @darshakssc is a technical analysis tool designed to help traders visually identify potential high-volume activity, key swing points, and possible Market Maker (MM) patterns on their charts.
This script is not a buy/sell signal generator. Instead, it offers a visual framework to better understand market behavior, so traders can make their own well-informed decisions.
🔍 Key Features
✔️ Volume Analysis — Detects high-volume conditions relative to a moving average threshold.
✔️ Swing Point Detection — Highlights potential swing highs and swing lows for structure analysis.
✔️ Market Maker Pattern Detection — Identifies possible bullish or bearish MM footprints based on price action and volume behavior.
✔️ Customizable Dashboard — Clean, visual dashboard showing volume status, swing state, and pattern status at a glance.
✔️ Dark & Light Mode — Easily switch between a dark or light theme for better chart visibility.
✔️ Alerts — Optional alerts when swing points or MM patterns are detected.
🎯 How to Use
✔️ Add the indicator to your chart.
✔️ Adjust the Volume MA and Threshold to match your preferred market and timeframe.
✔️ Use the dashboard as a quick-reference visual guide.
✔️ Combine with your own strategy, risk management, and other forms of analysis.
⚠️ Disclaimer
This tool is provided for educational and informational purposes only. It does not constitute financial advice or a trading recommendation. Trading involves risk, and past performance does not guarantee future results. Always perform your own due diligence and use appropriate risk management.
Smart Money Scalper v1 [Structure | VIDYA | Oscillator | Delta]🧠 What’s Included in the Core Module:
Component Description-
🔹 Trend Structure + Bias- Detect BoS/ChoCH from Lux-style logic to define bullish/bearish intent.
🟩 Key Level Mapping Structure- based support/resistance and smart money reaction zones.
🔺 VIDYA Slope Filter- Detects smart money accumulation via adaptive volume/trend shifts.
🔸 Two Pole Oscillator- Fast trend strength + direction change confirmation.
🧃 Delta Volume Pressure- Measures real buy/sell aggression (accumulation vs distribution).
🚫 No Trade Zone Logic- Triggers in low volatility, mixed signals, or structure uncertainty.
📊 Bias Labels & Arrows- Display directional bias, trade zones, and visual entries only when clear.
📈 What You’ll See on Chart-
- Key structure swing highs/lows.
- Bull/Bear bias labels (top left).
- Buy/Sell arrows only when all smart money confirmations align.
- Gray zones showing no-trade periods (chop, conflict, low delta).
SMC Pro - Smart Money Concepts🎯 SMC Pro - Complete Smart Money Concepts Trading System with Trade Alerts
The Most Comprehensive SMC/ICT Indicator Built for Real Traders
After extensive research into what retail and prop firm traders actually need, I've created SMC Pro - a complete Smart Money Concepts indicator that solves the biggest problems with existing SMC tools.
🚀 What Makes This Different:
✅ COMPLETE TRADE SETUP ALERTS - Not just structure breaks! Get full trade setups with:
* Entry, Stop Loss & Target Prices
* Risk/Reward Calculations
* 5-Point Confluence Scoring
* Visual Trade Labels on Chart
✅ INTELLIGENT FILTERING - No more chart spam:
* Minimum structure size filter (ATR-based)
* Minimum bars between signals
* Volume confirmation for order blocks
* Clean, actionable signals only
📊 Core Features:
1. Market Structure Analysis
* Break of Structure (BOS) with smart filtering
* Change of Character (CHoCH) detection
* Clear directional bias identification
* Prevents excessive signal clustering
2. Order Blocks
* Volume-confirmed institutional zones
* Automatic mitigation tracking
* Entry points for trade setups
3. Fair Value Gaps
* ATR-based size filtering
* Automatic fill detection
* Confluence factor for trades
4. Liquidity Zones
* Buy-side & Sell-side liquidity mapping
* Sweep detection with alerts
* Target zones for trades
5. Risk Management Integration
* Automatic R:R calculation
* Position sizing guidance
* Minimum R:R filtering (default 2:1)
🎯 5-Point Trade Confluence System:
1. Market structure alignment
2. Recent structure break (BOS/CHoCH)
3. Order block at current price
4. Fair value gap support
5. Liquidity target available
Minimum score of 3/5 required for trade alerts (adjustable)
⚙️ Smart Settings:
* Swing Length: 10 (default) - adjust for sensitivity
* Min Bars Between Signals: 20 - prevents clustering
* Min Structure Size: 1.0 ATR - filters noise
* Min Confluence Score: 3/5 - quality control
* Target R:R: 2:1 minimum - proper risk management
📱 Alert Types:
* 🎯 Trade Setup Alerts - Complete entry/exit plans
* ✅ Structure Breaks - BOS & CHoCH notifications
* 📊 Order Block Touch - Price at key zones
* 💧 Liquidity Sweeps - Stop hunts detected
💡 Pro Tips:
* Start with default settings
* Use on 15m+ timeframes for cleaner signals
* Increase confluence requirement for prop firm trading
* Enable volume confirmation for higher quality OBs
* Dashboard shows real-time setup status
🔧 If You Get Too Many Signals:
* Increase Swing Length to 15-20
* Increase Min Bars Between to 30-50
* Increase Min Structure Size to 1.5 ATR
* Raise Min Confluence Score to 4 or 5
This indicator is the result of solving real problems traders face with SMC/ICT concepts. It's designed to give you clean, actionable trade setups - not just mark up your chart with zones.
Built with Pine Script v6 for maximum performance and reliability.
Trade with confluence. Trade with confidence. Trade smart. 🎯
Supply & Demand Pro [Institutional]🎯 Overview
The most comprehensive Supply & Demand indicator on TradingView, designed for serious traders and prop firm professionals. Unlike traditional S&D indicators that just draw pretty zones, this system tracks actual performance metrics, provides entry/exit signals, and includes professional risk management tools.
❓ Why This Indicator?
After extensive research into what traders actually need (not just want), this indicator addresses the TOP complaints about Supply & Demand trading:
- ❌ "I don't know which zones to trust" → ✅ Each zone shows historical win rate
- ❌ "No clear entry/exit rules" → ✅ Multiple entry methods with visual R:R
- ❌ "Can't backtest effectiveness" → ✅ Full performance tracking
- ❌ "Too many false signals" → ✅ Quality filters and volume validation
🚀 Key Features
🎯 Professional Zone Detection
- Volume Profile Analysis (finds institutional accumulation/distribution)
- Swing Point Detection (classic pivot-based zones)
- Order Flow Analysis (coming in v2)
- Hybrid Mode (combines multiple methods)
📊 Performance Analytics
- Individual zone win rates
- Daily P&L tracking
- Account balance simulation
- Success/failure ratio for each zone
- Historical performance data
💼 Prop Firm Tools
- Daily loss limits (auto-stops trading)
- Position sizing controls
- Maximum concurrent positions
- Daily profit targets
- Clean reporting for evaluations
🎨 Entry & Risk Management
- Zone Edge entry (immediate)
- 50% Retracement entry (patient)
- Momentum Confirmation entry
- Visual Risk:Reward boxes
- Multiple stop loss methods (ATR, Fixed %, Zone-based)
📈 Advanced Features
- Auto-removes failed zones
- Volume confirmation requirements
- Strength-based zone ranking
- Smart alerts for high-probability setups
- Multi-timeframe compatibility
📋 How It Works
1. Zone Creation: Continuously scans for high-quality supply/demand zones using your selected method
2. Quality Filtering: Each zone must pass strength, volume, and historical performance filters
3. Visual Feedback: Zones display strength %, test count, and win rate directly on chart
4. Trade Signals: When price touches a zone, the system calculates entry, stop, and target
5. Performance Tracking: Every zone touch is tracked to build historical win rates
⚙️ Quick Settings Guide
For Beginners:
- Detection Method: "Swing Points"
- Min Zone Strength: 15%
- Risk:Reward: 2:1
- Entry Method: "Zone Edge"
For Advanced Traders:
- Detection Method: "Volume Profile"
- Min Zone Strength: 20%
- Min Win Rate: 50%
- Entry Method: "Momentum Confirm"
For Prop Firm Traders:
- Enable all Prop Firm Tools
- Set Daily Loss Limit to your drawdown rules
- Max Positions: 2-3
- Use "Professional" theme for screenshots
📊 What Makes This Different?
Traditional S&D Indicators:
- Draw zones based on one method
- No performance tracking
- No entry/exit rules
- Can't verify effectiveness
Supply & Demand Pro:
- Multiple detection methods
- Tracks win rate for EVERY zone
- Clear entry/exit signals
- Full backtesting capability
- Risk management built-in
🎓 Best Practices
1. Start Conservative: Use higher strength requirements (20%+) until familiar
2. Trust the Data: Zones with 3+ tests and 60%+ win rate are golden
3. Respect Risk Limits: The daily loss limit feature will save your account
4. Volume Matters: Zones with volume confirmation are significantly stronger
5. Be Patient: Wait for high-probability setups (check the win rate!)
🔔 Alert Options
- Zone Touch Alerts (with strength & win rate)
- High Probability Setups (60%+ win rate zones)
- Daily Limit Warnings
- Risk Management Alerts
💡 Pro Tips
- Combine with market structure for best results
- Higher timeframe zones are more reliable
- Watch for zones that align with round numbers
- Use partial profits feature to lock in gains
- Review daily performance to improve
🐛 Troubleshooting
- No zones appearing? → Lower Min Zone Strength to 10%
- Too many zones? → Increase strength requirement or enable filters
- Win rates not updating? → Zones need multiple tests to calculate
⚡ Performance Note
This indicator uses advanced calculations and may take a moment to load on lower-end devices. The comprehensive analytics are worth the wait!
🎁 Bonus Features
- 4 Professional themes
- Customizable dashboard
- R:R visualization
- Zone strength ranking
- Session-based filtering (coming soon)
📧 Support & Updates
This is an actively maintained indicator. Updates include:
- New detection methods
- Enhanced analytics
- Community-requested features
- Performance optimizations
⭐ If you find this indicator helpful, please leave a rating and comment with your results!
📌 Remember: No indicator is perfect. Always use proper risk management and never risk more than you can afford to lose.