OPEN-SOURCE SCRIPT

Innovation-Gated Hull Supertrend [BackQuant]

3 648
Innovation-Gated Hull Supertrend [BackQuant]

Overview

Innovation-Gated Hull Supertrend is an adaptive trend-following overlay that combines three distinct signal-processing components:

  • A Hull Moving Average projection for responsive trend estimation.
  • An innovation-gated recursive filter for adaptive noise reduction.
  • A volatility-based Supertrend applied to the filtered Hull estimate.


The indicator is designed to behave differently during quiet and active market conditions.

When the Hull estimate changes only slightly relative to recent volatility, the innovation gate restricts how much of that movement is admitted into the filtered trend estimate. The Supertrend bands can also expand during these quieter conditions, reducing sensitivity to minor fluctuations.

When a larger and statistically more meaningful change occurs, the gate opens. The recursive filter becomes more responsive, the Supertrend bands return closer to their base width, and the model is allowed to react more quickly.

The result is a trend framework that attempts to balance two competing requirements:

  • Remain stable when price movement is small and noisy.
  • Respond more quickly when new information produces a meaningful displacement.


The indicator does not predict future prices. It is a causal trend model that adapts its response according to the size of newly arriving information relative to the current volatility environment.

Core calculation chain

The complete calculation can be summarised as:

  1. Calculate a Hull Moving Average projection from the selected price source.
  2. Estimate current volatility using ATR, standard deviation, or a blend of both.
  3. Compare the Hull projection with the recursive filter’s previous estimate.
  4. Normalise that difference by volatility to calculate an innovation score.
  5. Pass the score through a smooth logistic gate.
  6. Use the gate to adapt the recursive filter’s measurement and process uncertainty.
  7. Generate the innovation-filtered Hull estimate.
  8. Optionally adapt the Supertrend band multiplier using the same gate.
  9. Apply Supertrend logic around the filtered Hull estimate.
  10. Generate bullish and bearish regime changes when the Supertrend changes sides.


Each stage solves a different problem.

The Hull projection provides a responsive directional input. The innovation filter decides how much of that input should be trusted. The Supertrend then converts the filtered estimate into a persistent trailing regime.

Historical background

The indicator combines ideas from several areas of technical analysis and signal processing.

Hull Moving Average

The Hull Moving Average was developed by Alan Hull as a method of reducing lag while preserving a smooth output.

Traditional moving averages face a basic trade-off:

  • Short averages respond quickly but contain more noise.
  • Long averages are smoother but react later.


The Hull Moving Average attempts to improve this balance by combining weighted moving averages of different lengths.

Its general construction is:

  • Fast WMA = WMA of price over approximately half the main length.
  • Slow WMA = WMA of price over the full length.
  • Raw Hull = 2 × Fast WMA - Slow WMA.
  • Final Hull = WMA of the Raw Hull over the square root of the main length.


The subtraction stage compensates for some of the delay introduced by the longer average. The final square-root smoothing stage reduces noise in the compensated series.

Recursive estimation and the Kalman-filter principle

The innovation filter is based on the general recursive-estimation framework associated with Kalman filtering.

The Kalman filter was developed by Rudolf E. Kálmán and became widely used in engineering, navigation, aerospace, robotics and control systems.

A recursive estimator typically follows two stages:

  • Predict the current state from the previous state.
  • Correct that prediction using the newest observation.


The correction depends on how uncertain the model is and how reliable the new observation is believed to be.

The difference between the observation and prediction is called the:

Innovation

In this indicator:

  • The observation is the current Hull projection.
  • The prediction is the previous filtered estimate.
  • The innovation is the difference between them.


A large innovation means the Hull projection has moved significantly away from the model’s prior estimate.

A small innovation means the new observation is close to what the model already expected.

Supertrend

Supertrend is a volatility-trailing concept built from an underlying price reference and ATR-based bands.

Its basic structure consists of:

  • An upper band above the reference.
  • A lower band below the reference.
  • One-sided trailing behaviour.
  • A regime switch when price crosses the opposing band.


In a bullish regime, the lower band acts as the active trail.

In a bearish regime, the upper band acts as the active trail.

This indicator modifies the conventional approach in two important ways:

  • The central reference is the innovation-filtered Hull estimate rather than a normal price midpoint.
  • The band multiplier can adapt according to the innovation gate.


Stage 1: Hull projection

The first stage calculates the Hull projection from the selected price source.

The script determines:

  • The full Hull length.
  • A half-length rounded to a valid integer.
  • A square-root length rounded to a valid integer.


It then calculates:

  • Fast WMA = WMA(source, half length)
  • Slow WMA = WMA(source, full length)
  • Raw Hull = 2 × Fast WMA - Slow WMA
  • Hull Projection = WMA(Raw Hull, square-root length)


The Hull projection is more responsive than many conventional moving averages of a similar nominal length.

However, responsiveness also means it can react to short-lived movements. For that reason, the Hull projection is not used directly as the final trend line. It becomes the observation supplied to the innovation filter.

Hull Length

The Hull Length controls the underlying trend horizon.

Lower values:

  • React more quickly.
  • Follow shorter trend legs.
  • Produce more local changes.
  • Admit more short-term noise into the next stage.


Higher values:

  • Produce a smoother projection.
  • Focus on broader trend structure.
  • Respond later to sudden reversals.


The Hull Length therefore controls the basic timescale of the model before any adaptive filtering or Supertrend logic is applied.

Stage 2: Volatility model

The innovation must be interpreted relative to current market conditions.

A movement of 10 points may be large in a quiet market but insignificant in a highly volatile market.

The indicator therefore normalises the innovation using a selectable volatility estimate.

Three modes are available:

  • ATR
  • Standard Deviation
  • Blend


ATR mode

Average True Range measures recent trading range while accounting for gaps from the previous close.

True Range is based on the greatest of:

  • Current high minus current low.
  • Absolute current high minus previous close.
  • Absolute current low minus previous close.


ATR then smooths True Range across the selected Volatility Length.

ATR is useful because it measures the realised movement range of the instrument.

It is sensitive to:

  • Wide candles.
  • Price gaps.
  • Range expansion.


Standard Deviation mode

Standard deviation measures how widely the Hull projection has varied around its recent mean.

It is a dispersion measure rather than a range measure.

Standard deviation responds to:

  • Variation in the selected series.
  • Directional displacement.
  • Changes in the distribution of the filtered input.


While ATR focuses on bar range, standard deviation focuses on dispersion of the Hull series itself.

Blend mode

Blend mode calculates the average of ATR and standard deviation.

Conceptually:

  • Blended Volatility = (ATR + Standard Deviation) / 2


This provides a combined estimate incorporating:

  • Observed range behaviour.
  • Statistical dispersion of the Hull projection.


Neither measure is universally superior. The blend attempts to reduce dependence on only one definition of volatility.

Volatility Length

The Volatility Length controls how quickly the normalisation baseline changes.

Lower values:

  • React faster to recent volatility changes.
  • Cause the innovation score to adjust more quickly.
  • May make the gate less stable.


Higher values:

  • Produce a slower volatility baseline.
  • Create more consistent normalisation.
  • May respond later when volatility changes abruptly.


The volatility estimate is prevented from falling below the instrument’s minimum tick size, avoiding unstable division during extremely quiet periods.

Stage 3: Innovation calculation

The filter begins each bar with a prediction.

In this implementation, the prediction is the previous filtered estimate.

The innovation is:

  • Innovation = Hull Projection - Previous Filter Estimate


The innovation may be positive or negative.

A positive value means the Hull projection is above the prior estimate.

A negative value means it is below the prior estimate.

The absolute innovation measures the size of the disagreement regardless of direction.

Innovation score

The raw innovation is normalised by current volatility:

  • Innovation Score = |Innovation| / Volatility


This expresses the new movement in volatility units.

For example:

  • A score of 0.25 means the innovation is approximately one quarter of the selected volatility measure.
  • A score of 1.00 means it is approximately equal to that volatility measure.
  • A score above 1.00 means the change is larger than the current volatility baseline.


The score is dimensionless, making it more comparable across instruments and price scales.

This is the key quantity used to determine whether the filter should remain cautious or become more responsive.

Stage 4: Logistic innovation gate

The innovation score is passed through a logistic function.

The logistic function has the form:

  • Gate = 1 / (1 + exp(-x))


Its output remains between zero and one.

In the indicator, the gate input depends on:

  • Innovation Score
  • Innovation Threshold
  • Gate Sharpness


Conceptually:

  • Gate Input = Sharpness × (Score - Threshold)


When the score is below the threshold:

  • The gate approaches zero.
  • The filter treats the new Hull movement cautiously.


When the score rises above the threshold:

  • The gate moves toward one.
  • The filter becomes more willing to admit the new movement.


The logistic function creates a smooth transition rather than a hard on/off switch.

This is important because a binary threshold could cause abrupt changes whenever the score moves slightly above or below one exact value.

Innovation Threshold

The Innovation Threshold determines where the gate begins moving from a quiet state toward an active state.

Higher values:

  • Require a larger volatility-normalised innovation.
  • Keep the filter conservative for longer.
  • Reject more moderate changes.


Lower values:

  • Open the gate sooner.
  • Increase responsiveness.
  • Allow smaller movements to influence the estimate.


The threshold should be interpreted in relation to the selected volatility model.

Gate Sharpness

Gate Sharpness controls how rapidly the logistic gate transitions around the threshold.

Lower sharpness:

  • Creates a gradual transition.
  • Produces a wider intermediate region.
  • Changes responsiveness smoothly.


Higher sharpness:

  • Makes the gate behave more like a hard switch.
  • Creates a faster transition near the threshold.
  • Produces stronger separation between quiet and active states.


An extremely high value can make the adaptive behaviour abrupt, while a low value may reduce the distinction between quiet and active conditions.

Admission Floor

The gate is converted into an admission value.

The Admission Floor ensures that the filter never completely ignores the Hull projection.

The admission calculation is:

  • Admission = Floor + (1 - Floor) × Gate


When the gate is near zero:

  • Admission remains near the selected floor.


When the gate is near one:

  • Admission approaches one.


A lower floor creates stronger filtering during quiet conditions.

A higher floor keeps the model more responsive even when innovation is small.

This setting prevents the estimator from becoming fully frozen.

Stage 5: Adaptive recursive update

The admission and gate values modify two uncertainty terms:

  • Measurement noise.
  • Process noise.


These terms control how the recursive filter balances its existing estimate against the new Hull observation.

Measurement Noise

Measurement Noise represents uncertainty in the incoming Hull projection.

Higher measurement noise tells the filter:

  • Trust the new observation less.
  • Remain closer to the previous estimate.
  • Produce more smoothing.


Lower measurement noise tells the filter:

  • Trust the Hull projection more.
  • Correct the estimate more aggressively.
  • Become more responsive.


The script adapts measurement noise using the admission value:

  • Adaptive Measurement Noise = Base Measurement Noise / Admission


When admission is low:

  • Measurement noise increases.
  • The new Hull movement receives less weight.


When admission is high:

  • Measurement noise moves closer to its base value.
  • The filter becomes more receptive.


Process Noise

Process Noise represents uncertainty in the filter’s current state model.

Higher process noise tells the estimator:

  • The underlying trend may be changing.
  • The previous estimate may no longer be reliable.
  • Allow faster adaptation.


Lower process noise tells it:

  • Assume the existing state remains relatively stable.
  • Change the estimate more cautiously.


The script increases process noise as the gate opens:

  • Adaptive Process Noise = Base Process Noise × (1 + Process Boost × Gate)


This creates a two-sided adaptive response.

During quiet conditions:

  • Measurement noise increases.
  • Process noise remains closer to its base level.
  • The filter resists small changes.


During high-innovation conditions:

  • Measurement noise decreases toward its normal value.
  • Process noise increases.
  • The filter becomes substantially more responsive.


Process Boost

Process Boost controls how strongly the process uncertainty expands when the gate opens.

Higher values:

  • Allow faster response to large innovations.
  • Increase the filter gain during active movement.
  • Can make the model more sensitive after shocks.


Lower values:

  • Keep behaviour closer to the base recursive filter.
  • Produce more controlled adaptation.
  • May respond more slowly to genuine regime changes.


Covariance and filter gain

The recursive filter maintains an internal covariance representing uncertainty in its estimate.

Before the new observation is processed:

  • Predicted Covariance = Previous Covariance + Adaptive Process Noise


The filter gain is then:

  • Gain = Predicted Covariance / (Predicted Covariance + Adaptive Measurement Noise)


The gain remains between zero and one.

A low gain means:

  • The previous estimate receives more influence.
  • The Hull observation receives less influence.


A high gain means:

  • The filter moves more strongly toward the current Hull projection.


The new estimate is:

  • Filtered Hull = Prediction + Gain × Innovation


The covariance is then updated for the next bar.

Why the filter is innovation-gated

A normal recursive filter may use constant process and measurement noise settings.

That means its responsiveness is broadly fixed.

This indicator changes those terms according to the size of the innovation.

The model therefore behaves differently under two broad conditions.

Quiet condition

When the Hull projection remains close to the prior estimate relative to volatility:

  • Innovation score is low.
  • Gate remains mostly closed.
  • Admission is limited.
  • Adaptive measurement noise rises.
  • Process noise remains lower.
  • Filter gain falls.
  • The filtered Hull changes more slowly.


Active condition

When the Hull projection moves meaningfully away from the prior estimate:

  • Innovation score rises.
  • Gate opens.
  • Admission approaches one.
  • Measurement noise decreases.
  • Process noise increases.
  • Filter gain rises.
  • The estimate adapts more quickly.


This allows the model to filter small movement without applying the same degree of resistance to every large move.

Stage 6: Innovation-adaptive Supertrend bands

The filtered Hull becomes the centre of the Supertrend calculation.

The initial raw bands are:

  • Upper Band = Filtered Hull + Factor × ATR
  • Lower Band = Filtered Hull - Factor × ATR


The Supertrend uses its own ATR Period, which is independent of the volatility length used by the innovation score.

This distinction is important:

  • Innovation volatility determines whether the filter should admit new information.
  • Supertrend ATR determines the distance of the trailing regime bands.


Adaptive band factor

When Adapt Bands With Innovation is enabled, the Supertrend factor changes according to the gate.

The adaptive factor is:

  • Adaptive Factor = Base Factor × [1 + Quiet Expansion × (1 - Gate)]


When the gate is near one:

  • The adaptive factor approaches the base factor.
  • Bands become relatively tighter.
  • The Supertrend can respond more readily.


When the gate is near zero:

  • The factor expands above its base value.
  • Bands become wider.
  • Minor price fluctuations are less likely to cause a reversal.


This creates coordinated adaptation:

  • Quiet conditions produce stronger filtering and wider bands.
  • Active conditions produce faster filtering and narrower bands.


The same innovation state therefore influences both the centre estimate and the trailing threshold.

Quiet Band Expansion

Quiet Band Expansion controls how much wider the Supertrend factor becomes when the innovation gate is closed.

A value of zero disables the expansion effect even if band adaptation is enabled.

Higher values:

  • Create wider bands during low-innovation conditions.
  • Reduce quiet-market reversals.
  • Delay new signals until price moves further.


Lower values:

  • Keep the adaptive factor closer to its base setting.
  • Allow more responsive regime changes.


The expansion is greatest when the gate is near zero and fades as the gate opens.

Supertrend trailing logic

The raw upper and lower bands are converted into one-sided trailing bands.

The lower band is prevented from moving downward while price remains above its previous value.

The upper band is prevented from moving upward while price remains below its previous value.

This ratcheting behaviour creates:

  • A rising lower trail during bullish conditions.
  • A falling upper trail during bearish conditions.


A trend change occurs when price crosses the active opposing boundary.

In a bullish regime:

  • The lower band is the active Supertrend.


In a bearish regime:

  • The upper band is the active Supertrend.


ATR Period and Factor

ATR Period

Controls the volatility horizon used to construct the Supertrend bands.

Lower values:

  • React faster to current range changes.
  • Produce more variable band widths.


Higher values:

  • Produce a steadier range estimate.
  • Respond more slowly to sudden volatility changes.


Factor

Controls the base distance between the filtered Hull and the Supertrend bands.

Lower factors:

  • Create tighter bands.
  • Produce earlier regime changes.
  • Increase sensitivity to noise.


Higher factors:

  • Create wider bands.
  • Produce fewer regime changes.
  • Increase confirmation delay.


When adaptation is enabled, the selected factor acts as the minimum or active-condition factor. Quiet conditions may expand it further.

Trend signals

The indicator generates a long signal when the Supertrend changes into its bullish state.

It generates a short signal when the Supertrend changes into its bearish state.

The signal requires the completed calculation chain:

  • Hull projection.
  • Innovation filtering.
  • Adaptive band factor.
  • Supertrend regime change.


The plotted symbols are:

  • 𝕃 for a bullish transition.
  • 𝕊 for a bearish transition.


These markers identify regime changes. They are not complete trading systems and do not define stop placement, position size or profit targets.

Innovation impulse alert

The script also includes an Innovation Impulse alert.

This occurs when the innovation score crosses above the selected Innovation Threshold.

It indicates that:

  • The difference between the Hull projection and the recursive estimate has become large relative to volatility.
  • The gate is entering a more active state.
  • The filter is beginning to admit new information more aggressively.


An innovation impulse does not necessarily produce an immediate Supertrend reversal.

It can occur:

  • During acceleration within an existing trend.
  • At the beginning of a possible regime change.
  • During a temporary volatility shock.


It is therefore best interpreted as an information-arrival event rather than an automatic long or short signal.

Visual components

Hull Projection

Displays the unfiltered Hull Moving Average input.

This is useful for comparing:

  • The responsive raw projection.
  • The innovation-filtered result.
  • The final Supertrend.


The Hull projection will generally react first.

Filtered Hull

Displays the recursive innovation-gated estimate.

The distance between the Hull projection and filtered Hull helps illustrate the filter’s current behaviour.

During quiet conditions:

  • The filtered Hull may lag behind small changes.


During meaningful innovations:

  • It can move more rapidly toward the Hull projection.


IGH Supertrend

Displays the final volatility trail around the filtered Hull.

It is the primary regime output.

The line is coloured according to the persistent bullish or bearish trend state.

Candle colouring

Candles may be coloured according to the active Supertrend regime:

  • Bullish colour during the long regime.
  • Bearish colour during the short regime.


This provides immediate chart-wide directional context.

How to interpret the indicator

Bullish regime

A bullish regime indicates that price has crossed into the bullish side of the adaptive Supertrend structure.

The active trail is positioned below the market and can be interpreted as:

  • A dynamic trend boundary.
  • A possible pullback reference.
  • A regime invalidation guide.


Bearish regime

A bearish regime indicates that price has crossed into the bearish side of the adaptive structure.

The active trail is positioned above the market and may act as:

  • Dynamic resistance.
  • A rally reference.
  • A bearish regime invalidation guide.


Low innovation score

A low score means the current Hull movement is small relative to volatility.

The model responds by:

  • Filtering more strongly.
  • Reducing admission.
  • Using a lower recursive gain.
  • Potentially expanding the Supertrend bands.


This is intended to reduce reactions to small fluctuations.

High innovation score

A high score means the Hull projection has changed substantially relative to volatility.

The model responds by:

  • Opening the gate.
  • Increasing admission.
  • Increasing process uncertainty.
  • Raising the filter gain.
  • Reducing quiet-condition band expansion.


This allows a faster response when the incoming information is more significant.

Rising Hull without a trend flip

The Hull projection may turn before the filtered Hull or Supertrend.

This means:

  • The fast input has changed.
  • The adaptive filter has not yet admitted enough of that change.
  • The Supertrend boundary has not yet been crossed.


This is not an error. It demonstrates the staged confirmation design.

Innovation impulse without trend reversal

An innovation impulse can occur without a long or short signal.

This may indicate:

  • Acceleration in the existing trend.
  • A volatility shock.
  • An attempted reversal that has not crossed the Supertrend.


The Supertrend remains the final regime layer.

How to use the indicator

1. Trend regime filter

Use the active Supertrend state to filter another entry method:

  • Prioritise long setups during bullish regimes.
  • Prioritise short setups during bearish regimes.


2. Pullback framework

In a bullish regime, pullbacks toward the Supertrend may represent tests of the active trend boundary.

In a bearish regime, rallies toward the Supertrend may represent resistance tests.

A touch alone does not guarantee continuation.

3. Innovation monitoring

The innovation alert can be used to identify when the model detects a meaningful change in its input.

This may help direct attention to:

  • Fresh acceleration.
  • Breakout attempts.
  • Possible trend transitions.


4. Confirmation framework

The three optional lines can be read as a progression:

  • Hull projection changes first.
  • Filtered Hull adapts according to innovation.
  • Supertrend confirms the final regime.


This allows users to study the difference between early movement and confirmed structure.

5. Trailing risk reference

The final Supertrend may be used as a visual trailing reference.

However, it does not account for:

  • Account size.
  • Position size.
  • Slippage.
  • Liquidity.
  • Maximum acceptable loss.


It should not replace a complete risk-management process.

Parameter interaction

The settings should not be tuned independently without considering how they interact.

More responsive configuration

A more responsive setup may use:

  • Lower Hull Length.
  • Lower Innovation Threshold.
  • Higher Admission Floor.
  • Lower Measurement Noise.
  • Higher Process Noise or Process Boost.
  • Lower Supertrend Factor.
  • Lower Quiet Band Expansion.


This will generally produce earlier changes but more noise.

More conservative configuration

A more conservative setup may use:

  • Higher Hull Length.
  • Higher Innovation Threshold.
  • Lower Admission Floor.
  • Higher Measurement Noise.
  • Lower Process Boost.
  • Higher Supertrend Factor.
  • Higher Quiet Band Expansion.


This will generally create fewer transitions but greater delay.

Balanced interpretation

Changing several settings in the same direction can produce an extreme result.

For example:

  • A very low threshold, high admission floor, large process boost and tight Supertrend factor may overreact.
  • A very high threshold, low admission floor, high measurement noise and wide Supertrend factor may respond excessively slowly.


The appropriate balance depends on the instrument, timeframe and intended holding period.

How this differs from a standard Hull trend indicator

A standard Hull trend indicator normally uses:

  • Hull slope.
  • Price crossing the Hull.
  • A fast and slow Hull comparison.


This indicator instead:

  • Uses the Hull as an observation.
  • Measures its disagreement with a recursive estimate.
  • Normalises that disagreement by volatility.
  • Adapts the filter gain according to the innovation.
  • Applies a final Supertrend regime around the filtered result.


The Hull is therefore the beginning of the model, not the final signal.

How this differs from a fixed Kalman-style filter

A fixed recursive filter uses constant uncertainty settings.

Innovation-Gated Hull Supertrend adapts both measurement and process uncertainty according to the normalised innovation.

This means:

  • Small innovations are filtered more heavily.
  • Large innovations receive greater admission.


The response speed is therefore state dependent.

How this differs from a standard Supertrend

A standard Supertrend is commonly centred around a raw price reference such as HL2.

This indicator uses:

  • A responsive Hull projection.
  • An innovation-gated recursive estimate of that projection.
  • An optionally adaptive band multiplier.


The Supertrend is therefore built around a filtered trend estimate rather than raw price alone.

Strengths

  • Combines responsive and stable trend-processing stages.
  • Normalises new movement by current volatility.
  • Uses a smooth gate rather than a binary threshold.
  • Adapts measurement and process uncertainty.
  • Can widen trend bands during quiet conditions.
  • Can respond more rapidly to meaningful innovations.
  • Separates early movement from final regime confirmation.
  • Supports ATR, standard deviation and blended volatility models.
  • Provides trend, impulse and visual comparison outputs.


Limitations

  • The indicator is reactive rather than predictive.
  • Strong filtering can delay genuine reversals.
  • Responsive settings can increase whipsaws.
  • A large innovation may represent a temporary shock rather than a lasting trend.
  • Supertrend signals still depend on ATR and price crossing behaviour.
  • Parameter combinations can materially change the model’s behaviour.
  • The indicator may require different settings across assets and timeframes.
  • The recursive state develops from the available chart history.
  • Values can update while the current real-time candle is still forming.


Causality and real-time behaviour

The calculation uses current and historical observations without future-looking references.

However, like most indicators calculated on live candles, the current bar’s values can change before the candle closes.

This means:

  • The Hull projection may move intrabar.
  • The innovation score and gate may change intrabar.
  • A Supertrend transition may appear and disappear before confirmation.


Users requiring confirmed signals should evaluate the indicator at bar close or configure alerts accordingly.

Alerts

The indicator provides three alert conditions:

  • IGH ST Long: the adaptive Supertrend changes into a bullish regime.
  • IGH ST Short: the adaptive Supertrend changes into a bearish regime.
  • IGH Impulse: the normalised innovation score crosses above the selected threshold.


The impulse alert identifies increased information flow into the filter. It does not specify direction by itself because the innovation score uses the absolute size of the prediction error.

Summary

Innovation-Gated Hull Supertrend combines a responsive Hull Moving Average, a volatility-normalised innovation gate, an adaptive recursive filter and a volatility-trailing Supertrend.

The Hull projection provides an early estimate of directional movement. The recursive filter compares that projection with its prior state and measures the resulting innovation relative to ATR, standard deviation or a blend of both.

A logistic gate then determines how strongly the new movement should be admitted. During quiet conditions, the filter becomes more conservative and the Supertrend bands can expand. During meaningful displacement, the filter becomes more responsive and the bands move closer to their base width.

The final Supertrend converts the adaptive estimate into a persistent bullish or bearish regime.

The indicator is designed to make responsiveness conditional rather than fixed: small movements receive stronger filtering, while larger volatility-adjusted innovations are allowed to influence the model more quickly.

คำจำกัดสิทธิ์ความรับผิดชอบ

ข้อมูลและบทความไม่ได้มีวัตถุประสงค์เพื่อก่อให้เกิดกิจกรรมทางการเงิน, การลงทุน, การซื้อขาย, ข้อเสนอแนะ หรือคำแนะนำประเภทอื่น ๆ ที่ให้หรือรับรองโดย TradingView อ่านเพิ่มเติมใน ข้อกำหนดการใช้งาน