Skip to article frontmatterSkip to article content
Site not loading correctly?

This may be due to an incorrect BASE_URL configuration. See the MyST Documentation for reference.

Indicators Description

1. Component Deconstruction

A. Hurst Exponent (Custom Implementation)

This is the strategic core of the script, implemented via a custom variance scaling method rather than a built-in function.

B. Kalman Filter (Custom, 1-D)

This acts as the script’s primary signal line, replacing a traditional moving average to reduce lag while smoothing price.

C. Average True Range (ATR)

This component provides the raw volatility measurement used to calculate the band width.

D. Supertrend Framework (Custom, Adaptive)

This structure provides the dynamic upper and lower bands that serve as the trigger levels.

2. Logic Layering & Confluence

The script’s engine is built on a strict hierarchical filtering model, where each layer processes information from the layer above it, progressively refining the signal and reducing noise.

3. The Execution Engine

The final signal is the result of a clear boolean state machine based on the interaction between the Kalman Filter and the adaptive bands.