이 전략은 동적 가격 트렌드 추적을 통해 구매 및 판매 결정을 내리는 파라볼릭 SAR (Stop and Reverse) 인디케이터를 기반으로 한 포괄적인 거래 시스템이다. 이 시스템은 다른 시장 조건에서 가격 움직임을 포착하기 위해 장기 및 단기 거래 메커니즘을 결합하여 고전적인 트렌드 추적 방법을 채택합니다. 전략의 핵심은 트렌드 전환 지점을 식별하고 적절한 시간에 위치 작업을 수행하기 위해 가격과 SAR 지표 교차를 사용하는 데 있습니다.
이 전략은 다음과 같은 핵심 원칙에 기초합니다.
이것은 고전적인 기술적 지표에 기반한 완전한 거래 전략으로 체계적이고 객관적인 특징이 특징입니다. 적절한 매개 변수 설정 및 전략 최적화를 통해이 시스템은 트렌딩 시장에서 좋은 성능을 얻을 수 있습니다. 그러나 사용자는 전략의 한계를 완전히 인식해야합니다. 특히 불안정한 시장에서 잠재적으로 최적 이하의 성능입니다. 적절한 위험 관리 조치와 결합하여 라이브 구현 전에 철저한 백테스팅과 매개 변수 최적화를 수행하는 것이 좋습니다.
/*backtest start: 2019-12-23 08:00:00 end: 2024-11-25 08:00:00 period: 1d basePeriod: 1d exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}] */ //@version=5 strategy("LTJ Strategy", overlay=true) // Parámetros del Parabolic SAR start = input(0.02, title="Start") increment = input(0.02, title="Increment") maximum = input(0.2, title="Maximum") // Calculando el Parabolic SAR sar = ta.sar(start, increment, maximum) // Condiciones para entrar y salir de la posición longCondition = ta.crossunder(sar, close) // Compra cuando el Parabolic SAR cruza por debajo del precio de cierre exitLongCondition = ta.crossover(sar, close) // Venta cuando el Parabolic SAR cruza por encima del precio de cierre // Condiciones para entrar y salir de la posición shortCondition = ta.crossover(sar, close) // Compra cuando el Parabolic SAR cruza por debajo del precio de cierre exitShortCondition = ta.crossunder(sar, close) // Venta cuando el Parabolic SAR cruza por encima del precio de cierre // Ejecutando las órdenes según las condiciones if (longCondition) strategy.entry("Buy", strategy.long) if (exitLongCondition) strategy.close("Buy") // Ejecutar las órdenes de venta en corto if (shortCondition) strategy.entry("Sell", strategy.short) if (exitShortCondition) strategy.close("Sell") // Opcional: Dibujar el Parabolic SAR en el gráfico para visualización // Si el SAR está por debajo del precio, lo pintamos de verde; si está por encima, de rojo colorSar = sar < close ? color.green : color.red plot(sar, style=plot.style_circles, color=colorSar, linewidth=2, title="Parabolic SAR")