이 전략은 트렌드 시작 시 트렌드 시작 시 두 가지 다른 기간 (14 및 30) 의 RSI 지표를 비교하여 트렌드 연속 중 리미트 오더를 통해 포지션을 추가하여 트렌드 포착을 극대화하는 트렌드 다음 거래 시스템입니다. 이 시스템은 포지션 관리 및 동적 출구 조건 등 포괄적인 위험 관리 메커니즘을 포함합니다.
이 전략은 트레이딩 트리거로서 이중 기간 RSI 크로스오버 신호를 사용하며 피라미드 포지션 관리와 결합합니다. 구체적으로: 1. 진입 신호: 초판 (30) 및 초입 (70) 수준의 14 기간 RSI 돌파를 진입 신호로 사용합니다. 2. 포지션 추가: 초기 진입 후 1.5% 가격 오차에 설정 한계 명령을 통해 2차 포지션 추가를 구현 3. 출구 신호: 30 기간 RSI를 출구 지표로 사용하며, RSI가 과소매 지역에서 떨어지거나 과소매 지역에서 회복되면 폐쇄를 유발합니다. 위치 제어: 시스템은 독립적으로 구성 가능한 입력 양과 최대 두 개의 위치 (피라미드 = 2) 를 허용합니다.
이 전략은 이중 기간 RSI 및 피라미드 포지션의 조합을 통해 효과적인 트렌드 캡처를 달성합니다. 입점, 포지션 추가, 스톱-러스 및 포지션 관리 요소를 포함한 완전한 거래 시스템을 구현합니다. 매개 변수 최적화 및 리스크 관리 개선으로 전략은 실제 거래에서 안정적인 성능을 보여주었습니다. 트레이더들은 실시간 구현 전에 특정 시장 특성에 따라 매개 변수를 철저히 테스트하고 조정하는 것이 좋습니다.
/*backtest start: 2024-12-17 00:00:00 end: 2025-01-16 00:00:00 period: 3h basePeriod: 3h exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT","balance":49999}] */ //@version=5 strategy("RSI Top Strategy", overlay=true, pyramiding=2) qty1 = input( 1 , "Qty first entry", group="Strategy settings") qty2 = input( 1 , "Qty second entry", group="Strategy settings") avg1 = input.float( 1.5 , "% averaging ", group="Strategy settings") overSold = input( 30 , group="open RSI Settings") overBought = input( 70 , group="open RSI Settings") rsi1len = input.int(14, minval=1, title="open RSI Length", group="open RSI Settings") overSold2 = input( 30 , group="close RSI Settings") overBought2 = input( 70 , group="close RSI Settings") rsi2len = input.int(30, minval=1, title="close RSI Length", group="close RSI Settings") price = close vrsi = ta.rsi(price, rsi1len) vrsi2 = ta.rsi(price, rsi2len) sz=strategy.position_size co = ta.crossover(vrsi, overSold) cu = ta.crossunder(vrsi, overBought) if (not na(vrsi)) if (co) and not (sz>0) strategy.entry("Long", strategy.long, qty = qty1, comment="Long") Avgl=close-close*0.01*avg1 strategy.entry("AvgL", strategy.long, qty = qty2, limit=Avgl, comment="AvgL") if (cu) and not (sz<0) strategy.entry("Short", strategy.short, qty = qty1, comment="Short") Avgs=close+close*0.01*avg1 strategy.entry("AvgS", strategy.short, qty = qty2, limit=Avgs, comment="AvgS") //plot(strategy.equity, title="equity", color=color.red, linewidth=2, style=plot.style_areabr) if sz[1]<0 and sz<0 and vrsi2<overBought2 and vrsi2[1]>=overBought2 strategy.close_all("x") if sz[1]>0 and sz>0 and vrsi2>overSold2 and vrsi2[1]<=overSold2 strategy.close_all("x") plot(vrsi,'open rsi',color=color.green) plot(vrsi2,'close rsi',color=color.red) hline(overBought, "RSI Upper Band", color=#787B86) hline(overSold, "RSI Upper Band", color=#787B86)