DYNAMIC PRICE OSCILLATOR Guia de trading
Ultima actualizacion: July 22, 2026
The Dynamic Price Oscillator + Signal EMA es una herramienta cuantitativa de análisis técnico. DYNAMIC_PRICE_OSCILLATOR Dynamic Price Oscillator + Signal EMA Ported from TradingView PineScript (Zeiierman) to GTW custom indicators.
¿Qué muestra el indicador?
- Estructura del mercado e impulso: Visualiza la dirección de la tendencia dominante y zonas clave de reversión.
- Señales COMPRA / VENTA: Muestra puntos de entrada y salida confirmados según reglas cuantitativas.
- Límites dinámicos: Proporciona niveles adaptativos para gestionar el riesgo y beneficio de las operaciones.
Ajustes clave
- Longitud (
length): Controls the calculation period and sensitivity for market detection. - Smoothing Factor (
smoothFactor): Controls the calculation period and sensitivity for market detection. - Signal EMA Longitud (
emaLongitud): 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.
Cómo usar los parámetros de estrategia (Condition Source)
Dentro del módulo Strategy Tester, este indicador se puede utilizar tanto como fuente directa de señales como filtro del estado del mercado.
1. Eventos de señal
buySignal- Se activa cuando a bullish market condition is confirmed.sellSignal- Se activa cuando a bearish market condition is confirmed.signalDir- Outputs1for bullish,-1for bearish, and0when neutral.
2. Filtros y niveles de trading
length- Longitud value used for structural qualification or thresholds.smoothFactor- Smoothing Factor value used for structural qualification or thresholds.emaLongitud- Signal EMA Longitud 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.
Ejemplo de estrategia: Entrar en Long cuando buySignal es true y trendFilter == 1, asegurando que las operaciones se alineen con el impulso principal.