DYNAMIC STRUCTURE INDICATOR Guia de trading
Ultima actualizacion: July 22, 2026
The Dynamic Structure Indicator es una herramienta cuantitativa de análisis técnico. Dynamic Structure Indicator (DSI) Based on user-provided PineScript. Detects fractal swing highs/lows and draws zones.
¿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
- ATR Movement Required (
atrMovement): Controls the calculation period and sensitivity for market detection. - High/Low Lookback (
lookback): Controls the calculation period and sensitivity for market detection. - Max Zone Size (× ATR) (
maxZoneSize): Controls the calculation period and sensitivity for market detection. - Zone Update Count Before Reset (
newStructureReset): Controls the calculation period and sensitivity for market detection. - Draw Previous Structure (
drawPrevLoc): Controls the calculation period and sensitivity for market detection. - Resistance Zone Fill (
resFill): Controls the calculation period and sensitivity for market detection. - Resistance Zone Border (
resLine): Controls the calculation period and sensitivity for market detection. - Resistance Broken Fill (
resBrokenFill): Controls the calculation period and sensitivity for market detection. - Resistance Broken Border (
resBrokenLine): Controls the calculation period and sensitivity for market detection. - Support Zone Fill (
supFill): Controls the calculation period and sensitivity for market detection. - Support Zone Border (
supLine): Controls the calculation period and sensitivity for market detection. - Support Broken Fill (
supBrokenFill): Controls the calculation period and sensitivity for market detection. - Support Broken Border (
supBrokenLine): Controls the calculation period and sensitivity for market detection. - Prev Resistance Zone (Support) (
prevResFill): Controls the calculation period and sensitivity for market detection. - Prev Support Zone (Resistance) (
prevSupFill): Controls the calculation period and sensitivity for market detection. - Resistance Alert (
alertResistance): Controls the calculation period and sensitivity for market detection. - Support Alert (
alertSupport): Controls the calculation period and sensitivity for market detection. - Resistance Breakout (
alertResistanceBO): Controls the calculation period and sensitivity for market detection. - Support Breakout (
alertSupportBO): Controls the calculation period and sensitivity for market detection. - Resistance Top (
res1): Controls the calculation period and sensitivity for market detection. - Support Low (
sup1): Controls the calculation period and sensitivity for market detection. - Hit Resistance Zone (
alertResistance): Controls the calculation period and sensitivity for market detection. - Hit Support Zone (
alertSupport): Controls the calculation period and sensitivity for market detection. - Resistance Breakout (
alertResistanceBO): Controls the calculation period and sensitivity for market detection. - Support Breakout (
alertSupportBO): 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
alertResistance- Resistance Alert event signal.alertSupport- Support Alert event signal.alertResistanceBO- Resistance Breakout event signal.alertSupportBO- Support Breakout event signal.alertResistance- Hit Resistance Zone event signal.alertSupport- Hit Support Zone event signal.alertResistanceBO- Resistance Breakout event signal.alertSupportBO- Support Breakout event signal.
2. Filtros y niveles de trading
atrMovement- ATR Movement Required value used for structural qualification or thresholds.lookback- High/Low Lookback value used for structural qualification or thresholds.maxZoneSize- Max Zone Size (× ATR) value used for structural qualification or thresholds.newStructureReset- Zone Update Count Before Reset value used for structural qualification or thresholds.drawPrevLoc- Draw Previous Structure value used for structural qualification or thresholds.res1- Resistance Top value used for structural qualification or thresholds.sup1- Support 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.