이 전략은 슈퍼 스칼핑 전략 유형에 속하는 5 분 및 15 분 시간 프레임에 적합한 상대 강도 지표 (RSI) 및 평균 진정한 범위 (ATR) 채널을 기반으로합니다. RSI 지표를 통해 긴 / 짧은 방향 입구 지점을 결정하고 ATR 채널을 사용하여 스톱 로스를 설정하고 이익을 취하며 고 주파수 거래를 실현합니다.
이 전략은 높은 주파수 스칼핑 거래 유형에 속한다. 빠른 거래를 위해 RSI 지표와 ATR 채널을 통해 입구 및 출구 지점을 설정한다. 장점은 트렌드를 따라 거래에 적합한 좋은 위험 통제와 빠른 이익이다. 그러나 빈번한 거래를 지원하는 충분한 자본으로 긴 시장 감시가 필요합니다. 전반적으로,이 전략은 트렌드 거래를 위해 잘 수행하며 최적화를 통해 수익성을 더욱 향상시킬 수 있습니다.
/*backtest start: 2023-11-20 00:00:00 end: 2023-11-27 00:00:00 period: 30m basePeriod: 15m exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}] */ //@version=4 strategy("Super Scalper - 5 Min 15 Min", overlay=true) // Create Indicator's shortSMA = ema(close, 21) longSMA = ema(close, 65) rsi = rsi(close, 14) atr = atr(14) // Specify conditions longCondition = open < close-atr shortCondition = open > atr+close GoldenLong = crossover(shortSMA,longSMA) Goldenshort = crossover(longSMA,shortSMA) plotshape(shortCondition, title="Sell Label", text="Sell", location=location.abovebar, style=shape.labeldown, size=size.tiny, color=color.red, textcolor=color.white, transp=0) plotshape(longCondition, title="Buy Label", text="Buy", location=location.belowbar, style=shape.labelup, size=size.tiny, color=color.green, textcolor=color.white, transp=0) plotshape(Goldenshort, title="Golden Sell Label", text="Golden Crossover Short", location=location.abovebar, style=shape.labeldown, size=size.tiny, color=color.blue, textcolor=color.white, transp=0) plotshape(GoldenLong, title="Golden Buy Label", text="Golden Crossover Long", location=location.belowbar, style=shape.labelup, size=size.tiny, color=color.yellow, textcolor=color.white, transp=0) // Execute trade if condition is True if (longCondition) stopLoss = low - atr * 2 takeProfit = high + atr * 5 strategy.entry("long", strategy.long, 1, when = rsi > 50) if (shortCondition) stopLoss = high + atr * 2 takeProfit = low - atr * 5 strategy.entry("short", strategy.short, 1, when = rsi < 50) // Plot ATR bands to chart plot(atr+close) plot(close-atr) // Plot Moving Averages plot(shortSMA, color = color.red) plot(longSMA, color = color.yellow)