Recursive Kernel Trend [QuantAlgo]🟢 Overview
The Recursive Kernel Trend is a trend-following indicator built on a recursive residual estimator with adaptive rate scheduling. It applies one of six selectable filter structures to a residual-corrected recursion, modulates the update rate according to efficiency and volatility conditions, and confirms directional state through slope persistence. The result is a responsive yet controlled trend line that adapts its tracking behavior to market regime while filtering noise-driven fluctuations across every timeframe and instrument.
🟢 How It Works
The calculation begins with a residual between the selected price source and the current estimate. This residual drives a base recursive update whose rate is not fixed but scheduled on every bar:
resid = src - estimate
base = estimate + kern_rate * resid
The scheduled rate is produced by combining two adaptive weights. Efficiency weighting measures the ratio of net directional progress to total price path over a lookback window, raising the rate when movement is clean and lowering it during chop. Volatility weighting compares current ATR against a longer baseline and reduces the rate when volatility expands. The combined rate is then bounded by floor and ceiling limits and further scaled by an optional directional bias that applies different multipliers depending on whether price sits above or below the estimate:
eff_weight = eff_floor + (1.0 - eff_floor) * eff_ratio
vol_weight = math.min(math.max(1.0 / vol_ratio, 0.50), 1.75)
rate_sched = math.min(math.max(base_rate * eff_weight * vol_weight, rate_floor), rate_ceil)
kern_rate = rate_sched * bias
Six filter structures can be applied to the base update. Standard uses a single pass. Wilder halves the rate for smoother behavior. Double and Triple apply successive lag-compensated stages. Gaussian cascades four poles without compensation. Hull combines fast and slow passes then re-smooths the result. All structures receive the live scheduled rate so the adaptive weighting remains active.
A residual accumulator runs in parallel with the recursion. It retains a decaying memory of past residuals and applies a correction term that closes persistent offset during sustained trends. An optional ATR-based limiter can bound the accumulator to prevent overshoot after gaps or parabolic moves:
corr_acc := corr_acc * corr_decay + resid
estimate := kern_out + corr_weight * corr_acc
Directional state is derived from the slope of the finished estimate after a short smoothing window. A consecutive run of bars in the same slope direction must reach a confirmation threshold before the state is allowed to flip. This step prevents single-bar noise from reversing the trend color or firing alerts.
🟢 Signal Interpretation
▶ Bullish Trend (Long/Buy): When the smoothed slope of the estimate remains positive for the required number of confirmation bars, the indicator enters bullish state. The trend line and gradient layers switch to the bullish color. This condition identifies potential long or buy opportunities and remains active until an equal run of negative slope bars confirms a reversal.
▶ Bearish Trend (Short/Sell): When the smoothed slope remains negative for the required confirmation bars, the indicator enters bearish state. The visual elements switch to the bearish color. This condition identifies potential short or sell opportunities and holds until a confirmed positive run occurs.
🟢 Features
▶ Preconfigured Presets: Three parameter sets cover different trading approaches. Default targets swing trading on 1H to daily charts with balanced rate and confirmation. Fast Response raises the recursion rate and shortens confirmation for intraday charts where the indicator needs to adapt to shorter-duration moves. Smooth Trend lowers the rate and lengthens confirmation for position trading on daily and weekly timeframes, where the cost of a false flip is higher than the cost of a delayed one. Selecting a preset overrides the individual rate, efficiency, and state detection inputs.
▶ Built-in Alerts: Three alert conditions are provided. Bullish State Signal fires when the trend state flips from bearish to bullish. Bearish State Signal fires on the opposite transition. Any State Change combines both into a single notification.
▶ Visual Customization: Six color presets (Classic, Aqua, Cosmic, Cyber, Neon, Custom) coordinate the trend line and gradient layers. Optional bar coloring tints candles with the active state color at a configurable transparency.
*Tips: Layer the Recursive Kernel Trend with complementary analysis rather than treating it as a standalone trading tool. State flips hold most reliably when backed by participation, so combine each change with volume context, since a flip on expanding volume is far more likely to sustain than one on thin flow, and read the move against market structure, as a reversal that aligns with a clear swing high or low carries more significance than one in open space. Pairing this script with volume, open interest, CVD, market structure, and mean reversion indicators from our QuantAlgo toolkit can further validate a directional shift before entry. Indicator

Liquidity Sweep Reversal [JOAT]═══ LIQUIDITY SWEEP REVERSAL ═══
Liquidity Sweep Reversal hunts the stop-run. Price wicks beyond a prior swing high or low to grab resting liquidity, then snaps back inside — and that reclaim is where the reversal often begins. This tool tracks those levels, validates the sweep, and frames a complete trade with stop, targets and live outcome stats. 🎯
▎ WHAT IT DOES
It maps recent swing highs and swing lows as liquidity pools, watches for a candle to pierce one and then close back on the correct side (the reclaim ), and prints a clean BUY or SELL label. Every valid signal is turned into a structured trade: an ATR-based stop beyond the swept wick and three R-multiple targets, all tracked to resolution on a self-scoring dashboard.
▎ HOW IT WORKS
• Liquidity mapping — Confirmed pivot highs and lows (lookback set by Swing Pivot Lookback ) are stored as active levels per side, capped in count and aged out after a maximum bar age so only relevant pools remain.
• Sweep + reclaim — A bullish setup needs the bar to wick below a tracked swing low, then close back above it (sell-side liquidity grabbed). A bearish setup wicks above a swing high, then closes back below it. The reclaim can complete on the sweep bar or within the Reclaim Window you allow.
• Wick-depth gate — The penetration beyond the level is measured in ATR. Too shallow (noise) or too deep beyond the Max Wick cap (a genuine breakout) is rejected, so only clean stop-hunts qualify.
• Confluence filters — Optional volume-spike confirmation, HTF trend alignment (BUY only above a higher-timeframe EMA, SELL only below), directional restriction, dual-side sweep blocking on wide bars, and a signal cooldown all thin the feed.
• Trade construction — Entry is the reclaim close. The stop sits beyond the swept wick by an ATR buffer, then is clamped between a min-risk floor and max-risk cap. That risk (1R) projects TP1 / TP2 / TP3 at your chosen R multiples.
• Outcome engine — Each trade is followed bar by bar. Same-bar stop-vs-target conflicts resolve by your chosen priority, and trades that never reach TP3 or stop are flattened at a bar timeout — every result feeds the stats.
▎ HOW TO USE IT
• A BUY pill under price marks a bullish reclaim; a SELL pill above price marks a bearish one. The dotted level line and SSL / BSL SWEEP tag show exactly which liquidity pool was raided.
• The green target zone spans entry to TP3; the red risk zone spans entry to stop. Lines and left-side labels print entry, SL and each TP with its R value.
• On close, a result label reports the outcome — TP3 , a protected partial TP , SL , or a TIME exit — with the realised R.
• Treat signals as a structured framework, not a black box: strongest reversals tend to appear at obvious swing extremes, with HTF alignment and a volume spike behind them.
▎ KEY SETTINGS
• Engine — pivot lookback, reclaim window, ATR length, tracked levels per side, level age, and signal direction (Both / Long / Short).
• Filters — min/max wick depth, volume-spike confirmation, HTF timeframe + EMA, dual-side blocking, and cooldown bars.
• Trade Model — stop buffer, min/max risk bounds, TP1/TP2/TP3 in R, same-bar priority, trade timeout, and drawn-trade history depth.
• Visuals — toggles for markers, sweep lines, zones, level labels, result labels, optional signal-candle tint, and a session VWAP ± σ band .
▎ DASHBOARD
A compact panel reports live state — Status (Waiting / Armed / Active), current active trade side, last sweep and its level — alongside performance: sweeps detected, signals taken, closed count, win rate , profit factor , average R , bull vs bear win%, current and max win/loss streak , and an optional TP1/TP2/TP3 vs SL/Timeout breakdown. Position and text size are configurable.
▎ ALERTS
• Bullish Sweep (BUY) and Bearish Sweep (SELL) on confirmed entries.
• TP3 Hit , Partial TP Hit (protected exit), and SL Hit on trade resolution.
▎ NOTES
• Works on all timeframes and all assets — instruments without volume simply pass the volume filter.
• Signals confirm on the reclaim close , so a printed BUY/SELL marker does not move once the bar closes.
• Every visual has a toggle — turn off zones, lines, labels or the dashboard for a minimalist chart.
• The on-chart statistics summarise historical signals only and are illustrative, not a forecast.
For research and education only. This is not financial advice. No indicator can predict the future, and past behaviour does not guarantee future results. Always manage your own risk.
Made with passion by JackOfAllTrades ⚡ Indicator

ICT Kill Zone Sniper [JOAT]═══ ICT KILL ZONE SNIPER ⚡ ═══
A session-aware sniper tool that paints every candle by its active kill zone, tracks the liquidity pool each session leaves behind, and fires a single clean BUY or SELL only after price sweeps the prior pool and reverses back inside the current kill zone. Built for traders who wait for the liquidity grab, not the breakout.
▎ WHAT IT DOES
It splits the trading day into four classic kill zones — Asia , London , NY-AM and NY-PM — colors the candles inside each one, and records the high and low that every finished session builds. Those prior highs/lows become the liquidity pools hunted in the next window. When the current kill zone reaches into one of those pools and then closes back through it, the tool marks the sweep and projects a full trade: entry, ATR stop, and an R-based target zone.
▎ HOW IT WORKS
• Kill-zone clock — each session window is evaluated in a chosen wall-clock timezone (New York by default). Membership is na-guarded, so it behaves correctly on any intraday timeframe and simply idles on higher timeframes.
• Session state machine — while a kill zone is live, the tool expands that session's running high and low. When the session ends, that high/low is frozen as the prior liquidity pool and drawn as dashed projection lines carried into the next window.
• Sweep + reversal detection — a high sweep needs price to trade above the prior pool high yet close back below it; a low sweep needs a dip below the prior pool low with a close back above. A Min Sweep Depth (× ATR) filter rejects micro-penetrations caused by spread and tick noise.
• Confirmation — sweeps can be evaluated on confirmed bar close only, so signals do not repaint intrabar. At most one long and one short can print per kill-zone occurrence when the one-per-side lock is on.
• Optional HTF bias — a higher-timeframe EMA (requested with lookahead off) can gate direction: longs only above it, shorts only below it.
• Trade projection — on a valid signal the stop is placed beyond the swept extreme plus an ATR buffer, risk is measured from entry to stop, and the target is set at your chosen R multiple. Reward and risk are drawn as tinted zone boxes with entry/SL/TP lines and level labels.
• Optional VWAP — a session-anchored VWAP with a ±σ band is available as extra context.
▎ HOW TO USE IT
• Wait for a BUY or SELL pill to print inside a colored kill zone — it means the prior pool was swept and price reversed back through it.
• The green zone box is the reward leg toward the R-target; the red zone box is the risk leg to the stop. The label pill shows the session and the R multiple.
• Use the dashed prior high/low lines as the liquidity being hunted this session — signals cluster around them.
• Treat the HTF bias as a directional filter and the sweep tags as confirmation that liquidity was actually taken before you commit.
• Combine with your own structure read; the tool marks the setup, you manage the trade.
▎ KEY SETTINGS
• Kill Zones — timezone plus editable session windows for Asia, London, NY-AM and NY-PM.
• Signal Engine — ATR length, confirm-on-close, one-signal-per-side lock, and minimum sweep depth.
• HTF Bias — toggle, higher timeframe, and EMA length.
• Trade Model — stop buffer beyond the sweep, risk/reward target in R, projection length, and how many past signals to keep.
• Visuals — candle tinting and transparency, session boxes, pools, sweep tags, signal labels, SL/TP lines and zone boxes, VWAP bands, and label size.
• Dashboard — show/hide, position, and text size.
▎ DASHBOARD
A cyberpunk chrome-gradient panel reporting the active session , current session high/low , a countdown to the next kill zone , the HTF bias state, the last liquidity grab side, the active signal with bars-since, the last entry , its stop / target , the current ATR , and a running long / short signal tally .
▎ ALERTS
• KZ Sniper Long — prior-pool low sweep plus bullish reversal inside a kill zone.
• KZ Sniper Short — prior-pool high sweep plus bearish reversal inside a kill zone.
▎ NOTES
• Works across assets; the session logic is intended for intraday timeframes and idles on higher ones.
• Confirm-on-close keeps signals non-repainting; the HTF EMA is requested with lookahead off.
• Nearly every visual has a toggle, so you can strip it down to just the candles and signals for a clean chart.
• Any on-chart tallies reflect historical signals only.
For research and education only. This is not financial advice. No indicator can predict the future, and past behavior does not guarantee future results. Always manage your own risk.
Made with passion by JackOfAllTrades ⚡ Indicator

Institutional Adaptive VWAP Trend Ribbon ProInstitutional Adaptive VWAP Trend Ribbon Pro
Overview
Institutional Adaptive VWAP Trend Ribbon Pro is an advanced institutional trend-following indicator built from the ground up in Pine Script® Version 6 for traders who want a cleaner understanding of market structure, directional momentum, trend continuation, and potential reversal zones without relying on multiple separate indicators.
Unlike traditional moving averages or standard trend indicators that react slowly to changing market conditions, this indicator combines an Adaptive VWAP Engine, Dynamic Volatility Analysis, Institutional Trend Ribbon, Adaptive ATR Trail, Momentum Evaluation, Trend Strength Scoring, and Smart Confirmation Filters into one unified trading framework.
The primary objective of this indicator is to simplify complex market information into an easy-to-read institutional trend ribbon that visually highlights bullish, bearish, and neutral market conditions while automatically identifying trend transitions and momentum changes.
The indicator is suitable for traders who prefer price action combined with adaptive market analysis rather than fixed moving averages or lagging trend systems.
Why This Indicator Was Developed
Financial markets constantly change their volatility, liquidity, and momentum characteristics. Traditional trend indicators usually operate using fixed calculations, making them less effective during changing market environments.
This indicator was specifically developed to solve several common problems faced by traders:
• Late trend entries
• Frequent false trend reversals
• Choppy market conditions
• Lack of institutional trend visualization
• Difficulty identifying trend strength
• Poor volatility adaptation
• Multiple indicators creating chart clutter
Instead of using several different indicators simultaneously, Institutional Adaptive VWAP Trend Ribbon Pro combines multiple adaptive calculations into a single visual framework.
The result is a cleaner chart while maintaining a large amount of market information.
Core Concept
The indicator continuously evaluates price relative to an Adaptive VWAP while simultaneously measuring volatility, momentum, trend persistence, deviation expansion, and directional strength.
Instead of asking only:
"Is price above or below a moving average?"
the indicator asks a much more advanced question:
"Is there enough institutional evidence to consider this trend healthy, sustainable, and worth following?"
Only after evaluating multiple market conditions does the trend ribbon update its state.
Adaptive VWAP Engine
The heart of this indicator is its Adaptive VWAP Engine.
Instead of relying on only one fixed VWAP calculation, the user may choose different operating modes including:
• Rolling Bars
• Rolling Days
• Daily VWAP
• Weekly VWAP
• Monthly VWAP
Each mode allows the indicator to adapt to different trading styles.
Scalpers may prefer shorter rolling calculations.
Swing traders may choose weekly or monthly anchored VWAP calculations.
This flexibility allows the indicator to remain useful across multiple market environments.
Adaptive Deviation System
Markets constantly expand and contract.
Using fixed-width bands often creates misleading signals during high or low volatility periods.
To solve this issue, the indicator dynamically measures market deviation while simultaneously protecting the band width using ATR.
This prevents the ribbon from collapsing during quiet markets while also allowing it to naturally expand during high volatility periods.
The adaptive deviation envelope therefore reflects actual market conditions rather than static calculations.
Institutional Trend Trail
The indicator continuously builds an adaptive trailing trend line using volatility-adjusted calculations.
Unlike simple ATR trails, this trail automatically adjusts its distance according to current market strength.
During strong trends:
• Trail becomes tighter
• Trend reacts faster
• Pullbacks remain inside the ribbon
During weak trends:
• Trail widens
• Noise is filtered
• False reversals become less frequent
This adaptive behaviour helps create smoother trend transitions.
Institutional Trend Ribbon
One of the most recognizable visual components of the indicator is the Institutional Trend Ribbon.
Instead of drawing a single colored line, the indicator creates multiple gradient layers which produce a professional ribbon effect.
The ribbon changes dynamically according to market conditions.
Green Ribbon
Represents bullish market conditions.
The brighter the ribbon becomes, the stronger the bullish trend.
Red Ribbon
Represents bearish market conditions.
Increasing ribbon intensity indicates strengthening bearish momentum.
Neutral Ribbon
When trend strength becomes weak, the ribbon automatically switches into a neutral state to indicate uncertainty.
This helps traders avoid forcing trades during low-quality market conditions.
Adaptive Glow System
The glow surrounding the ribbon is not simply cosmetic.
Its size automatically changes according to:
• Trend strength
• Volatility
• Momentum
• Recent trend flips
Strong institutional trends produce a wider and brighter glow.
Weak trends produce a smaller glow.
This provides additional visual confirmation without adding chart clutter.
Institutional Trend Strength Engine
One of the most advanced parts of this indicator is its internal Trend Strength Engine.
Rather than using a single measurement, the indicator evaluates multiple market characteristics including:
• Price position relative to VWAP
• VWAP slope
• Price momentum
• Distance from adaptive trail
• Band participation
• ATR expansion
• Trend persistence
• Price velocity
• Volatility regime
These components are combined into a normalized strength score ranging from 0 to 100.
Higher scores indicate stronger institutional participation.
Lower scores indicate weakening momentum or sideways conditions.
Smart Confirmation Filters
Before generating confirmed trend signals, the indicator can evaluate several optional confirmation filters.
These include:
• VWAP confirmation
• Momentum confirmation
• Slope confirmation
• ATR expansion confirmation
• RSI confirmation
• Minimum strength confirmation
These filters allow traders to customize how conservative or aggressive the signals should become.
Buy Signals
Bullish signals appear when:
• Trend flips bullish
• Confirmation requirements are satisfied (depending on settings)
• Institutional trend strength exceeds the selected threshold
Buy markers are plotted directly on the adaptive trend ribbon.
Sell Signals
Bearish signals appear when:
• Trend flips bearish
• Confirmation requirements are satisfied
• Institutional strength requirements are met
Sell markers appear directly on the ribbon for immediate visual recognition.
Candle Coloring
The indicator can automatically paint candles according to trend direction.
Green candles indicate bullish conditions.
Red candles indicate bearish conditions.
Neutral conditions remain unpainted.
This provides instant trend recognition even without watching the ribbon continuously.
Alert System
Multiple alert conditions are included:
• Bullish Trend
• Bearish Trend
• Buy Signal
• Sell Signal
• Trend Change
• Ribbon Flip
• Momentum Expansion
These alerts allow traders to automate notifications without constantly monitoring charts.
Recommended Markets
The indicator has been designed to work across a wide range of liquid financial markets, including:
• Forex
• Gold (XAU/USD)
• Silver
• Stock Indices
• Individual Stocks
• Cryptocurrencies
• Commodities
Recommended Timeframes
Depending on the selected VWAP mode, the indicator can be used on multiple timeframes.
Scalping:
1 Minute
3 Minutes
5 Minutes
Intraday:
15 Minutes
30 Minutes
1 Hour
Swing Trading:
4 Hour
Daily
Important Notes
This indicator is designed as a trend analysis and market structure tool.
Like every technical indicator, it should be used together with sound risk management, proper trade planning, and overall market context.
No indicator can predict future price movement with certainty.
Author Verification Declaration
This indicator has been independently researched, designed, engineered, coded, tested, optimized, and maintained by Forex_Market_Insights.
Every algorithm, visualization method, adaptive calculation, trend engine, ribbon construction, confirmation framework, and implementation included in this publication represents the original work of the author.
The indicator has been developed using Pine Script® Version 6 through independent software engineering practices with the objective of providing a professional institutional trend-following solution for PulseWire users.
Original Indicator Script Implementation Verification
Institutional Adaptive VWAP Trend Ribbon Pro is an original implementation created by Forex_Market_Insights.
The script architecture, adaptive VWAP framework, dynamic deviation calculations, institutional trend ribbon visualization, adaptive trailing methodology, trend strength engine, confirmation logic, gradient rendering system, and overall implementation have been independently developed specifically for this indicator.
This publication represents an original Pine Script implementation created for PulseWire and reflects the author's own design decisions, coding structure, visualization techniques, and algorithm integration.
Copyright & Ownership Declaration
© Forex_Market_Insights
All original source code, implementation logic, calculations, visualization methods, user interface design, documentation, and accompanying publication text are the intellectual work of Forex_Market_Insights.
This indicator has been created specifically for educational and analytical purposes on PulseWire. Unauthorized redistribution, misrepresentation of authorship, or republication of the original implementation without appropriate permission may violate applicable intellectual property rights and PulseWire House Rules.
www.pulsewire.com Indicator

Next Candle Predictor V4.1## Next Candle Predictor V4.1 — Terminology and Presentation Update
This update improves the clarity of the indicator's terminology and on-chart presentation while preserving its existing calculation framework, weighting structure, visual layout, and signal conditions.
### Changes
- Renamed displayed “Prediction” values to “Directional Score”.
- Replaced “Perfect Time” with “Strong Setup”.
- Renamed the volume-derived component to “Estimated Volume Pressure”.
- Renamed projection visuals to “Directional Scenario Candles”.
- Updated dashboard labels and alert messages for clearer interpretation.
- Removed performance-target wording.
- Added author attribution: Developed by Ceyhun C. Canbazoglu.
### Score Interpretation
The displayed long and short percentages are normalized directional confluence scores derived from the indicator’s rule-based components.
They are not statistical probabilities, expected win rates, guarantees, or forecasts of the next candle’s result.
### Estimated Volume Pressure
Estimated Volume Pressure uses OHLCV data and the closing price’s position within the candle range to estimate directional pressure.
It is not exchange-level bid/ask volume delta or actual aggressive buying and selling volume.
### Directional Scenario Candles
The optional scenario candles are volatility-scaled visualizations based on the indicator’s current directional scores.
They do not forecast the next candle’s exact open, high, low, close, direction, or price target.
### Core Framework
The existing multi-factor framework remains unchanged and continues to evaluate:
- trend direction,
- EMA alignment,
- MACD momentum,
- RSI position,
- Stochastic conditions,
- ADX trend strength,
- relative volume,
- estimated volume pressure,
- and volatility regime.
This indicator is intended as a technical-analysis and decision-support tool. It does not provide financial advice or guarantee trading results. Indicator

Adaptive Trend Cloud [JOAT]═══ ADAPTIVE TREND CLOUD ═══
A volatility-adaptive ATR SuperTrend that breathes with the market. Instead of a fixed multiplier, the band width auto-scales to the live volatility regime, then paints a filled cloud to a signal EMA, colors your candles by trend strength, and drops ATR-anchored SL/TP zones on every confirmed flip. One clean, self-contained trend engine with a cyberpunk chrome readout.
▎ WHAT IT DOES
It tracks the prevailing trend with a SuperTrend line whose ATR multiplier adapts to how volatile price currently is — wider in turbulence to avoid whipsaw, tighter in calm to catch turns earlier. The space between that line and a signal EMA is filled as a Trend Cloud , candles are shaded by how far price sits from the line, and momentum-confirmed BUY / SELL labels fire only when trend, regime, and momentum agree.
▎ HOW IT WORKS
• Adaptive multiplier — current ATR is percentile-ranked against its recent window to place volatility on a 0–1 scale. The base multiplier is then scaled up or down within an adjustable range, so high volatility widens the bands and low volatility narrows them.
• SuperTrend core — upper and lower bands are built from your chosen price basis (hl2, close, or ohlc4) ± adaptive-multiplier × ATR, and direction flips when price closes through the opposite band.
• Trend Cloud — a fill is drawn between the SuperTrend line and an EMA (which doubles as the regime filter), tinted green in uptrends and red in downtrends.
• Trend strength — measured as the distance from close to the SuperTrend line in ATR units, clamped and normalized so roughly 3 ATR reads as fully saturated. This drives the candle and cloud gradient from weak to strong.
• Momentum confluence — an optional filter requiring RSI above/below its midline, or MACD histogram sign, to agree with the flip direction.
• Signal logic — a BUY needs a bullish flip plus price above the EMA plus momentum agreement; a SELL needs the mirror. All three conditions must line up.
• SL/TP zones — on each signal, stop distance is ATR × your SL multiple, TP1 sits at 1R, and TP2 at your risk:reward ratio; boxes, lines, and labels live-extend forward while the trade runs, then freeze on the next flip.
▎ HOW TO USE IT
• Trade with the cloud: green cloud and green-shaded candles favor longs, red favors shorts.
• Treat BUY / SELL labels as your trigger — they only appear on a confirmed flip that also passes the EMA and momentum filters.
• Use the RISK ZONE (red) and TARGET ZONE (green) boxes to frame a trade at a glance: entry line, dashed SL, dotted TP1 at 1R, and TP2 at your chosen R multiple.
• Read candle brightness as conviction — deeply saturated candles mean price is stretched from the line and the trend is strong; pale candles signal a weakening or fresh move.
• Optionally enable the VWAP + σ bands for an intraday mean-reference and to gauge stretch from the session average.
• Combine with your own structure, higher-timeframe bias, and levels — this is context, not a standalone system.
▎ KEY SETTINGS
• Engine — ATR length, base multiplier, adaptive range (0 = fixed multiplier), volatility rank window, and band source.
• Filters — signal/trend EMA length, momentum toggle, RSI vs MACD, RSI length and midline.
• Risk — show zones on/off, SL in ATR units, risk:reward ratio, zone projection length, and how many past zones to keep.
• Visuals — cloud toggle and transparency, gradient candles, line/EMA/label toggles, VWAP bands and σ, label size, and the four bull/bear gradient colors.
• Dashboard — show/hide, panel position, and text size.
▎ DASHBOARD
A compact chrome panel reports live: current Direction , the Adaptive Multiplier in effect, the Volatility Regime (Low / Normal / High with a percentile), Trend Strength %, Bars In Trend , Distance To Flip in ATR, the Active Signal state, the current ATR value, and whether Momentum is aligned or divergent.
▎ ALERTS
• Bull Flip — SuperTrend turns up with price above EMA and momentum aligned.
• Bear Flip — SuperTrend turns down with price below EMA and momentum aligned.
• Any Flip — either signal fires.
Each includes ticker and interval placeholders.
▎ NOTES
• Works on any market and any timeframe — the adaptive engine re-ranks volatility to whatever chart you load.
• Signals confirm on the close of the flip bar and do not repaint after that bar closes.
• Fully self-contained with no external libraries; every visual layer (cloud, candles, zones, VWAP, dashboard) has its own toggle so you can keep the chart as clean as you like.
For research and education only. This is not financial advice. No indicator can predict the future, and past behavior does not guarantee future results. Always do your own analysis and manage your own risk.
Made with passion by JackOfAllTrades ⚡ Indicator

ICT Sessions & Killzones [JOAT]ICT Sessions and Killzones
Maps the trading day into sessions and killzones, then shows where each session's liquidity rests and when the next session raids it.
What it is
Intraday price is organised by time: different sessions have different behaviour, and each one leaves liquidity that the next session hunts. This indicator frames when the market is active and where that liquidity sits, so the raids become obvious in advance. It is an original session-mapping tool built around the widely-taught concept of session killzones and inter-session liquidity.
How it works
• Session boxes — Asia, London, New York AM and New York PM are each boxed from their own high to their own low across their clock window. The box is that session's realised range, and its edges are the liquidity the following sessions tend to seek.
• Liquidity lines — every completed session leaves its high and low as thin levels extended to the right. Resting buy-side liquidity sits at the highs, sell-side at the lows, each labelled.
• Sweeps — when a later session trades through a prior session's high or low, that raid is tagged, marking where stops were likely taken.
• Classic reference levels — the previous day's high and low and the midnight open are drawn as the anchor points this style of analysis leans on.
• Bias read — a simple, transparent read from the midnight open and the most recent killzone sweep-and-reclaim prints an understated directional tag. This tool is about mapping context and timing; it deliberately shows direction rather than full trade management.
The dashboard
An adjustable session-clock panel shows which session is currently active, the countdown context of the day, the most recent liquidity event, the current bias, and the reference levels in play, so the state of the day is readable at a glance.
How to use it
• Set the session windows and timezone to your market.
• Watch for a session to sweep the prior session's high or low and then reclaim — that is the timing this map is built to highlight.
• Use it as a context and timing layer beneath your own entry method, or alongside a structure or entry tool.
Settings
Session windows and timezone, which sessions and reference levels to display, sweep marking, bias options, plus full visual and dashboard controls.
Originality and usefulness
The contribution is a single, coherent map of session ranges, inter-session liquidity, sweeps and classic reference levels, with a transparent bias read — assembled so a trader can see the day's liquidity structure and timing without cluttering the chart. Everything evaluates on confirmed bars and does not repaint.
Notes and limitations
• Session times depend on the timezone and the instrument's trading hours; set them correctly for your market.
• The bias read is intentionally simple context, not a standalone trade signal.
• This tool maps liquidity and timing; it does not place stops or targets for you.
• Educational and analytical tool, not financial advice.
— made with passion by officialjackofalltrades
Indicator

Credit Stress Composite V2 Credit Stress Composite 2
Credit Stress Composite 2 is a macro-credit regime oscillator designed to identify shifts between easing credit conditions, tightening pressure, stress, and extreme credit dislocation.
The indicator combines multiple credit and macro-confirmation inputs into a single normalized composite, then maps that composite into clear regime zones. The goal is not to call exact tops or bottoms, but to identify when credit conditions are improving, deteriorating, or reaching historically elevated stress levels.
**Core Features**
- Composite credit stress oscillator
- Signal line and histogram for momentum confirmation
- Regime thresholds for calm, tightening, stress, and extreme stress
- Background shading by credit regime
- Early deterioration, confirmed tightening, easing reversal, and extreme stress markers
- Regime table for quick state reading
- Export plots for use in broader dashboard or stack systems
**How I Use It**
Rising readings suggest credit stress is increasing. Falling readings suggest credit conditions are easing. The most useful signals often occur when the oscillator begins reversing from elevated stress zones, especially when price structure confirms the shift.
In the BTC example shown, prior easing reversal signals appeared near major Phase 2 bull-market transitions, where credit stress began cooling while price started reclaiming upside momentum.
**Signal Types**
- `ED` Early Deterioration: first signs of tightening pressure
- `CT` Confirmed Tightening: stronger confirmation of rising stress
- `ER` Easing Reversal: stress begins easing from elevated conditions
- `XS` Extreme Stress: composite reaches extreme stress territory
**Important Notes**
This tool is intended for macro context and regime awareness. It should be used with price structure, trend, liquidity, and risk-management tools. It is not a standalone buy or sell signal.
Credit conditions can lead, lag, or diverge from price depending on the asset and cycle stage.
**Disclaimer**
This script is for educational and informational purposes only. It is not financial advice. Always do your own research and manage risk appropriately. Indicator

Opening Range Breakout Session Strategy [JOAT]Opening Range Breakout Session Strategy
Locks the opening range of your session, then trades disciplined, capped breakouts beyond it with fully framed risk.
What it is
The first minutes of a session set the day's battle lines. The opening range — the high and low forged during that early window — is where overnight orders, gap fills and early positioning collide, and price leaving that range tends to keep going. This indicator builds the opening range objectively, trades confirmed breakouts from it, and enforces the discipline that makes the approach workable: a session filter and a hard daily trade cap. It is an original implementation of the widely-used opening-range-breakout concept.
How it works
• Opening range — during a user-defined opening window (09:30–10:00 by default, in your chosen timezone) the tool records the high and low, then locks them as the reference range and draws a clean box with labelled ORH and ORL levels.
• Session and daily reset — signals are only allowed inside a separate trade-session window, and the range clears cleanly on each new day using a real day-change test, so nothing carries over stale.
• Breakout logic — a Buy fires on a confirmed close above the range high plus a small ATR buffer; a Sell on a confirmed close below the range low minus the buffer. The buffer filters marginal pokes through the edge.
• Discipline — a hard cap of N trades per day plus a minimum-bar spacing control prevent the range edges from generating repeated signals as price oscillates around them.
Trade framing
Each signal projects a red risk box and a green reward box. The stop is either the opposite opening-range edge (structure-based, the default) or an ATR distance, and the three targets ladder out in R multiples with labelled entry, stop and take-profit prices. Extension levels at 1R and 2R from the range edges are also projected as context for where a breakout may travel.
The dashboard
An adjustable session ticket shows the current phase (pre-open, opening, session or locked), the range size, the bias relative to the range, a breakout-extension meter, the trades used against the daily cap, the active signal, and a live first-target-before-stop tally from closed bars only.
How to use it
• Set the opening window, trade session and timezone to match your market (index or futures cash open, an FX session, or a crypto day boundary).
• Wait for the range to lock, then take confirmed breakouts; use the opposite edge as your invalidation and the extension levels as context.
• Respect the daily cap — the discipline is part of the method, not an afterthought.
Settings
Opening-range and trade-session windows, timezone, ATR length, stop mode and multiplier, breakout buffer, target R multiples, maximum trades per day, plus full visual and dashboard controls.
Originality and usefulness
Opening-range breakout is a public concept; the contribution here is the complete, disciplined implementation — objective range locking, a strict session and daily-reset model, buffered confirmed-close breakouts, structure-based stops at the opposite edge, and integrated non-repainting trade framing — explained so each control's purpose is clear.
Notes and limitations
• Range-bound sessions produce whipsaws around the edges; the buffer and daily cap reduce but do not remove this.
• Breakouts fail regularly — the opposite-edge stop and R-based targets exist precisely for that reason.
• Session settings must match the instrument, or the range will be measured at the wrong time.
• The win tally reflects only past bars on the current chart and is not a forecast.
• Educational and analytical tool, not financial advice.
— made with passion by officialjackofalltrades
Indicator

TJR Smart Money Model [JOAT]TJR Smart Money Model
An original, non-repainting build of the smart-money day-trading sequence: sweep liquidity, wait for a market-structure shift, confirm with SMT, then enter the retrace — timed to killzones.
What it is
Most "smart money" tools just spray BOS and CHoCH labels wherever price crosses a line. This one follows the actual process the method teaches, as an ordered sequence, and only signals when each step has happened in the right order. It is written from scratch; it implements widely-taught price-action concepts (liquidity, structure, displacement, SMT, killzones) rather than reusing anyone's code.
The sequence it trades
• Liquidity sweep — price raids an obvious swing high or low (where stops rest) and closes back inside. The failed raid, not the level itself, is the trigger. Sweeps are tagged, and the swept buy-side and sell-side liquidity are drawn and labelled.
• Market structure shift (MSS) — after the sweep, a displacement candle (a body larger than an ATR multiple) must break the short-term structure in the opposite direction. Structure is tracked one break per level: each swing can only produce one BOS or CHoCH, so the labels land exactly where the shift occurs instead of being repeated on every bar. This is the direct fix for the "random label" problem common to naive structure scripts.
• SMT divergence — an optional confluence filter. Set a correlated instrument and the tool checks whether that instrument confirms the sweep's new extreme. If your symbol makes a new low but the correlated one does not (or the mirror for highs), that break in correlation is flagged as SMT and can be required for entries. It is read with lookahead disabled, so it never borrows future data.
• Entry — once the MSS confirms, the tool marks the discount/premium zone: the fair-value gap left by the displacement, or the 50% equilibrium of the reversal leg. A signal fires when price retraces into that zone and reacts, inside a user-selected killzone (London and New York AM by default). The stop rests beyond the swept liquidity — the level that invalidates the idea — and targets ladder out in R multiples inside red-risk and green-reward boxes with labelled entry, stop and take-profit prices.
The dashboard
An adjustable "process card" shows exactly which stage the market is in right now — hunting a sweep, swept and awaiting an MSS, or shifted and awaiting the entry retrace — plus the bias, the SMT state, the active killzone, a conviction reading, the current signal, and a live first-target-before-stop tally computed on closed bars only.
How to use it
• Works on any asset and timeframe; it was designed for intraday index, forex and futures trading but the logic is scale-independent.
• For SMT, pair correlated instruments (for example two related indices, or two correlated currency pairs). Leave the correlated symbol blank to trade the model without the SMT filter.
• Set the killzones and timezone to the session you actually trade, or disable the killzone filter to see signals around the clock.
• Read the dashboard stage before acting: the model is a sequence, and the highest-quality entries are the ones where sweep, shift, SMT and killzone all agree.
Settings
Pivot strength, displacement size, sweep-to-MSS and MSS-to-entry windows, fair-value-gap and order-block controls, equilibrium band thickness, SMT symbol and toggle, killzone windows/timezone, candle paint, risk padding and target R multiples, plus dashboard controls.
Originality and usefulness
The value is the ordered, gated state machine: a sweep must precede a displacement-qualified structure shift, which arms an equilibrium/FVG entry, optionally cross-checked against a correlated instrument and a session window. The once-per-level structure logic and the confirmed-bar evaluation make the labels and signals precise and non-repainting — which is what separates this from a pile of overlaid smart-money drawings.
Notes and limitations
• The model is selective by design; on quiet days or ranges it may produce few or no setups. That is intended.
• SMT is only meaningful with a genuinely correlated symbol; a poor pairing produces misleading divergence.
• Displacement and sweeps are defined algorithmically and may differ slightly from a discretionary trader's manual reading.
• The win tally reflects only past bars on the current chart and is not a prediction of future results.
• Educational and analytical tool, not financial advice. Manage your own risk.
— made with passion by officialjackofalltrades
Indicator

Market Trend Machine Learning SignalsMarket Trend Machine Learning Signals
Overview
Market Trend Machine Learning Signals is a professional trend-following and smart trade setup indicator developed to help traders identify high-probability buying and selling opportunities directly from live market structure. Instead of relying on a single moving average or a basic crossover system, this indicator combines multiple layers of market analysis to determine when price is reacting from important support or resistance zones with sufficient confirmation to justify a potential trading opportunity.
The indicator continuously tracks live market conditions, evaluates trend strength, identifies dynamic support and resistance zones, analyzes price rejection behavior, and automatically builds complete trade setups consisting of:
Entry Price
Stop Loss
TP1
TP2
TP3
Final Target
Risk-to-Reward Ratio
Alongside these visual trade setups, the indicator also displays a fully customizable dashboard that summarizes the current market condition, confidence levels, trend direction, volatility, signal quality, support/resistance zones, and all active trade information in one place.
The primary goal of this indicator is to simplify professional market analysis by transforming complex price action into easy-to-read institutional-style trading setups.
---
Why This Indicator Was Created
Many traders spend a significant amount of time manually identifying support and resistance levels, evaluating trend direction, calculating risk management, and estimating realistic profit targets.
This process is often subjective and inconsistent.
The purpose of Market Trend Machine Learning Signals is to automate this workflow.
Instead of requiring traders to manually draw zones and calculate trade parameters, the indicator continuously monitors live market behavior and performs these tasks automatically.
Its objective is to help traders:
Identify high-quality trend continuation opportunities.
Detect strong market reversals from significant price zones.
Reduce emotional decision-making.
Improve consistency in trade planning.
Save chart analysis time.
Present structured trading opportunities with predefined risk management.
---
How the Indicator Works
The indicator continuously scans every incoming candle and evaluates multiple conditions before generating a signal.
Rather than reacting to every market movement, it waits for strong confirmation that price is interacting with an important technical area.
Its internal logic evaluates factors such as:
Market trend direction
Swing structure
Dynamic support zones
Dynamic resistance zones
Price rejection
Momentum
Trend continuation probability
Bullish/Bearish strength
Market confidence
Only when multiple conditions align together does the indicator generate a trading setup.
This filtering process helps reduce unnecessary signals during sideways market conditions.
---
Dynamic Support & Resistance Detection
Unlike fixed horizontal levels, the support and resistance zones generated by this indicator continuously adapt to changing market conditions.
As new price data becomes available:
Support zones shift when stronger buying areas are detected.
Resistance zones move as selling pressure changes.
Old zones become inactive.
New zones replace them automatically.
This allows the indicator to remain synchronized with live market structure on every timeframe.
---
Long Trade Detection
When price approaches a strong support zone, the indicator evaluates whether buyers are beginning to regain control.
Before generating a BUY setup it looks for evidence such as:
Strong bullish rejection.
Failure to break below support.
Increasing bullish momentum.
Trend confirmation.
Market strength improvement.
Bullish confidence exceeding bearish pressure.
Once enough confirmation exists, the indicator automatically plots:
BUY signal
Entry level
Stop Loss
TP1
TP2
TP3
Final Target
The complete setup appears instantly on the chart with visual trade boxes that clearly display both the potential reward and risk.
---
Short Trade Detection
The same process is applied in reverse.
When price reaches an important resistance zone, the indicator evaluates whether sellers are taking control.
The system checks for:
Bearish rejection
Failed breakout attempts
Selling momentum
Trend confirmation
Increasing bearish confidence
Market weakness
Once confirmed, a complete SELL setup is created with:
Sell Entry
Stop Loss
TP1
TP2
TP3
Final Target
This allows traders to quickly visualize the entire trading plan without manually drawing levels.
---
Automatic Trade Management
One of the most practical features of the indicator is its automatic trade visualization.
Each setup includes professionally organized trading levels.
These include:
Entry
Stop Loss
TP1
TP2
TP3
Final Target
The trade boxes visually separate:
Risk Area
Profit Area
making it easier to understand the complete trade before entering.
As price progresses through the targets, traders can easily monitor the development of the setup.
---
Smart Dashboard
The indicator also includes a fully customizable dashboard positioned in the chart corner.
The dashboard provides a quick summary of current market conditions without requiring additional indicators.
It displays information including:
Current Market Trend
Bullish Confidence %
Bearish Confidence %
Market Strength
Signal Quality
Volatility Status
Active Timeframe
Current Support Zone
Current Resistance Zone
Active Trade Direction
Trade Status
Entry Price
Stop Loss
TP1
TP2
TP3
Final Target
Risk : Reward Ratio
The dashboard can be resized and repositioned through the settings, allowing traders to customize it according to their workspace.
---
Multi-Timeframe Compatibility
The indicator is designed to work across multiple markets and timeframes.
It automatically adapts its calculations based on the active chart and can be used for:
Scalping
Intraday Trading
Swing Trading
Position Trading
Compatible with:
Forex
Cryptocurrency
Stocks
Indices
Commodities
Futures
---
Professional Visualization
To improve chart readability, the indicator uses clean institutional-style graphics.
Visual elements include:
Dynamic Support Zones
Dynamic Resistance Zones
Buy Labels
Sell Labels
Entry Box
Stop Loss Zone
Multiple Target Levels
Profit Projection Box
Risk Box
Dashboard Summary
These visual tools help traders understand market structure at a glance without cluttering the chart.
---
Intended Purpose
This indicator was developed to provide traders with a complete decision-support system rather than just another buy/sell signal generator.
Its goal is to combine trend analysis, market structure, confidence evaluation, support and resistance detection, and risk management into a single comprehensive trading tool.
By presenting organized trade setups with predefined entry, stop-loss, and target levels, it helps traders maintain consistency and discipline while reducing the need for manual calculations.
It is designed as an analytical assistant to support informed decision-making, while final trade execution remains the responsibility of the user.
---
Verification
Market Trend Machine Learning Signals has been independently designed and developed by Forex_Market_Insights.
The Pine Script implementation, chart visualization, dashboard system, trade management logic, market structure analysis, support/resistance detection methodology, and overall workflow have been written specifically for this indicator.
This publication represents an original implementation created by the developer and is intended to provide traders with a unique analytical tool for identifying high-probability trading opportunities.
---
Clarification
This indicator is an original work authored by Forex_Market_Insights.
The complete Pine Script codebase, visual interface, dashboard design, trade setup presentation, signal generation logic, and supporting algorithms have been independently developed for this project. The implementation was written from the ground up to achieve the intended analytical behavior and user experience.
While the indicator applies widely recognized concepts from technical analysis—such as trend evaluation, support and resistance, momentum, and risk management—the specific combination of these concepts, the calculation workflow, visualization style, and software implementation are original to this publication.
This indicator is not presented as a guaranteed prediction system or financial advisory service. It is an analytical tool designed to assist traders in evaluating market conditions and organizing trade plans more efficiently. Trading financial markets involves risk, and users should always apply appropriate risk management and independent judgment before making trading decisions.
Indicator

Quantum Trend Matrix Pro AIQuantum Trend Matrix Pro AI
Quantum Trend Matrix Pro AI is a professional trend intelligence indicator developed by Forex_Market_Insights to help traders identify, measure, and understand market trends with greater confidence. Instead of relying on a single moving average or a basic crossover, this indicator combines multiple analytical engines into one complete trading framework that evaluates trend direction, trend quality, momentum strength, volatility conditions, market compression, breakout potential, and higher-timeframe confirmation.
The objective of this indicator is not simply to tell traders whether the market is bullish or bearish, but to provide a complete picture of the current market environment. It continuously analyzes price behavior and converts complex market information into an easy-to-read dashboard, intelligent scoring system, adaptive signals, and visual trend structure.
Whether you trade Forex, Gold, Indices, Crypto, Commodities, or Stocks, Quantum Trend Matrix Pro AI is designed to simplify market analysis while providing institutional-style trend confirmation and professional-grade visualization.
Why This Indicator Was Created
Many traditional EMA indicators only generate crossover signals without considering the quality of the trend. These signals often produce false entries during sideways markets because they ignore trend strength, momentum, volatility, and higher-timeframe confirmation.
Quantum Trend Matrix Pro AI was developed to solve these problems by introducing a multi-layer analytical framework.
Instead of asking only:
"Did the EMAs cross?"
this indicator asks much more important questions:
Is the trend actually strong?
Is momentum increasing or weakening?
Is the market preparing for a breakout?
Is volatility expanding or contracting?
Are higher timeframes supporting the trend?
Is the current trend mature or just beginning?
Is the market trending or simply ranging?
Only after evaluating these conditions does the indicator calculate the overall market bias and generate intelligent signals.
The goal is to reduce unnecessary trades while improving decision quality.
Core Philosophy
Every trend passes through different stages:
Trend Formation
Trend Confirmation
Trend Expansion
Trend Continuation
Trend Exhaustion
Trend Reversal
Most indicators only recognize one or two of these stages.
Quantum Trend Matrix Pro AI continuously monitors every stage and provides real-time information about where the market currently stands within the complete trend cycle.
Triple EMA Quantum Ribbon
The foundation of the indicator is a three-layer EMA system consisting of:
• Fast EMA
• Medium EMA
• Slow EMA
These moving averages work together to build a dynamic trend ribbon.
Instead of displaying three simple lines, the ribbon visually represents:
Trend direction
Trend strength
Trend alignment
Market structure
Ribbon expansion
Ribbon compression
When all EMAs align in the same direction, the market is considered healthy and trending.
When EMAs begin compressing together, the indicator recognizes weakening momentum and possible consolidation.
Dynamic Ribbon Coloring
The ribbon automatically changes appearance depending on market conditions.
Bullish trends display a green gradient.
Bearish trends display a red gradient.
Neutral markets gradually lose color intensity.
This allows traders to identify trend strength visually without studying numerical values.
Smart Trend Score (0–100)
One of the most powerful features is the Smart Trend Score.
Instead of simply showing bullish or bearish conditions, the indicator calculates a complete trend confidence score between 0 and 100.
The score is generated by combining multiple independent analytical models including:
EMA Alignment
EMA Slopes
Trend Persistence
Price Position
Momentum
Ribbon Spread
Market Stability
Volatility Context
The final score represents the overall quality of the current trend.
Higher scores indicate stronger bullish conditions.
Lower scores indicate stronger bearish conditions.
Values near the center suggest uncertainty or ranging markets.
This allows traders to judge trend quality instead of reacting only to moving average crosses.
Trend Grade Classification
The numerical score is converted into an easy-to-understand Trend Grade.
Possible grades include:
Very Weak
Weak
Moderate
Strong
Very Strong
Extreme
This classification helps traders quickly understand the current market condition without interpreting raw numbers.
Momentum Intelligence Engine
Momentum is one of the biggest drivers of market movement.
Quantum Trend Matrix Pro AI continuously measures whether momentum is:
Expanding
Contracting
Accelerating
Decelerating
Shifting
Becoming Exhausted
Rather than relying on traditional oscillators alone, momentum is evaluated alongside trend alignment and volatility.
This provides much more reliable confirmation.
EMA Spread Analytics
The indicator measures the distance between all three EMAs.
This spread reflects the health of the current trend.
A widening ribbon usually indicates:
Increasing trend strength
Healthy momentum
Strong directional movement
A narrowing ribbon often indicates:
Weakening trend
Consolidation
Possible reversal
Market compression
This information is displayed both visually and inside the dashboard.
Squeeze & Compression Engine
Markets alternate between periods of expansion and contraction.
The Squeeze Engine detects when volatility contracts and the ribbon becomes compressed.
During these periods the dashboard identifies:
Active Compression
Compression Start
Compression End
Breakout Ready
Expansion Phase
This helps traders prepare before major price movements occur rather than reacting after the breakout.
Multi-Timeframe Trend Matrix
One of the most valuable features is the Multi-Timeframe Matrix.
The indicator simultaneously evaluates multiple higher timeframes.
By default it analyzes:
15 Minutes
1 Hour
4 Hour
Daily
For every timeframe it displays:
Trend Direction
EMA Spread
Trend Grade
This enables traders to determine whether the current chart is aligned with the broader market.
Trading in the direction of higher timeframes generally increases the probability of successful trades.
Intelligent Signal Engine
Instead of generating basic crossover alerts, Quantum Trend Matrix Pro AI produces adaptive signals based on several confirmation layers.
Signal categories include:
Strong Buy
Buy
Weak Buy
Strong Sell
Sell
Weak Sell
Trend Continuation
Trend Reversal
Every signal is filtered using multiple analytical conditions before appearing on the chart.
This significantly reduces low-quality signals during sideways markets.
Premium Dashboard
The integrated dashboard summarizes all important market information in one location.
It displays:
Current Trend
Trend Score
Market Zone
Squeeze Status
Trend Grade
Trend Quality
Multi-Timeframe Analysis
Bias Direction
EMA Spread
Momentum State
Number of Trend Bars
The dashboard is designed to eliminate the need for multiple separate indicators.
Trend Background
The chart background automatically changes according to the dominant market condition.
This provides instant visual awareness without distracting from price action.
Alert System
The indicator includes multiple alert conditions for automated trading workflows.
Alerts include:
EMA Cross Up
EMA Cross Down
Trend Changes
Momentum Shift
Trend Score Threshold
Compression Start
Expansion Phase
Buy Signals
Sell Signals
Trend Reversals
Strong Trend Detection
These alerts allow traders to monitor opportunities without continuously watching the charts.
Non-Repainting Design
Quantum Trend Matrix Pro AI has been designed with non-repainting principles.
Signals are generated using confirmed candle data, and multi-timeframe calculations use confirmed higher-timeframe values. This helps ensure that historical signals remain consistent after candles close.
Who Can Use This Indicator?
Quantum Trend Matrix Pro AI is suitable for:
Forex Traders
Gold Traders
Crypto Traders
Stock Traders
Index Traders
Swing Traders
Intraday Traders
Day Traders
Position Traders
Primary Objectives
This indicator was developed to help traders:
Identify high-quality trends.
Measure trend strength objectively.
Filter weak EMA crossover signals.
Detect compression before breakouts.
Confirm trends across multiple timeframes.
Improve trade confidence through quantitative scoring.
Reduce emotional decision-making.
Simplify complex market analysis into one integrated tool.
Important Disclaimer
This indicator is designed exclusively for educational, analytical, and research purposes. It does not constitute financial advice, investment recommendations, or guaranteed trading performance. Financial markets involve substantial risk, and all trading decisions remain the sole responsibility of the user. Always perform independent analysis and apply sound risk management before entering any trade.
Verification & Clarification
This indicator is an original research and software development project created exclusively by Forex_Market_Insights. Every algorithm, calculation, mathematical model, trend engine, momentum engine, scoring methodology, visualization technique, dashboard component, signal generation process, alert framework, user interface, configurable setting, optimization method, and overall analytical workflow has been independently designed, programmed, tested, and refined specifically for this project.
While the indicator incorporates widely recognized technical analysis concepts such as Exponential Moving Averages (EMA), trend alignment, momentum evaluation, volatility analysis, multi-timeframe confirmation, crossover detection, statistical weighting, and trend-strength assessment, the complete implementation represents an independent and original development by Forex_Market_Insights. The architecture, calculation sequence, feature integration, dashboard design, signal logic, scoring framework, filtering methods, and visual presentation are unique to this indicator.
No proprietary source code, copyrighted implementation, protected trading system, premium indicator, private algorithm, confidential software, or restricted intellectual property belonging to any third party has been copied, reverse-engineered, redistributed, or incorporated into the development of this project. All calculations have been independently programmed in Pine Script using publicly known market principles combined with original analytical techniques and custom software engineering.
This publication has been created solely for educational, analytical, and research purposes. It should not be interpreted as financial advice, investment guidance, portfolio management, or a guarantee of profitable trading results. Trading and investing involve substantial financial risk, and users are responsible for conducting their own market analysis and applying appropriate risk management before making any trading decisions.
By publishing this script, Forex_Market_Insights confirms that Quantum Trend Matrix Pro AI represents an independently developed software project produced through original research, independent programming, extensive testing, continuous optimization, and ongoing refinement. To the best of the author's knowledge, this publication complies with PulseWire's Script Publishing Rules and House Rules regarding originality, independent development, and responsible script publication. Indicator

Session Intelligence Matrix ProSession Intelligence Matrix Pro
Session Intelligence Matrix Pro is a professional institutional-style session analytics indicator designed to reveal what each major Forex trading session historically contributes to the market. Instead of simply highlighting trading sessions with colored boxes, this indicator performs statistical analysis on hundreds of previous sessions and displays the probability, behavior, volatility, and smart-money characteristics of every session in one professional dashboard.
The primary objective of this indicator is to help traders understand which session is statistically strongest, which session usually creates the daily high or low, where volatility is most likely to appear, and when institutional activity is historically at its highest.
Whether you trade Forex, Gold, Indices, Crypto, or CFDs, Session Intelligence Matrix Pro allows you to make decisions based on historical session behavior rather than assumptions.
Why This Indicator Was Created
Most traders know the names of the major trading sessions:
Asia
London
New York AM
New York Lunch
New York PM
However, very few traders actually know:
Which session usually creates the largest move?
Which session most often sets the High of the Day?
Which session usually creates the Low of the Day?
Which session generates the largest Fair Value Gaps?
Which session contributes the highest percentage of daily volume?
Which session normally produces continuation after the previous session?
These statistics are extremely valuable for intraday traders, yet PulseWire does not provide them.
Session Intelligence Matrix Pro was developed to solve this problem by collecting historical session statistics and presenting them in an easy-to-read institutional dashboard.
How the Indicator Works
The indicator automatically separates each trading day into five major sessions:
Asia Session
London Session
New York AM
New York Lunch
New York PM
For every completed session, it records important market information including:
Price range
ATR percentage
Candle size
Volume contribution
Bullish or bearish close
Highest price of the day
Lowest price of the day
Fair Value Gap creation
Session percentile
Over time, these records build a statistical database that is used to calculate historical averages and probabilities.
The dashboard is continuously updated as new market data becomes available.
Dashboard Metrics Explained
Average Range
Shows the average number of price points traveled during each session.
This helps identify which sessions normally produce the biggest market movement.
Large average range generally means:
Better trading opportunities
Higher volatility
Larger profit potential
Average ATR %
Displays how large each session is relative to the Daily ATR.
Instead of showing raw price movement, this metric compares every session against the market's normal daily volatility.
Higher values indicate stronger expansion.
Volume Share %
Shows how much of the entire day's trading volume is generated during each session.
This quickly reveals where institutional participation is strongest.
Average Candle Size
Calculates the average size of candles printed during every session.
Larger candles usually indicate:
Strong momentum
Institutional participation
Aggressive buying or selling
Highest Range
Displays the largest range ever recorded for that session within the available historical dataset.
Useful for understanding maximum expansion potential.
Lowest Range
Displays the smallest recorded range for every session.
This helps traders recognize when markets are historically quiet.
Bullish Session %
Shows how often each session closes bullish.
Example:
London Bullish Session = 54%
This means London has historically closed bullish approximately 54% of the recorded sessions.
High Of Day %
One of the most useful statistics.
Shows how frequently a session creates the day's highest price.
For example:
NY PM = 72%
This means that historically, the New York PM session has produced the High of the Day in 72% of the analyzed periods.
Low Of Day %
Shows how often each session creates the day's lowest price.
This helps traders anticipate where reversals or trend completions are most likely to occur.
Average FVG Count
Counts the average number of Fair Value Gaps created during every session.
Higher values indicate more institutional imbalance and stronger Smart Money activity.
Live Percentile
This feature compares the current session against historical data.
For example:
Live Percentile = 75%
This means the current session is already larger than 75% of previous sessions.
This allows traders to instantly understand whether today's market is:
Normal
Weak
Exceptionally volatile
Session Visualization
The indicator also draws colored session boxes directly on the chart.
Each box clearly highlights:
Session start
Session end
Session range
Session identification
This allows traders to quickly recognize where important moves occurred during the trading day.
Designed For
Session Intelligence Matrix Pro can be used on:
Forex
Gold (XAU/USD)
Silver
Crypto
Indices
CFDs
Futures
It is especially valuable for:
Intraday Traders
Scalpers
Smart Money Traders
ICT Traders
Session-Based Traders
Price Action Traders
Institutional Strategy Traders
Key Benefits
Automatically analyzes every major trading session.
Tracks historical session performance.
Displays institutional-quality statistics in a professional dashboard.
Identifies where volatility is historically concentrated.
Shows which session most frequently creates the High and Low of the Day.
Measures average volatility and ATR expansion.
Calculates volume contribution for each session.
Tracks Fair Value Gap frequency.
Displays live session percentile against historical data.
Helps traders trade with statistical confidence instead of emotion.
Disclaimer
This indicator is designed as a market analysis and statistical decision-support tool. Historical probabilities do not guarantee future market performance. Traders should always combine session statistics with proper market structure analysis, confirmation, and sound risk management before entering any trade.
Verification
Verified Original Script
Developed, programmed, and independently published by Forex_Market_Insights
This script represents original work created specifically for this PulseWire publication and is not intended to copy or reproduce another author's proprietary implementation.
Clarification
Forex_Market_Insights is the original creator and developer of the concepts, analytical methodology, and overall trading framework reflected in this indicator.
This publication has been created with full acknowledgment of the original research and development behind the project. The verification reference to Forex_Market_Insights is included solely to recognize the origin of the analytical concepts and development process associated with this work.
The inclusion of Forex_Market_Insights in the verification section is intended as proper attribution and acknowledgment of the original creator's contribution to the methodology presented in this indicator. Indicator

Live Market Probability Matrix ProLive Market Probability Matrix Pro
Live Market Probability Matrix Pro is an advanced Pine Script® v6 indicator developed to provide a real-time probability-based view of market strength, momentum, trend direction, and overall buying versus selling pressure in a single visual dashboard.
Unlike traditional indicators that rely on only one calculation such as RSI, MACD, or Moving Averages, this indicator combines multiple market components into a unified probability engine that continuously evaluates live market conditions and displays them in an easy-to-read visual format.
The purpose of this indicator is to simplify market analysis by converting complex market data into a dynamic probability system that helps traders understand which side of the market currently has stronger control, how confident that control is, and whether the existing trend has enough strength to continue or weaken.
This indicator was designed for traders who prefer visual market analysis instead of interpreting multiple separate indicators.
Why This Indicator Was Created?
Most trading indicators only measure one aspect of the market.
For example:
• RSI measures momentum.
• ATR measures volatility.
• Volume measures participation.
• Moving averages measure trend.
• Structure analysis measures swing direction.
However, professional traders rarely make decisions based on only one indicator.
The market is driven by multiple factors simultaneously.
This indicator was created to combine several important market components into one intelligent probability model that continuously updates as new candles are formed.
Instead of forcing traders to switch between several indicators, all important information is displayed in one organized interface.
Live Market Probability Engine
The core of this indicator is its probability engine.
Every incoming candle updates multiple internal calculations including trend strength, momentum, volatility, structure, candle behavior, relative volume, and directional pressure.
These values are blended together to estimate which side currently has greater probability of controlling price.
Rather than giving random Buy or Sell labels, the indicator continuously measures changing market conditions.
As market conditions improve for buyers, bullish probability increases.
As selling pressure strengthens, bearish probability increases.
The calculations update automatically with every new candle.
Dynamic Bullish & Bearish Probability Circles
One of the most distinctive features of this indicator is the pair of dynamic circular probability diagrams displayed near the end of the chart.
These circles visually represent:
• Bullish Strength
• Bearish Strength
Their size changes dynamically according to the calculated probabilities.
When bullish pressure dominates, the bullish circle becomes larger while the bearish circle contracts.
When sellers gain control, the bearish circle expands while the bullish circle becomes smaller.
Above each circle, the current live probability percentage is displayed, allowing traders to quickly identify the dominant market side without reading numerical data.
This creates an intuitive visual representation of market sentiment.
Dynamic Buy & Sell Strength Bars
Below the circular probability diagrams, the indicator displays two vertical strength bars.
These bars represent:
• Buy Strength
• Sell Strength
The height of each bar changes continuously based on the current market probability.
Higher bars indicate stronger participation from that side of the market.
Lower bars indicate weakening pressure.
Because the bars update in real time, traders can instantly see whether buying or selling momentum is increasing or fading.
Live Probability Dashboard
A fully integrated dashboard is displayed in the corner of the chart.
The dashboard provides continuously updated information including:
• Overall Probability
• Bull Strength
• Bear Strength
• Trend Score
• Momentum Score
• Volatility Score
• Volume Score
• Structure Score
• Candle Score
• Moving Average Score
• Market State
• Current Trend
• Current Bias
• Overall Signal
• Buy Probability
• Sell Probability
• ATR
• Volume Status
Every value is recalculated automatically as new market data becomes available.
This gives traders a complete snapshot of current market conditions without needing multiple separate indicators.
Trend Analysis
The indicator continuously analyzes market direction.
Instead of only identifying whether price is moving higher or lower, it also evaluates the quality of the trend.
Factors such as higher highs, lower lows, directional consistency, and price progression contribute to the trend score.
A stronger trend produces higher confidence within the probability engine.
Weak or sideways markets naturally reduce overall confidence.
Momentum Evaluation
Momentum measures the speed and strength of price movement.
Rapid directional movement increases momentum scores.
Slowing momentum gradually reduces bullish or bearish confidence.
This helps traders distinguish between healthy trends and exhausted moves.
Volatility Measurement
Volatility is monitored continuously.
Periods of expanding volatility often indicate increasing participation and stronger price movement.
Low volatility environments generally produce lower conviction because price lacks directional energy.
The volatility score contributes to the overall probability calculation.
Volume Analysis
The indicator also evaluates relative trading volume.
Higher participation generally strengthens confidence in directional movement.
Lower participation reduces confidence because fewer market participants are supporting the move.
The volume score helps improve the overall quality of the probability model.
Market Structure Analysis
Price structure remains one of the most important components of technical analysis.
The indicator evaluates recent swing highs, swing lows, trend progression, and structural consistency.
Healthy bullish structure increases bullish confidence.
Healthy bearish structure increases bearish confidence.
Structural weakness reduces probability.
Candle Strength Analysis
Individual candle characteristics are also evaluated.
The indicator analyzes factors such as:
• Candle body size
• Wick proportion
• Closing strength
• Directional conviction
Stronger candles contribute more positively to probability calculations than weak or indecisive candles.
Overall Market State
After combining all internal calculations, the indicator determines the current market condition.
Possible conditions may include:
Trending
Ranging
Neutral
Transition
These classifications help traders understand the broader context before making trading decisions.
Overall Signal
The Overall Signal summarizes the combined output of all analytical components.
Depending on market conditions, it may indicate:
Bullish
Bearish
Neutral
Since this result is generated using multiple independent calculations rather than a single indicator, it provides a broader view of current market sentiment.
Works on All Markets
The indicator is designed to work across all PulseWire-supported markets, including:
• Forex
• Gold
• Silver
• Cryptocurrency
• Indices
• Commodities
• Futures
• CFDs
Because the calculations are based on price behavior and market activity, the indicator can adapt to different asset classes.
Compatible with All Timeframes
The indicator functions across all PulseWire timeframes.
Examples include:
• 1 Minute
• 3 Minutes
• 5 Minutes
• 15 Minutes
• 30 Minutes
• 1 Hour
• 4 Hour
• Daily
• Weekly
Lower timeframes provide faster updates for intraday trading, while higher timeframes offer a broader view of market conditions.
Typical Workflow
A common way to use this indicator is:
Observe the Bullish and Bearish probability circles.
Compare Buy and Sell strength bars.
Review the dashboard scores.
Identify the current market state.
Confirm whether multiple components align in the same direction.
Combine the information with your own trading strategy, market structure analysis, and risk management before making any trading decisions.
Key Features
✔ Live probability engine
✔ Dynamic Bullish probability visualization
✔ Dynamic Bearish probability visualization
✔ Real-time percentage calculations
✔ Adaptive probability circles
✔ Dynamic Buy & Sell strength bars
✔ Live market dashboard
✔ Trend analysis
✔ Momentum analysis
✔ Volatility analysis
✔ Relative volume evaluation
✔ Market structure analysis
✔ Candle strength scoring
✔ Market state classification
✔ Overall probability calculation
✔ Supports all PulseWire markets
✔ Compatible with all timeframes
✔ Lightweight visual interface
Important Note
This indicator is designed as a probability-based market analysis and visualization tool. It does not predict future price movements, guarantee profitable trades, or provide financial advice. The displayed probabilities represent analytical estimates derived from multiple technical components and are intended to help traders better understand current market conditions. For best results, this indicator should be used alongside your own technical analysis, trading plan, and disciplined risk management.
Originality & Author Verification
Live Market Probability Matrix Pro is an original Pine Script® v6 indicator independently designed, developed, and authored by Forex_Market_Insights. The concept, probability model, dashboard design, visualization system, scoring methodology, and implementation are based on the author's own research and development. No proprietary or copyrighted code has been copied or reused from third-party scripts. This publication is intended to comply with PulseWire House Rules by accurately describing the indicator's functionality and acknowledging its original authorship. Indicator

Market Session Matrix ProForex Session Matrix Pro with Volume
Overview
Forex Session Matrix Pro with Volume is an original Pine Script® v6 indicator designed to provide a structured view of the four major Forex trading sessions directly on the chart. Instead of displaying only session timings, this indicator combines session visualization, dynamic session range tracking, session high/low identification, and directional volume analysis into a single workspace.
The primary objective of this indicator is to help traders understand when institutional liquidity enters the market, how price behaves during each session, where important highs and lows are created, and which side (buyers or sellers) dominated the session.
This implementation was independently designed and developed by Forex_Market_Insights and is intended to improve market structure analysis without relying on external libraries or copied logic.
Why This Indicator Was Created
Most session indicators simply draw colored rectangles on the chart. While they identify session timing, they provide very little information about what actually happened during that trading session.
This indicator extends traditional session visualization by combining several analytical components:
Individual session boxes
Automatic session labels
Session High and Low tracking
Independent color customization
Fully editable session timings
Buyer vs Seller Volume histogram beneath every session
Overlap support
Clean visualization suitable for all markets and all timeframes
The goal is not only to show when a session occurred, but also how that session behaved.
Major Forex Sessions
The indicator supports the four primary Forex trading sessions:
• Sydney Session
• Tokyo Session
• London Session
• New York Session
Each session is displayed using its own independent colored box, making it easy to distinguish institutional trading periods throughout the trading day.
Every session's start time and end time are fully customizable from the indicator settings.
Session Boxes
As each trading session begins, the indicator automatically creates a colored session box.
The box expands dynamically while the session is active.
During the session it continuously updates:
Highest price reached
Lowest price reached
Session boundaries
Once the session ends, the completed box remains visible for historical reference.
This allows traders to quickly compare volatility between different sessions.
Automatic Session Labels
Every session box automatically displays its name at the top.
Examples include:
Sydney
Tokyo
London
New York
These labels remain attached to the corresponding session, making historical analysis much easier without needing to remember trading hours.
Session High and Low Tracking
Every session continuously records:
Session High
Session Low
These price levels are marked directly on the session box.
Many institutional traders monitor previous session highs and lows because they often become:
Liquidity pools
Breakout levels
Reversal zones
Stop hunt locations
Trend continuation points
Having these levels displayed automatically eliminates the need for manual marking.
Buyer vs Seller Volume Analysis
One of the unique features of this indicator is the session volume visualization shown beneath the price chart.
Instead of displaying standard exchange volume, the indicator separates session activity into bullish and bearish participation.
Green bars represent buying pressure.
Red bars represent selling pressure.
This allows traders to quickly evaluate which side controlled the session.
For example:
A session with mostly green volume bars suggests buyers dominated trading activity.
A session with mostly red volume bars indicates sellers controlled the market.
Although Forex is a decentralized market and PulseWire volume represents broker feed activity rather than centralized exchange volume, relative volume still provides valuable information regarding market participation and directional strength.
Why Volume Is Displayed Below Each Session
Volume alone does not indicate direction.
Price alone does not indicate participation.
By combining both, traders can better understand the quality of a market move.
Examples:
Strong bullish movement with strong buying volume often indicates healthy participation.
Strong bullish movement with weak volume may indicate reduced conviction.
Strong bearish movement supported by increasing seller volume often suggests stronger downside momentum.
This additional layer of confirmation helps traders judge whether a move is supported by market activity.
Customizable Session Times
Different brokers use different server times.
To solve this issue, every session timing can be modified from the settings.
Users may customize:
Sydney Start
Sydney End
Tokyo Start
Tokyo End
London Start
London End
New York Start
New York End
This makes the indicator compatible with virtually any PulseWire chart regardless of broker timezone.
Customizable Colors
Every session uses its own independent color.
Users can customize:
Session box color
Border color
Transparency
Text color
This makes the indicator suitable for both light and dark PulseWire themes.
Session Overlap Analysis
The indicator naturally displays overlapping trading sessions when customized timings intersect.
This is particularly useful because market volatility frequently increases during major session overlaps.
Examples include:
London–New York Overlap
Sydney–Tokyo Overlap
These periods often experience increased liquidity and stronger market movements.
Works on Any Market
Although designed primarily for Forex, the indicator also works effectively on:
Gold
Silver
Indices
CFDs
Cryptocurrency
Commodities
Futures
Any PulseWire symbol
Since sessions are time-based rather than symbol-specific, the logic remains applicable across multiple markets.
Works on Any Timeframe
The indicator automatically adapts to every PulseWire timeframe.
Examples include:
1 Minute
3 Minutes
5 Minutes
15 Minutes
30 Minutes
1 Hour
4 Hour
Daily
Lower timeframes provide more detailed session development, while higher timeframes offer a broader institutional perspective.
Typical Trading Workflow
A common way to use this indicator is:
Observe which session is currently active.
Monitor how price behaves inside that session.
Watch where the session creates its High and Low.
Compare buyer and seller volume beneath the session.
Evaluate whether price is accepting or rejecting important session levels.
Use this information alongside your existing trading strategy for additional market context.
Key Features
✔ Automatic Forex session detection
✔ Independent session boxes
✔ Automatic session labels
✔ Session High tracking
✔ Session Low tracking
✔ Buyer vs Seller volume visualization
✔ Fully customizable session timings
✔ Custom colors
✔ Historical session visualization
✔ Supports all PulseWire markets
✔ Compatible with all timeframes
✔ Clean and lightweight chart display
Important Note
This indicator is intended as a market structure and session analysis tool. It does not generate buy or sell signals, predict future price direction, or provide financial advice. Instead, it organizes session-based price action and relative buying/selling activity into a clear visual framework that traders can combine with their own analysis, risk management, and trading methodology. This description accurately reflects the indicator's functionality and aligns with PulseWire's expectation that script descriptions explain what the script does, how it works, and how it should be used.
Originality & Authorship
This indicator was independently designed and developed by Forex_Market_Insights.
The overall concept, implementation, visualization, session management logic, volume presentation, configurable settings, user interface, and workflow were created specifically for this project. The script represents an original implementation written in Pine Script® v6 and was developed to provide traders with a practical session-based market analysis tool.
This publication is not a copy, clone, or re-upload of another PulseWire script. It was created from the ground up using the author's own design approach and programming implementation. Any standard market concepts referenced in this indicator—such as Forex trading sessions, session highs/lows, and volume analysis—are widely recognized trading concepts, while the software implementation, visualization, and integration presented here are original to this script.
Author: Forex_Market_Insights
Thank you for using this indicator. I hope it helps make session analysis clearer, more organized, and easier to interpret within your own trading workflow. Indicator

RSI Market Structure Zones ProPlease read how to use it. red before use.
RSI Momentum Zones Pro
Professional RSI Confirmation Indicator for Trend, Reversal & Scalping
Author: Forex_Market_Insights
Overview
RSI Momentum Zones Pro is a professional momentum analysis indicator developed to simplify RSI interpretation by dividing market momentum into four institutional trading zones instead of relying solely on the traditional overbought and oversold approach.
Rather than treating RSI as a simple oscillator, this indicator classifies momentum into Over Bought, Resistance, Support, and Over Sold regions to help traders understand where price is statistically more likely to continue, slow down, reject, or reverse after receiving price action confirmation.
The indicator is designed for discretionary traders who combine momentum analysis with candlestick confirmation instead of using RSI crossovers alone.
It is suitable for scalping, intraday trading, swing trading and multi-timeframe analysis.
Core Concept
Traditional RSI indicators only highlight the 70 and 30 levels, which often generate premature or unreliable signals during strong market trends.
This indicator expands RSI interpretation by introducing four structured momentum zones:
Over Bought (80)
Resistance (68)
Support (35)
Over Sold (20)
These additional zones allow traders to evaluate market strength in greater detail before making trading decisions.
Instead of assuming every overbought or oversold condition will immediately reverse, the indicator encourages confirmation through actual price behavior.
Indicator Structure
The RSI panel contains four clearly defined institutional-style levels:
OVER BOUGHT (80)
Represents an extreme bullish momentum zone.
Price entering this area suggests that buying pressure has become unusually strong.
This does not automatically indicate a sell signal.
Instead, traders should wait for bearish confirmation before considering a short position.
RESISTANCE (68)
Represents an upper momentum resistance area.
Momentum is considered strong, but not yet at an extreme.
This zone is useful for identifying potential exhaustion during bullish trends while still allowing trend continuation if buying pressure remains strong.
SUPPORT (35)
Represents a lower momentum support area.
Momentum has weakened but has not yet reached extreme bearish conditions.
This area frequently serves as an early accumulation zone where buyers may begin regaining control.
OVER SOLD (20)
Represents an extreme bearish momentum condition.
Selling pressure has reached unusually high levels.
Rather than immediately buying, traders should wait for bullish confirmation from price before entering a long position.
Dynamic RSI Visualization
The RSI line changes color according to momentum direction.
Green RSI Line
Indicates that RSI is rising and bullish momentum is strengthening.
Red RSI Line
Indicates that RSI is falling and bearish momentum is increasing.
This dynamic visualization allows traders to recognize momentum shifts without relying solely on numerical RSI values.
Trading Algorithm
The indicator does not generate trading signals simply because RSI reaches a certain level.
Instead, it follows a confirmation-based workflow.
Bullish Setup
A potential Buy opportunity is considered when:
RSI reaches the Support zone (35) or the Over Sold zone (20).
A strong bullish candle closes after momentum stabilizes.
Price confirms that buyers are beginning to regain control.
This confirmation-based approach helps reduce entries during ongoing bearish momentum.
Bearish Setup
A potential Sell opportunity is considered when:
RSI reaches the Resistance zone (68) or the Over Bought zone (80).
A strong bearish candle closes after bullish momentum weakens.
Price confirms increasing selling pressure.
This helps filter out false reversals during strong uptrends.
Momentum Confirmation Philosophy
One of the primary design goals of this indicator is to avoid trading solely based on RSI values.
Instead of assuming:
RSI reached 20 → Buy
or
RSI reached 80 → Sell
the indicator expects traders to combine RSI zones with actual market structure and candlestick confirmation.
This confirmation-first methodology is intended to reduce low-probability entries.
Hidden Momentum Concept
Momentum reversals do not always occur simultaneously on price and RSI.
Occasionally:
Price may create a new swing low while RSI does not.
RSI may create a new swing low while price remains relatively stable.
Likewise, the same behavior can occur near market highs.
These situations often indicate weakening momentum and can provide early evidence that trend strength is fading.
This indicator is designed to help traders visually identify these momentum shifts while combining them with price action confirmation before executing trades.
Multi-Timeframe Usage
Although the indicator performs well on lower timeframes such as the 1-minute chart, its underlying momentum framework is applicable across all PulseWire-supported timeframes.
Many traders use:
1 Minute for scalping
5 Minute for intraday trading
15 Minute for short-term trend trading
Higher timeframes for broader market context
Using higher timeframe trend direction together with lower timeframe RSI confirmations may improve trade selection.
Practical Trading Workflow
A typical workflow may include:
Observe which RSI zone the market is approaching.
Wait for price action confirmation.
Confirm momentum direction using the RSI line color.
Enter only after the confirmation candle closes.
Manage risk using appropriate stop-loss placement and position sizing.
The indicator is intended to assist discretionary decision-making rather than automate entries.
Best Market Conditions
The indicator is particularly useful during:
Intraday trading
Scalping
Trending markets
Pullback trading
Momentum continuation setups
Reversal confirmation
Multi-timeframe analysis
Risk Notice
No technical indicator can predict future price movement with certainty.
RSI Momentum Zones Pro is designed as a decision-support tool and should be used alongside sound risk management, price action analysis, and overall market context.
It is not intended to be used as a standalone trading system, and traders should always confirm setups before entering positions.
Original Development
RSI Momentum Zones Pro has been independently designed and implemented by Forex_Market_Insights. The indicator combines structured RSI zoning, dynamic momentum visualization, and confirmation-based trading principles into a single workflow intended to improve momentum interpretation while remaining intuitive for discretionary traders. Indicator

Fair Value Gap MarkerFair Value Gap Marker
Overview
Fair Value Gap Marker is a configurable market imbalance visualization tool designed to automatically detect, evaluate, and manage Fair Value Gaps (FVGs) using a three-candle price imbalance model. While the Fair Value Gap concept is widely recognized in technical analysis, this implementation expands the basic detection model by introducing adaptive volatility filtering, quantitative strength scoring, multi-timeframe analysis, and automated zone lifecycle management.
The objective of the indicator is not to display every possible imbalance, but to help traders focus on higher-quality Fair Value Gaps by filtering insignificant gaps and providing additional contextual information about each detected zone.
---
What is a Fair Value Gap?
A Fair Value Gap represents a temporary market inefficiency created when price moves aggressively enough that little or no trading occurs within a specific price range.
Such rapid displacement can leave an imbalance between buyers and sellers. Many traders monitor these areas because price may revisit them later before continuing its trend or establishing a reversal.
Rather than manually inspecting charts for these imbalances, Fair Value Gap Marker continuously scans completed candles and automatically identifies qualifying bullish and bearish Fair Value Gaps.
---
# Detection Algorithm
The indicator evaluates every completed three-candle sequence.
A Bullish Fair Value Gap is identified when the current candle's low remains above the high of the candle two bars earlier.
A Bearish Fair Value Gap is identified when the current candle's high remains below the low of the candle two bars earlier.
Only confirmed candle data is evaluated, ensuring that detected Fair Value Gaps remain stable once created.
---
# Adaptive Minimum Gap Filtering
Not every Fair Value Gap has equal analytical value.
Very small gaps frequently occur during normal market fluctuations and may simply represent insignificant price noise.
To reduce unnecessary chart clutter, this indicator offers two independent filtering methods.
### Percentage Filter
The minimum acceptable gap size can be defined as a percentage of the current market price.
Only Fair Value Gaps exceeding the specified percentage threshold are displayed.
This mode is useful for traders who prefer a fixed proportional filter across different assets.
---
### ATR Adaptive Filter
The second filtering method compares the gap size against the current Average True Range (ATR).
Instead of relying on a fixed gap width, every imbalance must exceed a configurable multiple of current market volatility.
Because ATR expands during volatile conditions and contracts during quieter markets, this approach automatically adapts the minimum acceptable Fair Value Gap size without requiring constant manual adjustment.
This helps maintain more consistent filtering across different symbols, sessions, and market environments.
---
# Fair Value Gap Strength Score
One of the primary enhancements introduced in this implementation is the Fair Value Gap Strength Score.
Rather than assuming all detected imbalances have equal significance, every Fair Value Gap is assigned a numerical score ranging from 0 to 100.
The score combines two independent measurements.
## 1. Gap Size Analysis
The script compares the width of the Fair Value Gap with the current ATR.
Larger displacement moves generally indicate stronger directional momentum and therefore contribute more heavily to the final score.
---
## 2. Relative Volume Analysis
The volume of the candle responsible for creating the Fair Value Gap is compared against its recent moving average.
Higher-than-average participation suggests stronger market commitment and increases the confidence score.
---
## Final Strength Score
The final Strength Score blends volatility expansion and relative participation into a single numerical value.
Higher scores generally represent Fair Value Gaps created by stronger market displacement accompanied by relatively stronger trading activity.
Users may also define a minimum acceptable Strength Score, allowing weaker Fair Value Gaps to be filtered automatically.
This provides an additional quality layer beyond simple price imbalance detection.
---
# Multi-Timeframe Fair Value Gap Detection
The indicator supports optional Higher Timeframe (HTF) analysis.
When enabled, the script independently evaluates completed candles from the selected higher timeframe using the same Fair Value Gap detection algorithm.
Detected higher-timeframe Fair Value Gaps are projected directly onto the active chart using a dedicated color scheme.
This enables traders to monitor institutional imbalance zones from larger market structures while executing analysis on lower timeframes.
The higher-timeframe feature removes the need to switch between multiple charts during analysis.
---
# Automatic Zone Management
Each detected Fair Value Gap becomes an independent price zone.
Once created, every zone is continuously monitored as new market data becomes available.
Users may choose between two operating modes.
### Persistent Mode
Fair Value Gaps remain visible regardless of future price action.
This mode is useful for historical analysis.
---
### Automatic Mitigation Mode
When enabled, the script continuously checks whether price has fully traded back into the imbalance.
Once a Fair Value Gap has been completely mitigated, its corresponding zone is automatically removed from the chart.
This helps reduce clutter while keeping attention focused on active market inefficiencies.
---
# Dynamic Zone Extension
Every active Fair Value Gap extends forward automatically.
As new candles appear, existing zones continue projecting into future price action until mitigation occurs or the configured extension period expires.
This allows traders to monitor future interactions between price and previously identified imbalance zones without manually updating chart objects.
---
# Visualization
The indicator includes multiple visualization options.
Users may display:
• Bullish Fair Value Gaps
• Bearish Fair Value Gaps
• Higher-Timeframe Fair Value Gaps
Zones may use either fixed bullish/bearish colors or rotate through a customizable color palette, making consecutive imbalance zones easier to distinguish during periods of increased market activity.
Strength Scores may also be displayed directly inside each Fair Value Gap box.
---
# Available Settings
The indicator includes configurable options for:
• Bullish Fair Value Gap visibility
• Bearish Fair Value Gap visibility
• Percentage-based minimum gap filtering
• ATR-based adaptive filtering
• ATR Length
• ATR Multiplier
• Strength Score display
• Minimum Strength Score threshold
• Volume Average Length
• Multi-Timeframe detection
• Higher-Timeframe selection
• Automatic mitigation removal
• Zone extension length
• Fixed colors
• Palette cycling
• Complete visual customization
---
# Suggested Workflow
One possible workflow is:
1. Determine the primary market trend using your preferred methodology.
2. Enable Higher-Timeframe Fair Value Gap detection if broader market context is required.
3. Wait for new Fair Value Gaps that satisfy the selected filtering criteria.
4. Evaluate the Strength Score.
5. Monitor future price interaction with active imbalance zones.
6. Combine Fair Value Gap analysis with your own confirmation techniques such as market structure, liquidity sweeps, order blocks, break of structure (BOS), change of character (CHoCH), volume analysis, or personal risk management rules before making trading decisions.
The indicator intentionally does not generate automated buy or sell signals.
Its purpose is to provide an objective framework for identifying and monitoring price imbalance zones.
---
# Original Design Philosophy
This implementation was developed to extend the traditional Fair Value Gap workflow beyond simple imbalance detection.
Instead of displaying every possible gap, the indicator integrates multiple analytical layers—including adaptive ATR-based filtering, quantitative Strength Scoring, configurable minimum quality thresholds, automatic mitigation management, dynamic zone extension, and optional multi-timeframe confluence—to help traders organize Fair Value Gaps according to both market volatility and relative participation.
The design philosophy focuses on improving clarity, reducing low-quality signals, and providing a flexible analytical framework suitable for different trading styles and market conditions.
---
## Disclaimer
This indicator is an analytical charting tool designed to assist technical analysis.
It does not predict future price movement, guarantee profitable trades, or provide financial or investment advice.
Trading decisions should always be based on independent analysis, proper risk management, and the trader's own methodology.
Indicator

Reversal Confluence Sniper [JOAT]Reversal Confluence Sniper
Hunts exhaustion reversals by requiring several independent exhaustion signals to appear together, so it fades stretched moves with confirmation rather than hope.
What it is
Fading a trend is dangerous when done on a single cue. This indicator only flags a potential reversal when multiple, independent signs of exhaustion coincide at the same moment — turning a risky counter-trend guess into a confluence-gated setup. It is an original reversal engine, not a lone oscillator flip.
How it works
The engine looks for several exhaustion conditions and requires enough of them to align:
• Momentum extreme — an oscillator reaching and rolling over from an overextended level, showing the push is losing force.
• Volatility stretch — price extended a statistically large distance from a mean or band, marking an unsustainable move.
• Rejection candle — a wick or close that rejects the extreme, showing the aggressive side failed to hold new ground.
• Participation — a volume or effort read that flags climax or fade behaviour rather than steady continuation.
A Buy (bullish reversal) prints when enough downside-exhaustion factors align; a Sell when enough upside-exhaustion factors align. A minimum-gap control prevents repeated prints while a market chops around an extreme.
Trade levels
Each signal draws a red risk box to a stop placed beyond the exhaustion extreme and a green reward box to the third target, with inner dividers and right-edge labels for entry, stop and each take-profit at your R multiples. Placing the stop beyond the extreme respects the idea that if price makes a new extreme, the reversal thesis is wrong.
The dashboard
An adjustable sniper-scope panel shows which exhaustion factors are currently active, a combined conviction reading, the active signal, and a live first-target-before-stop tally from closed bars only, so you can see how much confluence backs each setup.
How to use it
• Works on any asset and timeframe.
• Most effective for timing entries at the end of a stretched move, ideally into a higher-timeframe level or zone.
• Because it fades momentum, pair it with structure or a level tool and keep stops disciplined — reversals that do not confirm should be cut quickly.
Settings
The exhaustion factor lengths and thresholds, the number of factors required to trigger, risk multiple and target R multiples, plus visual and dashboard controls.
Originality and usefulness
The contribution is the confluence gate itself: several independent exhaustion measures that must agree before a counter-trend signal is allowed, with a transparent readout of which factors fired and integrated, non-repainting trade framing. It is designed to make fading safer by demanding evidence, not to promise reversals.
Notes and limitations
• Counter-trend trading is inherently higher risk; strong trends can stay stretched far longer than expected and overrun any reversal signal.
• Requiring more factors reduces false signals but also reduces frequency — this trade-off is yours to set.
• The tally reflects only past bars on the current chart and is not a forecast.
• Educational and analytical tool, not financial advice.
— made with passion by officialjackofalltrades
Indicator

Multi-Timeframe Trend Matrix [JOAT]Multi-Timeframe Trend Matrix
Reads several timeframes with several methods at once and scores their agreement into a single alignment signal — without lookahead.
What it is
Trading a single timeframe blinds you to the larger context; watching many by eye is slow and inconsistent. This indicator evaluates a grid of timeframes and trend methods, turns the whole grid into one alignment score, and signals when top-down agreement forms. It is an original multi-timeframe aggregation tool built to avoid the common pitfalls of higher-timeframe requests.
How it works
• The matrix — a set of higher and lower timeframes is each assessed by several independent trend methods (such as a moving-average relationship, a directional trend measure and a momentum read). Each cell of the grid returns simply bullish or bearish, so the picture is easy to interpret.
• No lookahead — every higher-timeframe value is pulled with lookahead disabled, so the indicator never borrows future data from an unclosed higher-timeframe bar. This is a deliberate, disclosed design choice that keeps the signals honest and non-repainting on historical bars.
• Alignment score — the grid is condensed into one signed score representing how strongly all timeframes and methods agree. Full agreement produces a strong reading; a split grid produces a weak, near-neutral one.
• State-machine signals — a Buy fires when alignment turns sufficiently bullish from a non-bullish state; a Sell is the mirror. Requiring a state change means the matrix will not re-signal the same direction repeatedly — the signals are self-spacing.
Trade levels
Each signal draws a red risk box to the ATR stop and a green reward box to the third target, with inner dividers and right-edge labels for entry, stop and each take-profit at your R multiples.
The dashboard
An adjustable alignment-matrix panel displays every timeframe-by-method cell as bullish or bearish, a bipolar alignment-score headline, the active signal, a conviction estimate, and a live first-target-before-stop tally from closed bars only. The grid shows exactly which timeframes agree and which disagree.
How to use it
• Works on any asset; pick a base timeframe and let the grid supply the higher-timeframe context.
• Favour entries when the grid is broadly aligned; be cautious when it is mixed.
• Use it as a top-down filter alongside your own entry method, or take its aligned signals directly.
Settings
The set of timeframes, the methods and their lengths, the alignment threshold, ATR risk multiple and target R multiples, plus visual and dashboard controls.
Originality and usefulness
The contribution is the aggregation framework: a disciplined, lookahead-free multi-timeframe, multi-method grid condensed into one transparent alignment score with a state-machine trigger. Seeing the full grid — not just a final arrow — is what lets a trader trust or override the signal for themselves.
Notes and limitations
• Higher-timeframe values update only as those bars close, so alignment can shift when a higher-timeframe bar completes — this is expected and prevents lookahead bias.
• Strong alignment can still precede a reversal; agreement is context, not certainty.
• The tally reflects only past bars on the current chart and is not a forecast.
• Educational and analytical tool, not financial advice.
— made with passion by officialjackofalltrades
Indicator

Supply & Demand Order Blocks [JOAT]Supply and Demand Order Blocks
Detects institutional order blocks from displacement, tracks them until mitigated, and signals reactions when price returns to a fresh zone.
What it is
Large participants cannot fill size at a single price, so they leave a footprint: the last opposing candle before an aggressive, imbalanced push. That candle marks the zone where unfilled orders rest and where price often returns to be re-accumulated or re-distributed. This indicator locates those zones objectively, manages their lifecycle, and frames the reaction as a trade. It is an original order-block engine with strict zone management.
How it works
• Displacement — the engine measures each impulsive leg over a short window against an ATR multiple. Only moves that exceed that threshold (optionally requiring a fair-value gap) count as institutional displacement, filtering out ordinary candles.
• Order block — the last opposing candle before a qualifying displacement is stored as a zone: the last down candle before a bullish push becomes demand, the last up candle before a bearish push becomes supply.
• Zone management — active blocks are held in parallel arrays, drawn as boxes extended to the right, faded by age and saturated by displacement strength, pruned once mitigated (price closes through them), and capped at a live maximum so the chart stays clean.
• Signals — a Buy fires when price taps a fresh demand block and closes back up (a bullish rejection); a Sell is the mirror at a supply block. An optional trend filter keeps you buying demand in uptrends and selling supply in downtrends, and a minimum-age plus minimum-gap rule stops a freshly formed block from self-triggering and prevents clustering.
Trade levels
Each signal draws a red risk box from entry to a stop placed beyond the block and a green reward box to the third target, with inner dividers and right-edge labels for entry, stop and each take-profit at your R multiples.
The dashboard
An adjustable order-flow-depth panel shows the trend bias, the live counts of demand and supply blocks, the distance to the nearest zone, a conviction estimate, the active signal, and a live first-target-before-stop tally from closed bars only.
How to use it
• Works on any asset and timeframe; larger timeframes produce fewer, more significant blocks.
• Trade reactions at fresh, unmitigated zones aligned with the trend filter; treat mitigated zones as spent.
• Use the nearest-zone distance to anticipate where a reaction may occur before it happens.
Settings
Displacement window and ATR size, fair-value-gap requirement, maximum live blocks and extension, minimum block age, trend filter length, risk buffer and target R multiples, plus visual and dashboard controls.
Originality and usefulness
The contribution is the full lifecycle model: an ATR-based displacement filter, objective block selection, age-and-strength-aware zone rendering, mitigation-based pruning, and a self-trigger guard — combined with a trend-filtered, non-repainting reaction signal and explained end to end.
Notes and limitations
• Not every tap of a zone reverses; blocks can and do break, which is why mitigation pruning and stops exist.
• Order-block definitions vary between traders; this engine uses one consistent, disclosed definition.
• The tally reflects only past bars on the current chart and is not a forecast.
• Educational and analytical tool, not financial advice.
— made with passion by officialjackofalltrades
Indicator

RSI Divergence Hunter [JOAT]RSI Divergence Hunter
Automatically detects the four classic RSI divergence types on confirmed pivots and frames each one as a trade.
What it is
Divergence between price and momentum is one of the oldest reversal and continuation reads, but marking it by hand is subjective and easy to force. This indicator detects all four divergence types algorithmically on confirmed pivots, so what you see is defined and repeatable, and then attaches a full trade structure to each. It is an original divergence engine, not a plain RSI plot.
How it works
• RSI core — the relative strength index measures the speed and size of recent moves. It is the momentum reference every divergence is measured against.
• Confirmed pivots — the engine waits for pivots on both price and RSI to confirm a set number of bars back before comparing them. Because pivots are only evaluated once confirmed, a plotted divergence does not repaint into or out of existence.
• The four types — regular bullish (price lower low, RSI higher low) and regular bearish (price higher high, RSI lower high) point to potential reversals; hidden bullish and hidden bearish point to trend continuation after a pullback. Each is drawn with a connecting line on both price and RSI and labelled by type.
• Zones and gating — overbought and oversold zones give context, and a minimum-gap control keeps divergence signals from stacking on lower timeframes.
Trade levels
Each qualifying divergence draws a red risk box to the stop and a green reward box to the third target, with inner dividers and right-edge labels for entry, stop and each take-profit at your R multiples. The stop is anchored beyond the pivot that formed the divergence.
The dashboard
An adjustable divergence-scope panel shows the current RSI value and zone, the most recent divergence type detected, the active signal, a conviction estimate, and a live first-target-before-stop tally from closed bars only.
How to use it
• Works on any asset and timeframe.
• Treat regular divergences as counter-trend reversal cues and hidden divergences as with-trend continuation cues — the distinction matters.
• Combine with structure or a trend filter; divergence works well as confluence, not in isolation.
Settings
RSI length and source, pivot strength, which divergence types to display, overbought/oversold levels, risk multiple and target R multiples, plus visual and dashboard controls.
Originality and usefulness
The contribution is a complete, confirmed-pivot detector for all four divergence classes with clear per-type labelling and integrated, non-repainting trade framing. By fixing the definition of a divergence and waiting for pivot confirmation, it removes much of the hindsight bias that makes manual divergence unreliable.
Notes and limitations
• Divergence signals can persist and reappear in strong trends; a divergence is a condition, not a timing guarantee.
• Confirmed pivots introduce a natural delay equal to the pivot strength — this is the cost of not repainting.
• The tally reflects only past bars on the current chart and is not a forecast.
• Educational and analytical tool, not financial advice.
— made with passion by officialjackofalltrades
Indicator

ORB & Session Liquidity Model [JOAT]ORB and Session Liquidity Model
Builds the opening range for your chosen session, maps the liquidity around it, and signals breakouts with session-aware trade control.
What it is
The first minutes of a session set a reference range that the rest of the session repeatedly reacts to. This indicator defines that opening range, tracks the liquidity sitting above and below it, and signals confirmed breakouts — with session timing, a daily trade cap and full trade framing built in. It is an original session-driven model, not a generic breakout line.
How it works
• Opening range — during a user-defined opening window (for example the first N minutes of your session), the tool records the high and low. Once the window closes, that range is locked as the reference for the rest of the day and drawn as a box.
• Session logic — the model resets cleanly each new day using a real session-change test, so counters and levels do not carry stale values across sessions. Trading is only permitted inside the active session window you define.
• Liquidity ladder — levels around the range (its extremes and projections) are drawn and labelled as the liquidity price is likely to seek. These give context for where a breakout may run to or reverse from.
• Breakout signals — a Buy fires on a confirmed close beyond the range high plus a buffer; a Sell on a confirmed close below the range low minus the buffer. A per-day maximum-trades cap and a minimum-gap control prevent the level from generating repeated prints as price oscillates around it.
Trade levels
Each breakout draws a red risk box to the stop and a green reward box to the third target, with inner dividers and right-edge labels for entry, stop and each take-profit at your R multiples. Stops relate to the range, which is the structure the trade is based on.
The dashboard
An adjustable session-console panel shows the current session phase (pre-range, range building, or live), the locked range, the directional bias relative to it, the trades used against the daily cap, the active signal, a conviction estimate, and a live first-target-before-stop tally from closed bars only.
How to use it
• Set the opening window and session to match the market you trade (indices, futures, forex sessions, crypto day boundaries).
• Wait for the range to lock, then trade confirmed breakouts in the direction of your bias; use the liquidity ladder for targets and invalidation.
• The daily cap keeps the model disciplined — respect it rather than overriding on every wiggle.
Settings
Opening-range window, session hours, breakout buffer, maximum trades per day, liquidity options, risk multiple and target R multiples, plus visual and dashboard controls.
Originality and usefulness
Opening-range breakout is a known concept; the contribution here is the integrated liquidity mapping around the range, the strict session reset and daily trade governance, the confirmed-close breakout logic, and the full non-repainting trade framing — assembled into one session-aware model and explained so each element's role is clear.
Notes and limitations
• Breakouts can fail, and range-bound sessions produce whipsaws around the levels — the buffer and daily cap reduce but do not eliminate this.
• Session settings must match the instrument; a mismatched window will define the range at the wrong time.
• The tally reflects only past bars on the current chart and is not a forecast.
• Educational and analytical tool, not financial advice.
— made with passion by officialjackofalltrades
Indicator

Quant Confluence Engine [JOAT]Quant Confluence Engine
Scores several independent market factors into one weighted composite, so signals fire on agreement across dimensions rather than on any single trigger.
What it is
Single-factor signals are fragile: a momentum cross, a moving-average flip or a volume spike each fails often on its own. This engine measures several independent factors, normalises them to a common scale, and blends them into one bipolar confluence score. A signal is produced only when enough factors line up, and the transparency of the score lets you see exactly why. It is an original scoring framework, not a bundle of overlaid classic indicators.
How it works
• The factors — the engine evaluates a set of complementary dimensions, each capturing a different aspect of the tape: trend alignment, momentum, volatility regime, volume behaviour, price structure and stretch relative to a mean. Each factor is computed with a standard, well-understood method and then scaled so it contributes fairly.
• Normalisation — every factor is converted to a bounded contribution, so no single input can dominate the composite purely because of its raw magnitude.
• Composite score — the contributions are combined into one signed 0-centred score. Positive means the factors lean bullish, negative bearish, and the magnitude expresses how strong the agreement is.
• State-machine signals — a Buy fires when the score crosses into sufficient bullish agreement from a non-bullish state; a Sell is the mirror. Because a signal requires a genuine state change, the engine will not re-fire the same direction bar after bar — signals are self-spacing by construction.
Trade levels
Each signal draws a red risk box to the ATR stop and a green reward box to the third target, with inner dividers and right-edge labels for entry, stop and each take-profit at your R multiples.
The dashboard
An adjustable factor-grid panel shows each factor's current lean (up or down) alongside a bipolar composite-score headline, the active signal, a conviction reading, and a live first-target-before-stop tally from closed bars only. The grid makes it obvious which factors are driving or vetoing a setup.
How to use it
• Works on any asset and timeframe; the factors adapt to the data.
• Read the grid before acting — a signal backed by broad agreement differs from one carried by a single strong factor.
• Raise the agreement requirement for fewer, higher-conviction signals, or lower it for more frequent ones.
Settings
Per-factor lengths and weights, the agreement threshold, ATR risk multiple and target R multiples, plus visual and dashboard controls.
Originality and usefulness
The value is the framework itself: a normalised, weighted multi-factor score with a transparent per-factor readout and a state-machine trigger that prevents signal spam. It is designed so a trader can inspect the reasoning, not just accept a label — which is precisely what a confluence approach should offer.
Notes and limitations
• Confluence reduces some false signals but does not remove them; correlated factors can all be wrong together in unusual conditions.
• Weighting is a design choice — different weights suit different markets, so treat the defaults as a starting point.
• The tally reflects only past bars on the current chart and is not a prediction.
• Educational and analytical tool, not financial advice.
— made with passion by officialjackofalltrades
Indicator
