Esta estrategia es un sistema de negociación cuantitativo que combina el índice de fuerza relativa (RSI) y los promedios móviles (MA) para identificar las tendencias del mercado y las oportunidades de negociación. El sistema también incorpora filtros de volumen y volatilidad para mejorar la confiabilidad de las señales comerciales.
La estrategia emplea un mecanismo de confirmación de dos señales: 1. Capa de confirmación de tendencia: utiliza el cruce de promedio rápido (FastMA) y promedio lento (SlowMA) para determinar las tendencias del mercado. Cuando la línea rápida cruza por encima de la línea lenta, se establece una tendencia alcista; cuando la línea rápida cruza por debajo de la línea lenta, se establece una tendencia bajista. 2. Capa de confirmación de impulso: utiliza el RSI como herramienta de confirmación de impulso. En tendencias alcistas, el RSI debe estar por debajo de 50, lo que indica un potencial ascendente; en tendencias bajistas, el RSI debe estar por encima de 50, lo que indica un potencial descendente. Filtros de negociación: establece umbrales mínimos para el volumen y la volatilidad ATR para filtrar señales con liquidez o volatilidad insuficientes.
Esta estrategia establece un sistema de negociación integral a través del uso integrado de indicadores de tendencia e impulso. Las fortalezas del sistema se encuentran en su mecanismo de confirmación de señales de múltiples capas y en su marco integral de gestión de riesgos. Sin embargo, la aplicación práctica requiere atención al impacto de las condiciones del mercado en el rendimiento de la estrategia y la optimización de parámetros basados en circunstancias reales. A través de la mejora y optimización continuas, esta estrategia tiene el potencial de mantener un rendimiento estable en diferentes entornos de mercado.
/*backtest start: 2024-01-17 00:00:00 end: 2025-01-16 00:00:00 period: 1d basePeriod: 1d exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT","balance":49999}] */ // © Boba2601 //@version=5 strategy("RSI-MA Synergy", overlay=true, margin_long=100, margin_short=100) // === Налаштування індикаторів === length_rsi = input.int(14, title="RSI Period", group="Індикатори") fastMALength = input.int(9, title="Fast MA Length", group="Індикатори") slowMALength = input.int(21, title="Slow MA Length", group="Індикатори") // === Налаштування стоп-лосу і тейк-профіту === useStopLossTakeProfit = input.bool(true, title="Використовувати стоп-лос і тейк-профіт", group="Стоп-лос і Тейк-профіт") stopLossPercent = input.float(2.0, title="Стоп-лос (%)", minval=0.1, step=0.1, group="Стоп-лос і Тейк-профіт") takeProfitPercent = input.float(4.0, title="Тейк-профіт (%)", minval=0.1, step=0.1, group="Стоп-лос і Тейк-профіт") // === Налаштування об'єму та волатильності === useVolumeFilter = input.bool(false, title="Використовувати фільтр об'єму", group="Об'єм та Волатильність") volumeThreshold = input.int(50000, title="Мінімальний об'єм", group="Об'єм та Волатильність") useVolatilityFilter = input.bool(false, title="Використовувати фільтр волатильності", group="Об'єм та Волатильність") atrLength = input.int(14, title="Період ATR для волатильності", group="Об'єм та Волатильність") volatilityThreshold = input.float(1.5, title="Мінімальна волатильність (ATR)", step=0.1, group="Об'єм та Волатильність") // === Розрахунок індикаторів === rsiValue = ta.rsi(close, length_rsi) fastMA = ta.sma(close, fastMALength) slowMA = ta.sma(close, slowMALength) // === Розрахунок об'єму та волатильності === averageVolume = ta.sma(volume, 20) atrValue = ta.atr(atrLength) // === Умови входу в позицію === longCondition = ta.crossover(fastMA, slowMA) and rsiValue < 50 if useVolumeFilter longCondition := longCondition and volume > volumeThreshold if useVolatilityFilter longCondition := longCondition and atrValue > volatilityThreshold shortCondition = ta.crossunder(fastMA, slowMA) and rsiValue > 50 if useVolumeFilter shortCondition := shortCondition and volume > volumeThreshold if useVolatilityFilter shortCondition := shortCondition and atrValue > volatilityThreshold // === Логіка входу та виходу з позиції === if (longCondition) strategy.entry("Long", strategy.long) if (useStopLossTakeProfit) stopLossPrice = close * (1 - stopLossPercent / 100) takeProfitPrice = close * (1 + takeProfitPercent / 100) strategy.exit("Exit Long", "Long", stop = stopLossPrice, limit = takeProfitPrice) if (shortCondition) strategy.entry("Short", strategy.short) if (useStopLossTakeProfit) stopLossPrice = close * (1 + stopLossPercent / 100) takeProfitPrice = close * (1 - takeProfitPercent / 100) strategy.exit("Exit Short", "Short", stop = stopLossPrice, limit = takeProfitPrice) // === Закриття позицій за зворотнім сигналом === if (strategy.position_size > 0 and (ta.crossunder(fastMA, slowMA) or rsiValue > 50)) strategy.close("Long", comment="Закрито по сигналу") if (strategy.position_size < 0 and (ta.crossover(fastMA, slowMA) or rsiValue < 50)) strategy.close("Short", comment="Закрито по сигналу")