이 전략은 여러 이동 평균 및 RSI 지표에 기반한 트렌드 추적 시스템이다. 이 전략은 상대적 위치, 무역 신호에 대한 RSI 확인과 결합하여 시장 트렌드를 분석하기 위해 20, 50, 200 기간 이동 평균의 조합을 활용합니다. 이 전략은 수익을 보호하기 위해 후속 중지와 동적 스톱-손실 및 이익 목표를 통합합니다.
이 전략의 핵심은 시장 트렌드를 결정하기 위해 세 개의 이동 평균 (MA20, MA50, MA200) 의 상대적 위치를 분석하는 데 있다. 이 전략은 크로스오버와 상대적 포지션을 중점으로 18개의 다른 이동 평균 조합 시나리오를 정의한다. 단기 MAs가 장기 MAs보다 높을 때 긴 포지션은 선호되며, 그 반대의 경우이다. 과잉 거래를 피하기 위해 RSI는 필터로 도입되어 RSI가 70 이하이고 짧은 엔트리가 30 이상일 때 긴 엔트리를 허용한다. 이 전략은 수익을 보호하기 위해 25 포인트 트레일링 스톱과 함께 1:10 리스크-어워드 비율을 사용한다.
이것은 명확한 논리를 가진 잘 구성된 트렌드-추천 전략이다. 여러 이동 평균 시스템과 RSI 필터링의 조합은 비교적 신뢰할 수 있는 거래 시스템을 만듭니다. 위험 관리 메커니즘은 잘 설계되어 있으며, 조기 출구없이 후속 정지를 통해 이익을 보호합니다. 최적화 할 여지가 있지만 전반적인 프레임워크는 실용적인 응용 가치로 과학적으로 설계되었습니다.
/*backtest start: 2019-12-23 08:00:00 end: 2024-11-27 08:00:00 period: 1d basePeriod: 1d exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}] */ //@version=5 strategy("Refined MA Strategy with Trailing Stop for 30m", overlay=true) // Define the moving averages TR20 = ta.sma(close, 20) TR50 = ta.sma(close, 50) TR200 = ta.sma(close, 200) // Define the RSI for additional filtering rsi = ta.rsi(close, 14) // Define the scenarios scenario1 = TR20 > TR50 and TR50 > TR200 scenario2 = TR50 > TR20 and TR20 > TR200 scenario3 = TR200 > TR50 and TR50 > TR20 scenario4 = TR50 > TR200 and TR200 > TR20 scenario5 = TR20 > TR200 and TR200 > TR50 scenario6 = TR200 > TR20 and TR20 > TR50 scenario7 = TR20 == TR50 and TR50 > TR200 scenario8 = TR50 == TR20 and TR20 > TR200 scenario9 = TR200 == TR50 and TR50 > TR20 scenario10 = TR20 > TR50 and TR50 == TR200 scenario11 = TR50 > TR20 and TR20 == TR200 scenario12 = TR20 > TR50 and TR50 == TR200 scenario13 = TR20 == TR50 and TR50 == TR200 scenario14 = TR20 > TR50 and TR200 == TR50 scenario15 = TR50 > TR20 and TR200 == TR50 scenario16 = TR20 > TR50 and TR50 == TR200 scenario17 = TR20 > TR50 and TR50 == TR200 scenario18 = TR20 > TR50 and TR50 == TR200 // Entry conditions longCondition = (scenario1 or scenario2 or scenario5) and rsi < 70 shortCondition = (scenario3 or scenario4 or scenario6) and rsi > 30 // Execute trades based on scenarios with 50 points stop loss and 1:10 RR, using a trailing stop of 25 points if (longCondition) strategy.entry("Long", strategy.long) strategy.exit("Take Profit", from_entry="Long", limit=close + 250, trail_offset=25) if (shortCondition) strategy.entry("Short", strategy.short) strategy.exit("Take Profit", from_entry="Short", limit=close - 250, trail_offset=25)