Индикатор

Индикатор

Divergence Indicator RSI, MACD,, Hidden Reversal Signals LunqFXDivergence Indicator is a multi-engine divergence scanner for TradingView that reads RSI, MACD and OBV at every confirmed swing and only draws a divergence when the engines agree — so instead of the usual flood of weak one-oscillator signals, you get a few graded, high-conviction ones. Every divergence is rated by strength: ★★★ all three engines confirm (rare, strongest), ★★ two confirm, single-engine noise is filtered out by default. It detects regular divergences (price makes a new extreme, oscillators refuse — potential reversal) and hidden divergences (trend continuation), on any market — forex, crypto, stocks, indices, gold — and any timeframe. Built in Pine Script v6, fully non-repainting. Keywords: divergence indicator, RSI divergence, MACD divergence, OBV divergence, hidden divergence, regular divergence, reversal, momentum, exhaustion, multi oscillator scanner.
◆ WHY MULTI-ENGINE
Any single oscillator diverges constantly — that's why classic divergence tools feel random. Requiring independent confirmation from momentum (RSI), trend-momentum (MACD) and volume flow (OBV) removes most false positives: when all three refuse to follow price, the move is genuinely running out of fuel.
◆ WHAT IT DRAWS
Divergence lines on price — solid neon violet for bullish, neon amber for bearish; dashed for hidden divergences.
Star-graded labels — ★★ / ★★★ with tooltips explaining exactly what diverged.
Exhaustion candles — a unique display layer: candles glow at full neon while price and engines agree, and fade as engines stop confirming — you see a divergence brewing before it prints.
Status strip dashboard — a horizontal HUD along the bottom: last signal + strength, a live engine board (P / RSI / MACD / OBV direction arrows), a FUEL meter, and bull/bear counters.
◆ HOW IT WORKS
Swings are detected with confirmed pivots (N closed bars each side).
At each new confirmed pivot the scanner compares price and each engine against the previous pivot: price lower low + engine higher low = regular bull; price higher low + engine lower low = hidden bull (mirrored for highs).
The number of agreeing engines (1–3) becomes the star rating; signals below your minimum are skipped.
The live engine board and fuel meter track slope agreement in real time — display-only context that never alters signals.
◆ HOW TO USE IT
Treat ★★★ regular divergences as your primary reversal alerts — look for entries with your own structure/levels.
Use hidden divergences to join the trend on pullbacks.
Watch the FUEL meter: when it drains and candles fade, tighten stops on trend trades.
Raise Min strength to 3 for only the rarest, cleanest signals; lower pivot bars for faster (but noisier) detection.
◆ SETTINGS
Pivot left/right bars, max gap between swings, minimum strength, hidden divergences on/off, engine toggles (RSI/MACD/OBV), RSI length, exhaustion candles, label size, dashboard position/size.
◆ ALERTS
Bullish divergence · Bearish divergence (fire when a confirmed signal prints).
◆ LIMITATIONS
Signals confirm with a pivot delay (right bars) — that is the honest cost of zero repaint; lower it for speed, raise it for reliability.
On symbols without volume data the OBV engine adds no information — disable it there.
Divergence marks exhaustion, not timing — always combine with structure and risk management.
◆ ORIGINALITY & NON-REPAINTING
Original work: the three-engine agreement grading, the exhaustion-candle layer, the live engine board and the fuel meter are my own implementation — no third-party code. All divergences are built from confirmed pivots only; a drawn line or label never moves or disappears.
Educational analysis tool, not financial advice. © LunqFX. Индикатор

Индикатор

Super-trend Signal Engine Strat [QUANTUM EDGE]Short description
Volatility-adjusted Supertrend strategy with trend-reversal entries, bar highlights, and date-range backtesting.
Description
Signal Engine Quantum Edge is a clean Supertrend-based strategy that tracks volatility-adjusted trend state and generates long/short entries on confirmed reversals. It includes optional visual highlights, signal labels, and bar coloring to make trend alignment instantly readable, plus a configurable date range for precise backtest control.
How it works
Computes ATR-based upper and lower bands from a user-selected source (default hl2)
Bands tighten with trend continuation and reset on reversal
A trend flip from bearish to bullish triggers a long entry
A trend flip from bullish to bearish triggers a short entry
Recommended timeframe settings
Timeframe ATR Period ATR Multiplier
15-minute 15 9.1
5-minute 13 5.1
1-minute 10 3.0
Load the chart on your desired timeframe, open the strategy settings, and match the ATR Period and ATR Multiplier to the values above before running backtests.
Inputs
ATR Period — lookback for volatility measurement
ATR Multiplier — band width scalar
Source — price input for band calculation (default hl2)
Change ATR Calculation Method — toggle between standard ATR and SMA-of-TR
Show Buy/Sell Signals — toggle signal labels on/off
Highlighter On/Off — background trend shading
Bar Coloring On/Off — candle color sync with trend state
Date Range — backtest window limits (From/To month, day, year)
Important usage notes
This is a strategy script, not an indicator. It executes strategy.entry() calls and is meant for backtesting and automated execution workflows.
Combine with your own higher-timeframe bias, structure, and risk-management rules before live deployment. Стратегия

MTF Bias TableScript name
QE — MTF Bias Table
Short description
Multi‑timeframe trend bias dashboard. Compares fast vs. slow MA alignment across 5m through 1M to classify each timeframe as bullish or bearish at a glance.
Description
QE — MTF Bias Table is a non‑repainting, multi‑timeframe trend dashboard built for traders who need higher timeframe context before entering lower timeframe setups. It evaluates fast vs. slow moving average alignment across eight timeframes (5m, 15m, 30m, 1H, 4H, 1D, 1W, 1M) and prints a clean, color‑coded table directly on the chart.
The indicator is intentionally designed to pair with order‑flow, structure, and liquidity tools. It does not predict direction; it answers one question: “Is this timeframe aligned bullish or bearish?”
How it works
Fast MA > Slow MA = Bullish alignment (green “▲ BULL”)
Fast MA < Slow MA = Bearish alignment (red “▼ BEAR”)
All MTF requests use lookahead disabled to prevent repainting. The script reads a fresh close‑based value at each higher timeframe candle, so the bias state is stable and reflects the confirmed bar, not the developing one.
Configurable inputs
Fast MA Length (default 20)
Slow MA Length (default 50)
MA Type (EMA or SMA)
Why use this
Instantly see if your entry timeframe aligns with the daily/weekly bias
Avoid counter‑trend entries when the HTF is stacked against you
Use it as a filter: only trade setups that agree with the higher timeframe bias
Compact table design with minimal chart clutter
Tags
multi-timeframe
trend
bias
dashboard
Usage note
This is a bias filter, not an entry system. Combine it with your own structure, liquidity, and confirmation models for a complete trading plan. Индикатор

Индикатор

Previous Day Breakout IndicatorStrategy Breakdown
1.Previous Day Levels: The strategy uses request.security to look up the previous day's high and low prices.
2.Entry Conditions: To trigger an entry, the strategy checks if the current 5-minute bar and the previous 5-minute bar have both closed beyond the previous day's level (either above the high or below the low). To ensure we only enter precisely on the second bar, we check that the bar 2 bars ago did not close beyond the level.
3.Risk Management: Once in a position, the strategy relies on strategy.exit, utilizing the profit and loss parameters which accept points/ticks.
4.Visuals: The previous day's high and low are plotted on your chart for easy visual reference.
I've tightened the logic in the editor to guarantee that the strategy only looks at the previous day's levels and that the breakout explicitly originates from inside the previous day's range.
The entry condition now strictly requires:
1.The candle 2 bars ago was inside the previous day's range (meaning the breakout is fresh).
2.The previous candle (Bar 1) broke out and closed beyond the Previous Day High/Low.
3.The current candle (Bar 2) also closed beyond the Previous Day High/Low.
The strategy doesn't look at any other levels, support/resistance, or indicators.
What I added:
Projected Daily Candle: The script now constructs a visual representation of the Previous Day's candle (complete with the high/low wicks and the open/close body) and projects it to the right of your current price action.
It updates dynamically on the very last bar.
You can control exactly how far ahead it gets drawn via the "Candle Projection Offset (Bars)" input in the settings.
Continuous Levels: The Previous Day High and Low are continuously plotted as solid lines across the chart so you always know where those exact levels sit.
Entry Signals: Since this is now an indicator and not a strategy, I added plotshape() triangles to visualize the exact moments when your 2-bar breakout entry logic fires. Green triangles appear below the bar for Long setups, and red triangles appear above the bar for Short setups.
What's Changed:
1.Support & Resistance Zones: Instead of basic continuous lines, the Previous Day High and Low are now drawn as gray horizontal boxes spanning from the start of the current day extending out into the future, creating support and resistance "zones".
2.Text Labels: I added the Resistance (PDH) and Support (PDL) text labels directly above and below their respective zones, matching the image.
3.Midpoint Dashed Line: A dashed gray line now automatically calculates the exact center between the high and low (pdH + pdL) / 2 and runs horizontally through the entire daily range.
2.Candle Body Box: Instead of a thick line, the body of the projected candle is now constructed using a box with the text "PD" directly in the center, and the wick is a single vertical line running through it.
Now, the indicator will print a signal any time the price crosses and closes beyond either level for two consecutive bars, regardless of direction.
Specifically:
Long Signals (Green Triangle Up): Trigger if price breaks and holds above the Previous Day High OR if price breaks and holds above the Previous Day Low (e.g., crossing back up into the daily range).
Short Signals (Red Triangle Down): Trigger if price breaks and holds below the Previous Day Low OR if price breaks and holds below the Previous Day High (e.g., crossing back down into the daily range, as you highlighted with the red arrow in your image).
This effectively allows you to trade both the true breakouts and the fakeouts/reversions back inside the range! Check out the chart and let me know if those signals align perfectly with what you had in mind.
How it works now:
I added a new setting in the indicator's input menu called "Signal on Bar #". You can now choose exactly how many consecutive closes must happen beyond the line before the triangle signal prints.
Set to 1: The signal triggers immediately on the very first candle that closes outside the Previous Day High/Low.
Set to 2: (Your original request) The signal waits for two consecutive candles to close outside the level.
Set to 3 or 4: The script demands even more confirmation, waiting for 3 or 4 consecutive candles to close beyond the level without dipping back across it.
If the price dips back inside the range before your chosen number of bars completes, the count resets, preventing false signals. You can tweak this setting right from the gear icon to see how it filters the trades on your chart!
Индикатор

Bitcoin Halving Cycle PhasesBitcoin Halving Cycle Phases is a calendar-based visual indicator that highlights approximate Bitcoin halving cycle phase zones directly on the chart.
The indicator uses historical Bitcoin halving dates and predefined calendar phase boundaries to display different cycle regions, including Halving, Bullish, Bearish, Recovery, and Pre-halving phases. Future zones are projected using an approximate cycle length and are intended only as visual calendar references.
This script does not calculate price targets, buy or sell signals, trading entries, exits, stop losses, take profits, backtest results, or financial advice. The displayed future zones are approximate calendar projections only and should not be interpreted as forecasts or guaranteed market outcomes.
The indicator is designed for educational cycle visualization and long-term market context.
Индикатор

Previous Day High Low Close koti# Previous Day High Low Close (PDH • PDL • PDC)
The **Previous Day High Low Close** indicator plots the previous trading day's **High, Low, and Close** on any intraday chart. These key institutional levels act as important support, resistance, breakout, and reversal zones, helping traders identify high-probability trading opportunities.
### Features
* Previous Day High (PDH)
* Previous Day Low (PDL)
* Previous Day Close (PDC)
* Automatic daily updates
* Works on all intraday timeframes
* Clean, lightweight, and easy to customize
### How to Use
* **Price above PDH:** Bullish strength; look for buying opportunities.
* **Price below PDL:** Bearish strength; look for selling opportunities.
* **Price near PDC:** Often acts as a decision or equilibrium level.
* **PDH breakout with strong volume:** Potential continuation of an uptrend.
* **PDL breakdown with strong volume:** Potential continuation of a downtrend.
* **Rejection from PDH or PDL:** Can signal a reversal or pullback.
### Best For
* Intraday Trading
* Scalping
* Swing Trading
* Futures & Options
* Stocks, Indices, Commodities, and Forex
This indicator is especially effective when combined with VWAP, Pivot Points, CPR, Volume, and Price Action to improve trade confirmation and risk management.
Индикатор

EMA Pulse Momentum System [StrixEDGE]Overview
The EMA Pulse Momentum System is a trend-following indicator that combines a triple exponential moving average (EMA) ribbon with an RSI-based momentum gate to produce high-confidence directional signals on trending instruments. Unlike single-crossover systems that generate excessive noise, this indicator requires simultaneous alignment across three conditions before printing an entry — which significantly reduces false positives in ranging or choppy market environments.
How the signal logic works
The system operates on a three-layer confirmation model:
1. EMA Ribbon Alignment. Three EMAs are computed: a fast EMA (default 8), a mid EMA (default 21), and a slow EMA (default 55). For a valid long setup, all three must be fully stacked in ascending order (EMA 8 above EMA 21, EMA 21 above EMA 55). The reverse applies for short setups. This stacking condition eliminates entries during period of EMA compression or crossover noise, and acts as a structural trend filter. The ribbon also fills with a color-coded cloud between EMA 8 and EMA 21, providing instant visual feedback on trend health.
2. RSI Momentum Gate. Even with a clean ribbon, markets can trend without momentum confirmation — particularly after extended runs. A 14-period RSI is applied as a secondary gate: RSI must be above 52 to confirm bullish momentum, or below 48 to confirm bearish. These thresholds are intentionally set close to the 50 midline rather than the classic 70/30 extremes, because the goal is to confirm that momentum is directionally engaged, not to identify overbought or oversold conditions. The RSI thresholds are fully adjustable in settings.
3. Crossover Trigger. The entry fires only when EMA 8 crosses above EMA 21 (long) or below (short) while both the ribbon stack and RSI gate are simultaneously satisfied. The crossover itself does not generate a signal if either condition fails.
Risk management — ATR-based TP and SL
All risk levels are calculated dynamically using the Average True Range (ATR) over 14 periods, which adapts automatically to current market volatility. This means tighter levels during low-volatility regimes and wider levels during expansion — no manual adjustment required.
— Take Profit: Entry price ± (ATR × 2.0)
— Stop Loss: Entry price ± (ATR × 1.2)
— Default Risk-to-Reward ratio: 1.67 : 1 minimum
TP, SL, and entry lines are drawn forward 30 bars from each signal and labeled with exact price levels. All multipliers are adjustable via the settings panel.
Information table
A real-time dashboard table (position configurable: Bottom Right, Bottom Left, Top Right, Top Left) displays:
— Current trend direction (Bullish / Bearish / Neutral)
— Live RSI value with color coding
— Current ATR value for sizing context
— Last signal direction (Long / Short)
— Calculated Risk-to-Reward ratio
— EMA stack status (aligned or mixed)
Recommended usage
Best timeframes: 4H and Daily. The indicator functions on all timeframes but performs most reliably where EMA 8/21/55 have enough separation to define structure. On 1H or below, the signal frequency increases but false positives also rise — compensate by tightening RSI thresholds in settings.
Compatible with all liquid markets: Forex majors, Crypto (BTC, ETH, majors), Stocks, Indices, and Futures.
Avoid using this indicator as a standalone system during known high-impact news events (FOMC, NFP, CPI) where price gaps can invalidate ATR-based stops instantly.
Alerts
Two built-in alert conditions are included:
— "EMA Pulse — Long Entry": fires when all long conditions are satisfied
— "EMA Pulse — Short Entry": fires when all short conditions are satisfied
Configure via the Alerts panel in TradingView using "Once per bar close" for cleanest signals.
Settings reference
EMA Fast (default 8) — reduce for more sensitivity, increase to reduce noise
EMA Mid (default 21) — core crossover reference line
EMA Slow (default 55) — structural trend filter
RSI Length (default 14) — period for momentum gate
RSI Bull Threshold (default 52) — minimum RSI for long confirmation
RSI Bear Threshold (default 48) — maximum RSI for short confirmation
ATR Length (default 14) — volatility lookback for TP/SL
TP Multiplier (default 2.0) — take profit distance in ATR units
SL Multiplier (default 1.2) — stop loss distance in ATR units
Limitations
This indicator is a technical analysis tool and does not constitute financial advice. Past signal performance does not guarantee future results. Always use proper position sizing and risk management independent of any indicator output. Индикатор

Индикатор

Индикатор

Индикатор

Стратегия

Индикатор

Pro Trend AI v8 durga # Pro Trend AI v8
**Professional Multi-Timeframe Trend & Market Bias Indicator**
Pro Trend AI v8 is a clean, trend-focused indicator designed for traders who want to identify the true market direction without clutter from automatic buy/sell signals. It combines multiple higher-timeframe tools into a single market bias engine, making it ideal for intraday trading and option scalping.
### Features
* 1H Session VWAP
* Daily VWAP
* 1H EMA Trend Engine (20 EMA & 50 EMA)
* 1H Standard Pivot
* Daily CPR (Central Pivot Range)
* 1H Camarilla Levels (R3, R4, R5, R6, S3, S4, S5, S6)
* Institutional Volume Filter
* Professional Market Dashboard
* Three-State Trend Background
### Trend Logic
🟢 **Bull Trend**
* 1H EMA20 > EMA50
* Price above 1H Session VWAP
* Price above Daily VWAP
* Price above 1H Pivot
* Price above Daily CPR
* Price above Camarilla R3
* Buyer volume confirmation
🔴 **Bear Trend**
* 1H EMA20 < EMA50
* Price below 1H Session VWAP
* Price below Daily VWAP
* Price below 1H Pivot
* Price below Daily CPR
* Price below Camarilla S3
* Seller volume confirmation
⚪ **Sideways**
* Mixed market conditions
* No clear trend confirmation
### Background Colors
* 🟢 Green = Bull Trend
* 🔴 Red = Bear Trend
* ⚪ No Background = Sideways
### Dashboard
The dashboard provides an instant view of:
* Market Trend
* 1H EMA Status
* 1H Session VWAP Position
* Daily VWAP Position
* 1H Pivot Position
* Daily CPR Status
* Camarilla Position
* Institutional Volume Status
* Overall Market Bias
### Designed For
* Intraday Traders
* Option Traders
* Futures Traders
* Scalpers
* Trend Followers
### Best Timeframes
* 1 Minute
* 3 Minute
* 5 Minute
* 15 Minute
The indicator uses higher-timeframe confirmation to help filter market noise while maintaining a clean, professional chart. It focuses entirely on identifying bullish, bearish, and sideways market conditions, allowing traders to apply their own entry and exit strategies with greater confidence.
**Developed by Koteswararao Saga**
Индикатор

Индикатор

Индикатор

Индикатор

Индикатор

Income ETF vs Benchmark ComparatorCompare the performance of income/covered call ETFs (JEPI, JEPQ, QYLD, QQQI, XYLD, SPYI) against their benchmark ETFs (SPY, QQQ) to determine if income strategies outperform buy-and-hold.
Features:
Total Returns: Year-by-year and period total returns (price appreciation + dividends, non-reinvested)
Dividend Yields: Annual dividend percentages for both income and benchmark ETFs
NAV Decay: Measures underperformance of income ETF vs benchmark
Dividend Extraction Analysis: Shows hypothetical benchmark returns if you extracted the same dividends by selling shares
Sharpe Ratios: Risk-adjusted returns for performance comparison
Predefined Pairs: Quick selection of common comparisons or custom symbol input
Customizable Display: Adjustable table position and font size
How to Use:
Select a comparison pair (e.g., "JEPI vs SPY") or choose "Custom" to compare any two symbols
Also put the ticker in analysis in the chart and 1D time frame
Review yearly performance, dividends, and risk metrics in the table
Ideal for investors evaluating whether income ETF strategies justify their NAV decay compared to traditional index investing. Индикатор

Modern Bollinger Bands [GBB]Modern Bollinger Bands
I rebuilt Bollinger Bands. Not because the original is bad, John Bollinger's work has held up for forty years, but because the defaults everyone uses were designed for daily stock charts in the 1980s and we're putting them on crypto perps at 3am.
WHAT'S WRONG WITH THE CLASSIC
Five things, in my view.
The window is always 20 bars. Doesn't matter if the market is in a fast news week or a dead summer range, you get the same 20.
The bands assume returns follow a bell curve. Asset returns have fat tails, so price pokes outside a two sigma band far more often than the theory says it should.
A band touch has no meaning on its own. In a range, fading the touch works okay. In a trend, price walks down the band and runs over every single fade. The classic gives you nothing to tell those two situations apart, and that's the flaw that costs people real money.
The SMA basis is slow. Equal weight on every bar means the middle line describes the market as it was roughly ten bars ago.
And band width isn't comparable to anything. What counts as narrow on one chart means nothing on another, so squeeze thresholds end up being eyeballed.
WHAT I CHANGED
The length adapts. An Ehlers homodyne discriminator measures the dominant cycle in price and the window becomes half of it, between 10 and 50 bars. When there's no measurable cycle because the market is trending too hard, the length freezes at the last good value instead of guessing.
The basis is a KAMA instead of SMA. It speeds up when price is actually going somewhere and almost stops updating in chop.
The bands are percentile bands, not sigma bands. 97.5th and 2.5th percentile of the real deviations around the basis, nearest rank, over a longer window. Your market's actual tails, not a textbook bell curve.
I added a regime filter: Kaufman efficiency ratio, percentile ranked against the last 252 bars, with 70/55 hysteresis so it doesn't flip flop on the boundary. Blue bands are RANGE, orange bands are TREND, and the signals respect the color.
And the squeeze is a score from 0 to 100. Percentile rank of band width against the last year of bars. A score of 8 reads the same on every symbol and every timeframe.
THE SIGNALS
Three types, that only trigger on candle close, so there is nothing repainted.
Singal1: Blue triangles. The classic fade, but only where it belongs. Price closes outside a band, the next bar closes back inside, and the regime is RANGE. In TREND this signal simply doesn't exist.
Singal2: Orange circles. Trend pullback. Price dips into a zone around the basis, then closes back in the trend direction. TREND only and with the trend only. One thing about the chart markers: in a long trend this setup can fire on several nearby bars, so the chart draws the first circle of a cluster and skips the repeats for a few bars, so the chart does not get too cluttered.
Signal3: Diamonds. Squeeze release after at least 5 bars of squeeze, then the squeeze ends and price closes outside a band on that same bar. Important: While this is the most intuitive setup of the three and it's the one my testing supports least. Release events showed the same forward 20 bar volatility as typical bars from the same hours. Volume confirmation didn't help either, I tested that separately. The diamonds mark a real event, compression ended and price left the bands, but whether that's worth anything is a question my data answered with no. I included the signal and alert for it anyway, because I know many of you will want it.
SETTINGS
Everything above is a toggle. The groups match the settings dialog, so here's what each one actually does and when you'd touch it.
Adaptive length: Length mode switches between Adaptive and Fixed. Adaptive is the point of this indicator. Fixed with the default of 20 exists for two reasons: reproducing the classic, and for people who want to trust their own number. The fixed length input only matters in Fixed mode.
Basis / bands: Basis picks KAMA or SMA for the middle line, bands picks Robust (percentile) or Stdev (classic sigma). Set Fixed 20 plus SMA plus Stdev and you have exact 1980s Bollinger Bands, that combination is deliberately supported. The stdev multiplier (2.0) only applies in Stdev mode. The robust percentiles (97.5 and 2.5) set where the bands sit in the deviation distribution, pull them toward 95/5 if you want more touches and more signals, push them out if you want only the extremes. The robust window multiplier and floor control how much history the percentile estimate uses, 4 times the adaptive length with a floor of 80 bars by default. Shorter windows react faster to volatility shifts but the tail estimates get noisy, I would leave these alone unless you know why you're changing them. KAMA fast and slow (2 and 30) are the standard Kaufman speeds, the basis moves between a 2 period and a 30 period EMA depending on how efficient the move is.
Regime / squeeze: KER length (20) is the window for the efficiency ratio itself. The percentile rank window (252) is what "recent history" means for both the regime and the squeeze score, about one year of daily bars, about ten days on 1h. TREND enter (70) and TREND exit (55) are the hysteresis levels: the market has to rank above the 70th percentile in efficiency to be called TREND and drop back below the 55th to be called RANGE again. Widen the gap and the regime switches less often but later, narrow it and you get earlier calls with more flip flops. These defaults sat on a flat plateau in sensitivity testing, meaning nearby values gave nearly identical results, so there's no magic in 70/55, but there's also nothing to gain from tuning them. Squeeze threshold (20) defines squeeze as band width below the 20th percentile, and min bars in squeeze (5) stops one bar dips from counting as compression.
Signals: One input, the S2 touch fraction (0.25). It sets how close to the basis a pullback has to come, measured as a fraction of the band halfwidth. Smaller means stricter pullbacks and fewer S2 signals.
Display: Clean display preset strips everything down to the three lines, no fill, no markers, no panel. The info panel (regime, KER percentile, adaptive length with its frozen flag, squeeze score, last signal) is off by default, turn it on when you want to see what the indicator is "thinking". Signal markers and the squeeze heat on the band fill can be switched off separately. The S2 marker debounce (5) is the cosmetic cluster filter from the signals section, set it to 0 if you want every circle drawn.
Parity: You can ignore this group for trading. It pins the computation start to a fixed timestamp so every value on the chart can be reproduced bar for bar against a Python reference implementation. It's how the validation was done and it stays in so anyone can check my work.
ALERTS
Six per signal alerts plus the combined JSON one with symbol, timeframe, signal, regime, squeeze score and band levels. Once per confirmed bar close, built for webhook bots.
No indicator prints money, this one included. It tells you regime, structure and volatility state, with the evidence behind each part published, nulls and all. Trade safe. Индикатор
