MOMENTUMDIVERGENZE Trading Guide
Last updated: July 22, 2026
The Momentum Divergenze is a quantitative technical analysis tool. Momentum Divergenze (Mom DIV) Ported from Pine Script by Marco Refactored to Golden Standard architecture.
What does the indicator show?
- Market Structure & Momentum: Visualizes prevailing trend directions and key reversal zones.
- BUY / SELL Signals: Highlights confirmed entry and exit opportunities based on quantitative rules.
- Dynamic Boundaries: Provides adaptive levels for managing trade risk and reward expectations.
Key Settings
- Momentum Length (
len): Controls the calculation period and sensitivity for market detection. - Source (
src): Controls the calculation period and sensitivity for market detection. - Use BB Peak Detection (
bo): Controls the calculation period and sensitivity for market detection. - Show Background Color (
sb): Controls the calculation period and sensitivity for market detection. - Lookback Period (High/Low) (
l): Controls the calculation period and sensitivity for market detection. - BB Length (
lengthb): Controls the calculation period and sensitivity for market detection. - BB Multiplier (
mult): Controls the calculation period and sensitivity for market detection. - Momentum (
mom): Controls the calculation period and sensitivity for market detection. - Mom Up/Price Down (
vvu): Controls the calculation period and sensitivity for market detection. - Mom Down/Price Up (
vvd): Controls the calculation period and sensitivity for market detection. - Highest Price Signal (
coh): Controls the calculation period and sensitivity for market detection. - Lowest Price Signal (
col): Controls the calculation period and sensitivity for market detection. - BB Peak (
con1): Controls the calculation period and sensitivity for market detection. - Div Bull (
is_div_bull): Controls the calculation period and sensitivity for market detection. - Div Bear (
is_div_bear): Controls the calculation period and sensitivity for market detection. - Peak High (
is_peak_high): Controls the calculation period and sensitivity for market detection. - Peak Low (
is_peak_low): Controls the calculation period and sensitivity for market detection. - BG Red (
is_bg_red): Controls the calculation period and sensitivity for market detection. - BG Green (
is_bg_green): Controls the calculation period and sensitivity for market detection. - Momentum (
mom): Controls the calculation period and sensitivity for market detection. - Bullish Divergence (Mom up / Price down) (
is_div_bull): Controls the calculation period and sensitivity for market detection. - Bearish Divergence (Mom down / Price up) (
is_div_bear): Controls the calculation period and sensitivity for market detection. - BB Peak High (Orange) (
is_peak_high): Controls the calculation period and sensitivity for market detection. - BB Peak Low (Lime) (
is_peak_low): Controls the calculation period and sensitivity for market detection. - Bearish BG Condition (
is_bg_red): Controls the calculation period and sensitivity for market detection. - Bullish BG Condition (
is_bg_green): Controls the calculation period and sensitivity for market detection. - Highest Price Cross Value (
coh): Controls the calculation period and sensitivity for market detection. - Lowest Price Cross Value (
col): Controls the calculation period and sensitivity for market detection.
How to use Strategy Parameters (Condition Source)
Within the Strategy Tester module, this indicator can be used both as a direct signal source and as a market-state filter.
1. Signal Events
is_div_bull- Div Bull event signal.is_div_bear- Div Bear event signal.is_peak_high- Peak High event signal.is_peak_low- Peak Low event signal.is_bg_red- BG Red event signal.is_bg_green- BG Green event signal.is_div_bull- Bullish Divergence (Mom up / Price down) event signal.is_div_bear- Bearish Divergence (Mom down / Price up) event signal.is_peak_high- BB Peak High (Orange) event signal.is_peak_low- BB Peak Low (Lime) event signal.is_bg_red- Bearish BG Condition event signal.is_bg_green- Bullish BG Condition event signal.
2. Filters and Trade Levels
len- Momentum Length value used for structural qualification or thresholds.src- Source value used for structural qualification or thresholds.bo- Use BB Peak Detection value used for structural qualification or thresholds.sb- Show Background Color value used for structural qualification or thresholds.l- Lookback Period (High/Low) value used for structural qualification or thresholds.lengthb- BB Length value used for structural qualification or thresholds.mult- BB Multiplier value used for structural qualification or thresholds.mom- Momentum value used for structural qualification or thresholds.vvu- Mom Up/Price Down value used for structural qualification or thresholds.vvd- Mom Down/Price Up value used for structural qualification or thresholds.coh- Highest Price Signal value used for structural qualification or thresholds.col- Lowest Price Signal value used for structural qualification or thresholds.con1- BB Peak value used for structural qualification or thresholds.mom- Momentum value used for structural qualification or thresholds.coh- Highest Price Cross Value value used for structural qualification or thresholds.col- Lowest Price Cross Value value used for structural qualification or thresholds.
Strategy Example: Enter Long when buySignal is true and trendFilter == 1, ensuring trades align with dominant momentum.