Indicator

Indicator

Indicator

Indicator

Indicator

Indicator

Indicator

Indicator

Order Block Matrix Trade Engine [Alpha Extract]A sophisticated institutional-grade order block ecosystem combining advanced liquidity mapping, dynamic volume-distribution visualization, and fully integrated automated trade-engine logic into a unified execution framework. The system identifies high-probability bullish and bearish order blocks through adaptive breadth analysis, overlays volumetric mountain profiling to visualize liquidity concentration inside each block, and automatically converts qualified reactions into fully managed trade setups with real-time performance analytics. By integrating smart mitigation handling, ATR-adaptive risk management, rejection-based confirmations, and live statistical tracking, the indicator delivers a complete order flow trading environment designed for precision execution across trending and ranging markets.
🔶 Advanced Institutional Order Block Detection Engine
Implements a sophisticated order block discovery framework using multi-candle structure analysis combined with ATR-adjusted breadth logic to isolate high-quality institutional accumulation and distribution zones. The system scans for bullish and bearish displacement structures, validates directional intent through sequential candle confirmation, and dynamically defines order block boundaries using either Full Candle mode or Breadth mode for adaptive precision.
= checkObCondition(obLookback)
if is_bullish
topValue = high
botValue = low
if is_bearish
topValue = high
botValue = low
🔶 Liquidity Mountain Volume Profiling System
Features a unique volumetric “mountain” rendering engine that visualizes liquidity density inside each order block through dynamically generated layered volume structures. Instead of traditional flat rectangles, the system creates evolving liquidity formations representing volume concentration and order flow intensity across the zone. Each mountain adapts in real-time based on relative block strength versus average market participation.
The engine applies multiple gaussian distribution curves combined with sinusoidal ridge modulation to simulate realistic institutional liquidity concentration, creating an intuitive representation of where absorption and participation occurred inside the order block.
🔶 Smart Order Block Strength Classification
Calculates dynamic order block strength using relative volume normalization against rolling market participation averages. Each block receives a live strength multiplier representing institutional conviction.
strength = ta.sma(volume, 20) > 0 ? block.totalVolume / ta.sma(volume, 20) : na
Higher strength blocks represent stronger participation and receive enhanced trade priority within the trade engine. This allows traders to isolate high-conviction zones instead of treating all order blocks equally.
🔶 Adaptive Mitigation & Invalidity Framework
Implements intelligent mitigation handling to continuously maintain chart cleanliness and signal quality. The system automatically removes invalidated order blocks once price fully breaches the defined risk boundary using configurable Close or Wick mitigation logic.
Close-based mitigation waits for candle body confirmation beyond the zone, while Wick-based mitigation aggressively removes invalidated structures immediately upon liquidity sweep. This flexibility allows adaptation between conservative and aggressive execution styles.
🔶 Automated Order Block Trade Engine
Transforms passive order block analysis into a complete semi-automated execution framework. Once price interacts with a qualified order block, the system automatically generates trade entries, calculates stop-loss placement, projects take-profit targets, and tracks the trade lifecycle in real time.
The engine supports both:
• Touch Entries — executes immediately when price enters the order block.
• Rejection Entries — waits for confirmation rejection before triggering.
triggered = trade_triggerMode == "Touch" ? inside : rejected
This allows traders to adapt between aggressive front-running entries and more conservative confirmation-based execution.
🔶 Dynamic Risk-to-Reward Projection System
Features fully automated risk management architecture calculating stop-loss and take-profit placement immediately upon entry. The system supports both:
• Block Edge Stops — uses structural order block invalidation.
• ATR Stops — volatility-adjusted dynamic stop placement.
Take-profit targets are generated through configurable risk-to-reward multipliers.
risk = math.abs(obEntry - obSL)
obTP := obEntry + risk * trade_rr
This creates standardized trade management across all setups while maintaining volatility awareness.
🔶 Real-Time Trade Lifecycle Tracking
Provides comprehensive active trade monitoring with live entry, stop-loss, take-profit, floating R-multiple, timer tracking, and duration analytics directly on the chart.
The system continuously tracks:
• Live R performance
• Bars held
• Time in trade
• Strength of originating order block
• Trade direction
• Open trade status
All statistics update in real time without repainting.
🔶 Institutional Performance Analytics Dashboard
Features a fully integrated professional trade statistics panel providing institutional-level strategy analytics directly inside PulseWire.
The framework tracks:
• Total trades
• Win rate
• Net R
• Average R
• Profit factor
• Buy vs sell performance
• Best and worst trades
• Average holding duration
• Winning and losing streaks
profitFactor = obSumLossR > 0 ? obSumWinR / obSumLossR : na
avgR = obTotalTrades > 0 ? obNetR / obTotalTrades : na
This transforms the indicator into a fully self-monitoring execution environment rather than a simple visual overlay.
🔶 Advanced Visual Architecture
Creates an institutional-quality visual experience through layered transparency systems, dynamic border rendering, volumetric liquidity structures, and adaptive color gradients.
Bullish order blocks use deep liquidity teal structures while bearish blocks utilize aggressive distribution crimson tones. Volume badges dynamically update with:
• Total order block volume
• Relative strength multiplier
• Block direction
The system maintains full visual clarity even during high-density market conditions.
🔶 Smart Block Overlap Resolution
Implements automatic overlapping order block resolution preventing redundant liquidity zones from cluttering the chart. When new blocks intersect existing structures, the framework intelligently prioritizes the latest active institutional zone and removes obsolete overlapping regions.
This creates significantly cleaner market structure visualization compared to traditional order block indicators.
🔶 Window-Based Performance Optimization
Features advanced processing optimization using configurable historical windowing to reduce unnecessary rendering overhead while maintaining full historical integrity.
This allows smooth performance even on lower timeframes with dense historical data.
🔶 Non-Repainting Confirmation Logic
Built using fully confirmed bar-state logic ensuring all order blocks, entries, exits, and statistical calculations remain stable after candle close. The framework avoids intrabar repainting behaviour commonly found in lower-quality order block systems.
This guarantees consistent backtesting behaviour and reliable live-market execution.
🔶 Comprehensive Alert Ecosystem
Provides a complete professional alert infrastructure supporting both discretionary traders and automated webhook systems.
Alerts include:
• New Bullish Order Block
• New Bearish Order Block
• Bullish Rejection Confirmation
• Bearish Rejection Confirmation
• Buy Entry Trigger
• Sell Entry Trigger
• Take Profit Hit
• Stop Loss Hit
Webhook-ready JSON payloads enable direct integration into external automation systems and execution infrastructure.
🔶 Why Choose Order Block Matrix Trade Engine ?
This indicator goes far beyond traditional order block visualization by combining institutional liquidity mapping, volumetric participation analysis, automated execution logic, and professional-grade statistical tracking into one unified framework. Rather than simply drawing supply and demand zones, the system actively interprets order flow quality, measures participation strength, filters low-conviction setups, and transforms reactions into fully managed trade structures with integrated risk management. Indicator

Mustang Algo EMA 20/50 Pullback+RSI Mustang Algo — EMA 20/50 Pullback + RSI + EMA 200 + Anti-Range Filter
A complete trend-following pullback system that combines four layers of confluence — short-term momentum (EMA 20), mid-term trend (EMA 50), long-term bias (EMA 200), and an anti-range filter — gated by RSI(14). The indicator trades both long and short with fully symmetric logic and provides granular control over signal frequency through multiple anti-spam mechanisms.
Core concept
In a trending market, price doesn't move in straight lines. It pulls back to dynamic support (the EMA 20) before resuming. This indicator detects those exact moments — when momentum is still intact (RSI confirms direction), the mid-term structure is aligned (EMA 20 above/below EMA 50), the long-term bias agrees (price or EMA 50 on the right side of EMA 200), and the market is genuinely trending (not chopping sideways) — and prints a signal only on the candle that confirms the rebound.
The hardest part of any pullback strategy is avoiding range markets, where the same logic that catches clean trend continuations produces a stream of losing trades. This version addresses that head-on with a dedicated anti-range layer.
How it works
LONG signal fires when EMA 20 is above EMA 50, the candle touches EMA 20 (wick or body, configurable), the close is above EMA 20 with a bullish body, RSI is above the long threshold, the EMA 200 filter is satisfied, and the anti-range filter confirms a trending environment.
SHORT signal is the exact mirror: EMA 20 below EMA 50, touch on EMA 20, bearish rejection candle, RSI below the short threshold, EMA 200 filter satisfied for shorts, and anti-range filter active.
Initial signals (INIT L / INIT S) mark the moment of the EMA 20/50 cross when all filters already agree — useful to catch the very first leg of a new trend before any pullback has formed.
Exits trigger on the opposite EMA 20/50 cross or when price closes beyond the EMA 50 (both toggleable independently).
EMA 200 trend filter — three modes
Price vs EMA 200 — standard: longs only above, shorts only below.
EMA 50 vs EMA 200 — structural: requires the mid-term EMA to be aligned with the long-term EMA. Fewer signals, higher conviction.
Both (strict) — requires both conditions simultaneously. Designed for swing setups and conservative profiles.
A tolerance setting (%) allows price to sit slightly on the wrong side of the EMA 200 without invalidating the signal — useful on FX and metals where price oscillates tightly around the long-term mean.
Anti-range filter — four modes
This is what separates a pullback indicator that works in trends from one that survives in real markets.
ADX — Classic Wilder ADX. Below the minimum threshold (default 20), the market is considered ranging and signals are blocked. Reliable on indices and crypto.
EMA distance — Measures the gap between EMA 20 and EMA 50 normalized by ATR. Below a configurable multiple (default 0.5×ATR), the EMAs are too close together, signaling consolidation. More reactive than ADX, ideal for gold and FX.
Choppiness Index — Dedicated chop measure on a 0-100 scale. Above the configurable maximum (default 61.8, the Fibonacci threshold), the market is choppy. Highest precision for pure ranges, best on D1 swing setups.
ADX + EMA distance (strict) — Default mode. Requires both ADX and EMA distance conditions simultaneously. ADX catches absolute weakness in directionality; EMA distance catches geometric compression. Each compensates for the other's blind spot. The two metrics together produce the cleanest signal set.
When the filter blocks the market, an optional yellow background highlights the ranging zones so you can calibrate your thresholds visually.
Signal frequency control
Two independent anti-spam layers let you fine-tune how aggressive the indicator is:
One signal per pullback (default ON) — A pullback is considered "consumed" after a signal fires. The setup must re-arm by moving N×ATR away from EMA 20 (default 0.5) before a new signal is allowed. Eliminates clustered signals during consolidation on the EMA 20.
Only first signal after EMA cross (default OFF) — Only the FIRST pullback signal after each EMA 20/50 cross is fired. Subsequent pullbacks in the same trend leg are ignored until a new cross occurs. Designed for swing traders who only want to enter at the start of a new trend.
Configurable inputs
Direction (LONG / SHORT toggles, independent)
EMA lengths (20 / 50 / 200) and source
EMA 200 filter mode and tolerance
Anti-range filter mode, ADX length and threshold, EMA distance multiplier, Choppiness length and threshold
RSI length and dual thresholds (long / short)
Touch mode (wick or body) and touch tolerance
Re-arm distance in ATR multiples
First-after-cross gating
Exit conditions (EMA cross / close beyond EMA 50)
Visual options (zone fill, EMA 200 background, range background, status table)
Built-in alerts
Seven alert conditions covering pullback BUY, pullback SELL, initial LONG, initial SHORT, LONG exit, SHORT exit, and a generic "any signal" alert. All messages include ticker, timeframe, and price.
Status table
A live readout in the top-right shows MT trend, EMA 200 filter state, range filter state, current ADX value, EMA gap/ATR ratio, the three EMA values, and current RSI — color-coded so the full setup state is readable at a glance.
Recommended settings by context
XAUUSD H1 — ADX min 18, EMA distance 0.4×ATR (gold moves fast, slightly more permissive)
EURUSD H1-H4 — ADX min 22, EMA distance 0.6×ATR (FX ranges often, stricter)
Indices D1 — ADX min 20, EMA distance 0.5×ATR (default values)
Crypto H4 — ADX min 25, EMA distance 0.7×ATR (erratic volatility, strictest)
For ultra-conservative swing entries: enable "Only first signal after EMA cross", set EMA 200 filter to "Both (strict)", and keep anti-range in default "ADX + EMA distance (strict)" mode.
Recommended timeframes
Works on any timeframe but performs best on H1 to D1 for swing setups, and M15 to H1 for intraday. On lower timeframes, increase the ATR re-arm distance and consider switching the touch mode to "Body" for higher quality signals.
Methodology notes
The indicator uses only standard, well-documented building blocks (EMA, RSI, ATR, ADX, Choppiness Index) — no black-box signals, no hidden repaint mechanics, no curve-fit thresholds. Every parameter is exposed and every decision is auditable from the source.
Signals are evaluated on bar close. The anti-range and anti-spam mechanisms are deterministic and use only past data, so backtests reflect real-time behavior.
Disclaimer
This is a technical analysis indicator, not financial advice. Always backtest on your specific instrument, timeframe, and broker spread before committing capital. Trend-following pullback strategies underperform in pure ranging markets — the multi-layer filtering mitigates this but does not eliminate it. Past performance does not guarantee future results.
— Mustang Algo Indicator

Indicator

MTF Pivot+ (Camarilla & CPR)MTF Pivot+ is an advanced indicator that combines Camarilla levels and Central Pivot Range (CPR) zones with multi-timeframe (MTF) analysis. It equips traders with a powerful toolkit to identify key support and resistance zones, analyze market trends, and pinpoint precision entry areas for both day trading and swing trading!
Key Features:
⏱️ Smart Auto-Timeframe: Automatically selects the optimal higher timeframe for calculating levels based on your current chart (e.g., Daily levels for intraday charts up to 30m).
🎯 Central Pivot Range (CPR): Displays the CPR zone (CP, BC, TC) with built-in trend analysis. The zone automatically changes color depending on its shift relative to the previous period (bullish, bearish, or flat).
📊 Camarilla Pivot Levels: Comprehensive calculation of internal levels (R1-R2 / S1-S2), key reversal zones (R3 / S3), breakout extremes (R4 / S4), and extended targets (R5-R6 / S5-S6).
🔄 Dynamic (Rolling) Pivots: Option to calculate levels from the previous day's close for daily dynamic updates, while still maintaining the true highs and lows of the higher timeframe.
💱 Advanced Futures Support: Seamlessly use continuous contracts and calculate pivots based on the Last Traded Price (LTP) instead of exchange settlement prices.
🎛️ MTF Dashboard: A compact, sleek on-chart panel showing the current price's position relative to the Central Pivot (CP) across Daily, Weekly, and Monthly timeframes at a single glance.
🔔 Comprehensive Alerts System: Built-in alerts with a smart "cooldown" feature for CPR crosses, touches of reversal zones, R4/S4 breakouts, and previous period High/Low breaches.
🎨 Highly Customizable: Easily toggle specific levels or features on/off (for example, enabling HLC mode hides main levels) to keep your charts clean, focused, and informative!
⚠️ Disclaimer:
This indicator is provided solely for educational and informational purposes. It does not constitute financial, investment, or trading advice.
Please keep the following important points in mind:
High Risks: Trading in financial markets (cryptocurrencies, forex, stocks, futures) involves a high level of risk and may result in the partial or total loss of your capital.
No Guarantees: Indicators are based on the mathematical analysis of past price data. Past price movements and successful level tests do not guarantee future profits.
Do Your Own Research (DYOR): Never make trading decisions based solely on the readings of a single indicator. Always conduct your own comprehensive market analysis, consider the overall context, and employ strict risk management.
Responsibility: You use this script entirely at your own risk.
Indicator

Breakout and Retest Signals - FloAlgoThis indicator detects breakout and retest signals by identifying key pivot zones and validating price rejection through wick sweeps and volume analysis.
How It Works
The script operates in three stages:
Pivot Zone Detection — Identifies swing highs and lows, then constructs zones anchored to the candle body and wick that formed the pivot. Demand zones span from body top down to wick low; supply zones span from wick high down to body bottom.
Rejection Validation — Confirms a valid signal when price sweeps beyond the zone extreme (wick tip) and closes back through the zone body, indicating institutional liquidity capture.
Volume Confirmation — Uses lower timeframe volume delta and buy/sell ratio to validate signal strength, filtering weak rejections with insufficient conviction.
Key Advantages
No Repaint — Single-period pivot detection ensures signals fire on confirmed historical bars, eliminating repaint delay between alert and visual.
Fixed Width Zones — Zones do not grow indefinitely; they are drawn with fixed horizontal width and trimmed only on signal, keeping charts clean.
Range-Based Overlap Guard — Demand and supply zones cannot overlap; range-based checking prevents conflicting zones from occupying the same price area.
Professional Visuals — No text labels or arrow clutter; only shaded zones and volume ratio splits for clean, professional appearance.
Accurate Zone Geometry — Zones anchored to actual candle body and wick formations, not flat ATR bands.
Auto-Cleanup — Zones are automatically removed one bar after signal or on expiry, preventing chart clutter.
Seconds Chart Support — Volume timeframe input guarded to prevent errors on sub-minute charts.
No Signal Conflicts — Removed confirmation divisor that caused opposing signals on the same bar.
Zone Lifecycle
Unlike traditional indicators that grow zones indefinitely, this script uses a fixed-width approach:
Zones are drawn from the pivot candle to a fixed future bar (born + maxLife)
Upon signal, the zone right edge is trimmed to the signal bar
The zone remains visible for one bar after the signal, then is automatically removed
Expired zones without signals are cleanly purged to prevent chart clutter
Visual Elements
Shaded boxes marking demand (green) and supply (red) pivot zones
Volume ratio split boxes within zones showing buy/sell pressure balance
Dashed target projection lines from signal bars
Zone borders fade and thin out after signal confirmation
Key Settings
Swing Length — Sensitivity of pivot high/low detection
Max Bars Active — Fixed horizontal width of zones in bars
Min Bars Between — Minimum bars between consecutive signals
Max Zones Per Side — Maximum active zones per direction
Volume TF — Frame for volume delta analysis
Show Ratio Split — Display buy/sell volume ratio inside zones
Show TP Line — Display target projection lines
Indicator

Indicator

Aurelian Auction Ledger [JOAT]Aurelian Auction Ledger
Introduction
Aurelian Auction Ledger is an open-source range and auction analysis overlay designed to identify compressive trade zones, map their internal value structure, and show how price behaves when it tests the edges of that ledger. The script builds a live range shell, calculates a point of control and value area, tracks sweep events, and presents the active auction state in a top-right dashboard.
The problem Aurelian solves is hidden range structure. Consolidation zones are often treated as simple rectangles, but not all ranges are equal. Some are balanced, some lean toward accumulation, some toward rejection, and many fail through one-sided sweeps before resolving. Aurelian turns that internal auction structure into something visible.
Core Concepts
1. Compression-based ledger build
The script measures whether recent bars are tight enough in ATR terms, efficient enough in body structure, and balanced enough in directional pressure to qualify as a live auction ledger.
2. Range shell and internal value area
When a ledger is active, the script draws:
The outer ledger shell
The internal value area
The point of control
This separates broad range boundaries from the price zone where most business is actually being done.
3. Right-side auction profile
Volume is accumulated across profile rows inside the active ledger so the script can identify the highest-volume row and estimate the value area around it.
4. Sweep tracking
Upper and lower sweep events are tracked only on confirmed bars. This helps distinguish clean acceptance from failed range probes.
5. Ledger tilt
The indicator maintains a directional tilt metric so the range shell is not displayed as neutral by default. If the auction begins leaning toward acceptance or rejection, the color balance reflects that change.
Features
Compression-driven range detection: Searches for structured auction zones rather than generic boxes
Live range shell: Displays the active ledger high, low, and midpoint
Point of control and value area: Maps where the auction is most concentrated
Right-side profile: Extends the auction structure visually beyond the current bar
Sweep detection: Tracks confirmed probes beyond the ledger edges
Auction tilt readout: Shows whether the range is leaning toward acceptance or rejection
Top-right dashboard: Reports mode, compression, width, POC, value area, sweeps, and tilt
Non-repainting event logic: Sweep and breakout conditions are confirmed on bar close
Input Parameters
Ledger Core:
ATR Length
Ledger Build Bars
Compression Ceiling
Body Efficiency Ceiling
Directional Balance Ceiling
Breakout Buffer
Auction Profile:
Profile Rows
Profile Width
Value Area Coverage
Visuals:
Show Range Shell
Show Right-Side Profile
Show Sweep Marks
Tint Auction Bars
Show Dashboard
How to Use This Indicator
Step 1: Confirm that a ledger is live
Check the dashboard mode first. If the ledger is not active, the script is still scanning for a qualified auction structure.
Step 2: Watch the POC and value area
These levels show where the auction is concentrated and whether price is rotating inside value or challenging the edges.
Step 3: Track sweeps versus acceptance
Confirmed sweep events can mark failed probes. If price repeatedly sweeps one side and returns, the ledger is revealing where excess is being rejected.
Step 4: Use tilt as context, not prediction
Ledger tilt helps interpret which side has more pressure, but the actual resolution still depends on whether price ultimately accepts outside the shell.
Indicator Limitations
The script is designed for structured ranges and will naturally stand down during broad directional moves
Volume distribution inside a candle is approximated using row allocation rather than true intrabar order flow
A qualified ledger can still break without first producing a sweep event
Originality Statement
Aurelian Auction Ledger is original in how it combines a compression-qualified range state, an internal profile-derived value area, sweep tracking, and directional tilt into a single clean overlay. It is published because:
The script distinguishes a structured auction ledger from a generic consolidation rectangle
It combines shell, POC, value area, and sweep tracking in one coherent range workflow
The tilt metric provides additional auction context without cluttering the chart with heavy labels
Disclaimer
This indicator is provided for educational and informational purposes only. It is not financial advice and does not guarantee future market behavior. Range structures can fail abruptly, and volume-based value estimates are still interpretations of historical trading activity. Always use independent judgment and proper risk management.
Indicator

Opening Auction Ledger [JOAT]Opening Auction Ledger
Introduction
Opening Auction Ledger is an open-source session framework built to standardize how the opening range is measured, locked, evaluated, and managed throughout the day.
The indicator is designed around a simple institutional question:
Once the opening auction is complete, is price accepting away from it or failing back into it?
The script answers that by combining:
session-specific opening range capture
high-low or body-based range construction
breakout qualification
relative volume confirmation
objective extension ladders
session profile rendering
adaptive continuation trail management
historical breakout tracking in a dashboard
This makes the opening range usable as more than a static box.
It becomes a complete session ledger.
Core Concepts
1. Opening Range Capture
The script builds the opening range only during the specified session window and then locks that range when the session ends.
This preserves a fixed reference for the rest of the day.
2. Source Flexibility
Users can define the opening range using raw highs and lows or candle bodies.
This changes how strict the opening auction frame is and can make the indicator more stable on noisy instruments.
3. Qualified Breakout Detection
Breaks are not accepted simply because price crosses a range boundary.
The script can require a minimum displacement beyond the range and, optionally, a relative-volume lift compared with recent activity.
4. Objective Laddering
Once a breakout is confirmed, the script projects three extension objectives above and below the opening range using multiples of the locked range size.
5. Continuation Management
An adaptive ATR trail follows the accepted breakout so continuation quality can be monitored after the initial move is underway.
Features
Configurable opening session: user-defined session window and timezone
Opening range lock: session range freezes after the auction ends
Body or high-low source mode: choose the structure used to build the range
Relative-volume breakout filter: optional confirmation prevents weaker breaks from being counted
Minimum displacement filter: breakout must exceed a configurable fraction of the locked range
Extension ladder: three upside and three downside objectives
Session profile: profile-style rendering of activity inside the opening auction
Continuation trail: adaptive ATR trail tracks accepted move quality
Historical outcome counters: dashboard tracks breakout counts and objective hit rates
Institutional dashboard: top-right summary of session state, range size, direction, and objective performance
Input Parameters
Opening Auction
Opening Range Session
Session Days
Timezone
Range Source
Minimum Break % Of Range
Require Relative Volume Lift
Relative Volume Threshold
Extension Ladder
Show Extension Ladder
Objective One
Objective Two
Objective Three
Show Price Labels
Auction Profile
Show Session Profile
Profile Rows
Profile Width Bars
Profile Offset Bars
Continuation Management
Show Adaptive Continuation Trail
Trail ATR Length
Trail ATR Multiplier
Display
Range Fill Transparency
Shade Session State
Dashboard Position
Dashboard Size
How to Use This Indicator
Step 1: Wait for the Range to Lock
Do not treat the opening range as final until the configured auction window is complete.
Before that point, the frame is still forming.
Step 2: Measure the Quality of the First Break
The first breakout matters most when it clears the minimum displacement rule and is supported by the configured relative-volume threshold.
Step 3: Use the Ladder as an Objective Map
The projected targets are not predictions.
They are structured expansion references derived from the opening range itself.
Step 4: Follow the Trail for Acceptance
The continuation trail helps determine whether price is still accepting away from the opening auction or beginning to fail back toward it.
Step 5: Review the Dashboard Statistics
The dashboard can help users understand how often objective ladders are being reached under the current settings and instrument behavior.
Indicator Limitations
The usefulness of the opening range depends heavily on the selected session and market traded
Relative-volume logic is chart-volume based and depends on the instrument's available volume series
Very narrow opening ranges can create closely spaced objectives in low-volatility sessions
A qualified breakout can still fail quickly in event-driven or thin-liquidity conditions
Originality Statement
Opening Auction Ledger extends the classic opening-range idea into a broader session framework by combining range locking, breakout qualification, objective ladders, profile context, continuation management, and outcome tracking in a single open-source script.
Disclaimer
This indicator is provided for educational and informational purposes only.
It is not investment advice and does not guarantee that any breakout or target sequence will succeed.
All calculations are based on historical chart data and should be interpreted with appropriate risk management and independent analysis.
Indicator

Indicator

Indicator

Crown Structure Ledger [JOAT]Crown Structure Ledger
Introduction
Crown Structure Ledger is an open-source market structure ledger built to classify price through three structural horizons at the same time: short-term, intermediate-term, and primary-term.
Instead of reducing structure to a single swing model, this script maintains separate rails for each horizon so users can see where local repricing, intermediate repricing, and larger campaign structure are currently positioned.
The indicator is designed to solve a common chart-reading problem:
Traders often know price is moving, but they do not know whether the move is merely a short-term impulse inside a larger range, an intermediate continuation, or a genuine primary expansion.
Crown Structure Ledger addresses that by combining:
confirmed pivot structure
active break state tracking
adaptive ATR corridors
EMA trend context
volume-pressure bias scoring
state-based candle coloring
forward structure projection
a top-right institutional dashboard
The output is intentionally visual but restrained.
Instead of cluttering the chart with excessive markers, the script emphasizes live structural rails, shaded corridors, confirmed state transitions, and a dashboard that summarizes the current condition of each structural layer.
Core Concepts
1. Three-Horizon Structure Mapping
The script confirms three separate pivot systems using different left/right lengths.
This creates a short-term layer for local impulse, an intermediate layer for swing control, and a primary layer for broader directional structure.
Each confirmed pivot updates its own active rail instead of overwriting the other layers.
2. Confirmed Break Logic
Break states are only recognized on confirmed bars.
This means the script does not react to intrabar spikes through a level.
A structural state changes only when price closes through a live rail beyond a small corridor allowance.
3. Adaptive Structure Corridors
Every rail is wrapped in an ATR-based corridor.
When adaptive depth is enabled, the corridor expands or contracts according to volatility conditions so the structure model stays usable across slow and fast environments.
4. Pressure-Weighted Bias
The indicator includes a directional pressure score based on up-volume versus down-volume across a configurable window.
That pressure score is combined with EMA orientation and structure state to create a bias color system rather than a binary trend flag.
5. Forward Projection
Current structural rails can be extended forward so the user can see where the next important structural interaction is likely to occur without manually drawing continuation levels.
Features
Three structure horizons: short, intermediate, and primary rails tracked independently
Adaptive structure corridors: live ATR-based zones around active rails
Confirmed structural transitions: break states only update on confirmed bars
Break labels: optional state labels appear when a new structural expansion or compression is confirmed
EMA trend filter: fast and slow EMA alignment supports the structure interpretation
Volume-pressure bias model: directional pressure is estimated from relative up-volume and down-volume
Bias cloud: optional background cloud reflects broader directional control
Candle coloring: bars can be colored from bearish to bullish using a gradient-like bias response
Forward corridor projection: active rails can extend to the right edge of the chart
Institutional dashboard: top-right summary of structure state, bias, pressure, and live rail context
Input Parameters
Structure Engine
Short Pivot Length
Intermediate Pivot Length
Primary Pivot Length
Structure Corridor ATR
Adaptive Corridor Depth
ATR Length
Bias Filter
Fast EMA
Slow EMA
Pressure Window
Color Candles
Show Structure Cloud
Show Structure Rails
Show Break Labels
Visual System
Show Short Term
Show Intermediate Term
Show Primary Term
Show Forward Corridor
Forward Corridor Bars
Dashboard Position
Dashboard Size
How to Use This Indicator
Step 1: Read the Three States Separately
Start by checking whether short-term, intermediate-term, and primary-term structure agree.
When all three align, the chart is in a cleaner directional condition.
When they diverge, the market is often transitioning or rotating.
Step 2: Watch the Active Rails
The live rails mark the current structural boundaries that still matter.
These are the levels price must reclaim or lose to produce a confirmed structural update.
Step 3: Use the Corridors, Not Just the Line
The corridor around a rail is intentional.
It helps avoid overreacting to shallow level breaches in noisy conditions.
Step 4: Read the Bias Cloud and Candle Tone Together
If candle color, pressure bias, and the structure cloud all point in the same direction, the chart context is stronger than a single rail break by itself.
Step 5: Use the Dashboard as a Summary, Not a Shortcut
The dashboard is there to reduce scanning time.
It is best used as a summary of what the rails are already showing visually.
Indicator Limitations
Pivot-based structure confirms after the configured right-side bars complete, so signals are intentionally delayed for non-repainting behavior
Very aggressive settings can make the short-term layer overly sensitive on low-quality markets
In prolonged compression, structure may appear stable while directional follow-through remains weak
The indicator explains current structure; it does not guarantee continuation after a break
Originality Statement
Crown Structure Ledger is built around a layered structure ledger rather than a single swing map.
Its distinguishing value comes from maintaining three live structure horizons with adaptive corridors, pressure-aware bias scoring, forward projection, and a dashboard that keeps the chart readable while still exposing the full state of the engine.
Disclaimer
This indicator is provided for educational and informational purposes only.
It is not financial advice and should not be treated as a recommendation to buy or sell any financial instrument.
All structural readings are derived from historical price and volume data and can fail in abnormal market conditions.
Always use independent judgment and risk management.
Indicator

Indicator

Indicator

Indicator

Elaris FVG Inversion ProElaris FVG Inversion Pro
Advanced Fair Value Gap & Inversion Mapping System
Elaris FVG Inversion Pro is a professional-grade market structure and imbalance visualization tool designed to help traders identify fair value gaps (FVGs), inversion fair value gaps (IFVGs), and potential reaction zones directly on the chart.
The indicator focuses on price inefficiencies created by aggressive directional movement and highlights areas where price may revisit, react, continue, or reverse.
Instead of displaying excessive noise, the system uses smart filtering logic, mitigation tracking, and optional trend confirmation to provide a cleaner and more structured view of market imbalance behavior.
━━━━━━━━━━━━━━━━━━
Core Features
━━━━━━━━━━━━━━━━━━
• Bullish & Bearish Fair Value Gap Detection
Automatically identifies three-candle imbalance structures in real time.
• Inversion Fair Value Gaps (IFVG)
Detects when previously established imbalance zones transition into potential reversal zones after invalidation.
• Non-Repainting Confirmed Detection
Signals and zones can be confirmed only after candle close to maintain stable historical plotting.
• Smart Gap Filtering
Optional ATR, volume, and EMA trend filters help reduce low-quality or insignificant zones.
• Dynamic Zone Management
Zones automatically extend forward and can be configured to expire or hide after mitigation.
• Mitigation Tracking
Supports multiple mitigation models including:
* Proximal
* Midpoint (50%)
* Distal
• Quality Scoring System
Each zone is evaluated using volatility and structure-based conditions to help prioritize stronger imbalances.
• Dark & Light Mode Compatible
Designed for clean visibility across different PulseWire chart themes.
• Professional Dashboard
Displays active bullish, bearish, and inversion zones along with trend-state information.
━━━━━━━━━━━━━━━━━━
How It Works
━━━━━━━━━━━━━━━━━━
Bullish FVG:
Forms when price leaves an upside imbalance between candles, potentially creating a future demand area.
Bearish FVG:
Forms when price leaves a downside imbalance, potentially acting as future supply.
IFVG:
Occurs when price invalidates an existing FVG and the zone transitions into a potential reversal area.
The indicator can be used for:
* Trend continuation setups
* Pullback entries
* Liquidity-based reactions
* Market structure analysis
* Confluence with support/resistance or liquidity concepts
━━━━━━━━━━━━━━━━━━
Best Practices
━━━━━━━━━━━━━━━━━━
Higher timeframe FVGs generally produce stronger reactions than lower timeframe gaps.
Using the optional EMA and volume filters may help improve signal quality during volatile or choppy market conditions.
For confirmation-based trading approaches, combine FVG reactions with structure breaks, momentum shifts, or liquidity sweeps.
━━━━━━━━━━━━━━━━━━
Notes
━━━━━━━━━━━━━━━━━━
This indicator is intended for technical analysis and educational purposes.
No indicator guarantees future performance, and traders should always apply proper risk management and independent confirmation before making trading decisions.
Indicator
