이 전략은 SMA 지표에 기반한 간단한 이중 추진 전략을 구축합니다. 가격이 20 기간 최고 SMA를 넘을 때 길게 가고 가격이 20 기간 최저 SMA를 넘을 때 짧게됩니다. 스톱 손실 출구도 설정됩니다.
이 전략은 거래 방향을 결정하기 위해 가장 높은 가격과 가장 낮은 낮은 가격의 20 기간 SMA를 사용합니다. 가격이 가장 높은 SMA를 넘으면 상승 추세로 간주되므로 길게 이동합니다. 가격이 가장 낮은 SMA를 넘으면 하락 추세로 간주되므로 짧게 이동합니다.
구체적으로, 전략은 먼저 최고 최고 및 최저 낮은 가격의 20 기간 SMA를 계산하고 지표 라인을 그래프화합니다. 다음 거래 논리를 설정합니다.
롱 엔트리: 마이너스 마이너스 마이너스
긴 출구: 0.99 * 가장 높은 SMA 이하의 폐쇄 가격 교차
단기 진입: 마감 가격은 최저 SMA 아래로 넘어갑니다.
짧은 출구: 1.01 * 최저 SMA 이상의 닫기 가격 교차
따라서 이중 추진 전략을 따르는 경향이 형성됩니다.
이 전략은 다음과 같은 장점을 가지고 있습니다.
이 전략에는 몇 가지 위험도 있습니다.
이러한 위험은 다른 지표를 결합, 중지 손실 설정, 매개 변수 조정 등으로 제어 및 감소 할 수 있습니다.
이 전략은 다음 측면에서도 개선될 수 있습니다.
이 전략의 전반적인 논리는 명확하고 구현하기 쉽습니다. 트렌드 방향을 결정하고 합리적인 입출입 규칙을 설정하는 데 SMA를 사용하여 좋은 결과를 얻을 수 있습니다. 추가 최적화에 대한 여지가 있으며 다른 기술과 결합하면 장기적으로 추적 할 가치가있는 유망한 전략이 될 수 있습니다.
/*backtest start: 2023-11-14 00:00:00 end: 2023-11-21 00:00:00 period: 10m basePeriod: 1m exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}] */ // This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © AlanAntony //@version=4 strategy("ma 20 high-low",overlay=true) //compute the indicators smaH = sma(high, 20) smaL = sma(low, 20) //plot the indicators plot(smaH,title="smaHigh", color=color.green, linewidth=2) plot(smaL,title="smaLow", color=color.red, linewidth=2) //trading logic enterlong = crossover(close,smaH) //positive ema crossover exitlong = crossunder(close,0.99*smaH) //exiting long entershort = crossunder(close,smaL) //negative EMA Crossover exitshort = crossover(close,1.01*smaH) //exiting shorts notintrade = strategy.position_size<=0 bgcolor(notintrade ? color.red:color.green) //execution logic start = timestamp(2015,6,1,0,0) //end = timestamp(2022,6,1,0,0) if time >= start strategy.entry( "long", strategy.long,1, when = enterlong) strategy.entry( "short", strategy.short,1, when = entershort) strategy.close("long", when = exitlong) strategy.close("short", when = exitshort) //if time >= end // strategy.close_all()