DYNAMIC PRICE OSCILLATOR Гайд по трейдингу
Обновлено: July 22, 2026
The Dynamic Price Oscillator + Signal EMA — это квантитативный инструмент технического анализа. DYNAMIC_PRICE_OSCILLATOR Dynamic Price Oscillator + Signal EMA Ported from TradingView PineScript (Zeiierman) to GTW custom indicators.
Что показывает индикатор?
- Структура рынка и импульс: Визуализирует преобладающие направления тренда и ключевые зоны разворота.
- Сигналы ПОКУПКА / ПРОДАЖА: Отмечает подтвержденные точки входа и выхода на основе алгоритмических правил.
- Динамические границы: Предоставляет адаптивные уровни для управления рисками и целями сделки.
Ключевые настройки
- Длина (
length): Controls the calculation period and sensitivity for market detection. - Smoothing Factor (
smoothFactor): Controls the calculation period and sensitivity for market detection. - Signal EMA Длина (
emaДлина): Controls the calculation period and sensitivity for market detection. - Dynamic Price Oscillator (
osc): Controls the calculation period and sensitivity for market detection. - Signal EMA (
signalEma): Controls the calculation period and sensitivity for market detection. - Dynamic Mean (
mean): Controls the calculation period and sensitivity for market detection. - Bollinger High (
bbHigh): Controls the calculation period and sensitivity for market detection. - Expanded Bollinger High (
bbHighExp): Controls the calculation period and sensitivity for market detection. - Bollinger Low (
bbLow): Controls the calculation period and sensitivity for market detection. - Expanded Bollinger Low (
bbLowExp): Controls the calculation period and sensitivity for market detection. - Dynamic Price Oscillator (
osc): Controls the calculation period and sensitivity for market detection. - Signal EMA (
signalEma): Controls the calculation period and sensitivity for market detection. - Dynamic Mean (
mean): Controls the calculation period and sensitivity for market detection. - Bollinger High (
bbHigh): Controls the calculation period and sensitivity for market detection. - Expanded Bollinger High (
bbHighExp): Controls the calculation period and sensitivity for market detection. - Bollinger Low (
bbLow): Controls the calculation period and sensitivity for market detection. - Expanded Bollinger Low (
bbLowExp): Controls the calculation period and sensitivity for market detection.
Как использовать параметры стратегии (Condition Source)
В модуле Strategy Tester этот индикатор можно использовать как прямой источник сигналов, так и в качестве фильтра состояния рынка.
1. События сигналов
buySignal- Срабатывает, когда a bullish market condition is confirmed.sellSignal- Срабатывает, когда a bearish market condition is confirmed.signalDir- Outputs1for bullish,-1for bearish, and0when neutral.
2. Фильтры и торговые уровни
length- Длина value used for structural qualification or thresholds.smoothFactor- Smoothing Factor value used for structural qualification or thresholds.emaДлина- Signal EMA Длина value used for structural qualification or thresholds.osc- Dynamic Price Oscillator value used for structural qualification or thresholds.signalEma- Signal EMA value used for structural qualification or thresholds.mean- Dynamic Mean value used for structural qualification or thresholds.bbHigh- Bollinger High value used for structural qualification or thresholds.bbHighExp- Expanded Bollinger High value used for structural qualification or thresholds.bbLow- Bollinger Low value used for structural qualification or thresholds.bbLowExp- Expanded Bollinger Low value used for structural qualification or thresholds.osc- Dynamic Price Oscillator value used for structural qualification or thresholds.signalEma- Signal EMA value used for structural qualification or thresholds.mean- Dynamic Mean value used for structural qualification or thresholds.bbHigh- Bollinger High value used for structural qualification or thresholds.bbHighExp- Expanded Bollinger High value used for structural qualification or thresholds.bbLow- Bollinger Low value used for structural qualification or thresholds.bbLowExp- Expanded Bollinger Low value used for structural qualification or thresholds.
Пример стратегии: Вход в лонг, когда buySignal == true и trendFilter == 1, что гарантирует соответствие сделок основному импульсу рынка.