MOMENTUMDIVERGENZE Гайд по трейдингу
Обновлено: July 22, 2026
The Momentum Divergenze — это квантитативный инструмент технического анализа. Momentum Divergenze (Mom DIV) Ported from Pine Script by Marco Refactored to Golden Standard architecture.
Что показывает индикатор?
- Структура рынка и импульс: Визуализирует преобладающие направления тренда и ключевые зоны разворота.
- Сигналы ПОКУПКА / ПРОДАЖА: Отмечает подтвержденные точки входа и выхода на основе алгоритмических правил.
- Динамические границы: Предоставляет адаптивные уровни для управления рисками и целями сделки.
Ключевые настройки
- Momentum Длина (
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. - Период анализа (High/Low) (
l): Controls the calculation period and sensitivity for market detection. - BB Длина (
lengthb): Controls the calculation period and sensitivity for market detection. - BB Множитель (
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. - Бычий Divergence (Mom up / Price down) (
is_div_bull): Controls the calculation period and sensitivity for market detection. - Медвежий 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. - Медвежий BG Condition (
is_bg_red): Controls the calculation period and sensitivity for market detection. - Бычий 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.
Как использовать параметры стратегии (Condition Source)
В модуле Strategy Tester этот индикатор можно использовать как прямой источник сигналов, так и в качестве фильтра состояния рынка.
1. События сигналов
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- Бычий Divergence (Mom up / Price down) event signal.is_div_bear- Медвежий 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- Медвежий BG Condition event signal.is_bg_green- Бычий BG Condition event signal.
2. Фильтры и торговые уровни
len- Momentum Длина 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- Период анализа (High/Low) value used for structural qualification or thresholds.lengthb- BB Длина value used for structural qualification or thresholds.mult- BB Множитель 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.
Пример стратегии: Вход в лонг, когда buySignal == true и trendFilter == 1, что гарантирует соответствие сделок основному импульсу рынка.