이것은 지나치게 많이 구입하고 지나치게 많이 팔린 수준을 결정하기 위해 RSI 지표를 사용하는 간단한 장기 전략입니다. 우리는 중지 손실과 수익을 추가하고 최근 수익성있는 거래 확률이 51% 이상 또는 같을 때만 강화 거래에 확률 모듈을 통합하여 전략 성능을 크게 향상 시켰습니다. 이는 잠재적 인 손실 거래를 피함으로써 전략 성능을 크게 향상 시켰습니다.
이 전략은 RSI 지표를 사용하여 시장의 과잉 구매 및 과잉 판매 조건을 판단합니다. 구체적으로, RSI가 과잉 판매 구역의 하단 한계를 넘을 때 긴 거리로 이동합니다. 그리고 RSI가 과잉 구매 구역의 상단 한계를 넘을 때 포지션을 닫습니다. 또한, 우리는 손해를 멈추고 수익 비율을 설정합니다.
핵심은 확률 판단 모듈을 통합하는 것입니다. 이 모듈은 최근 기간 동안의 긴 거래의 수익률 비율을 계산합니다. 최근 수익성 거래 확률이 51%보다 높거나 같을 경우에만 입력 할 수 있습니다. 이것은 많은 잠재적 인 손실 거래를 피합니다.
확률 강화된 RSI 전략으로서 간단한 RSI 전략에 비해 다음과 같은 장점을 가지고 있습니다.
이 전략에는 여전히 몇 가지 위험이 있습니다.
해결책:
이 전략은 아래와 같은 측면에서 더 이상 최적화 될 수 있습니다.
이것은 통합 확률 모듈에 의해 강화 된 간단한 RSI 전략입니다. 바닐라 RSI 전략과 비교하면 손실 트레이드를 필터링하고 전체 마감 및 이익 비율을 향상시킵니다. 다음 단계는 짧은, 동적 최적화 등을 추가하여 더 견고하게 개선 할 수 있습니다.
/*backtest start: 2023-11-19 00:00:00 end: 2023-12-19 00:00:00 period: 1h basePeriod: 15m 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/ // © thequantscience //@version=5 strategy("Reinforced RSI", overlay = true, default_qty_type = strategy.percent_of_equity, default_qty_value = 100, pyramiding = 1, currency = currency.EUR, initial_capital = 1000, commission_type = strategy.commission.percent, commission_value = 0.07) lenght_rsi = input.int(defval = 14, minval = 1, title = "RSI lenght: ") rsi = ta.rsi(close, length = lenght_rsi) rsi_value_check_entry = input.int(defval = 35, minval = 1, title = "Oversold: ") rsi_value_check_exit = input.int(defval = 75, minval = 1, title = "Overbought: ") trigger = ta.crossunder(rsi, rsi_value_check_entry) exit = ta.crossover(rsi, rsi_value_check_exit) entry_condition = trigger TPcondition_exit = exit look = input.int(defval = 30, minval = 0, maxval = 500, title = "Lookback period: ") Probabilities(lookback) => isActiveLong = false isActiveLong := nz(isActiveLong[1], false) isSellLong = false isSellLong := nz(isSellLong[1], false) int positive_results = 0 int negative_results = 0 float positive_percentage_probabilities = 0 float negative_percentage_probabilities = 0 LONG = not isActiveLong and entry_condition == true CLOSE_LONG_TP = not isSellLong and TPcondition_exit == true p = ta.valuewhen(LONG, close, 0) p2 = ta.valuewhen(CLOSE_LONG_TP, close, 0) for i = 1 to lookback if (LONG[i]) isActiveLong := true isSellLong := false if (CLOSE_LONG_TP[i]) isActiveLong := false isSellLong := true if p[i] > p2[i] positive_results += 1 else negative_results -= 1 positive_relative_probabilities = positive_results / lookback negative_relative_probabilities = negative_results / lookback positive_percentage_probabilities := positive_relative_probabilities * 100 negative_percentage_probabilities := negative_relative_probabilities * 100 positive_percentage_probabilities probabilities = Probabilities(look) lots = strategy.equity/close var float e = 0 var float c = 0 tp = input.float(defval = 1.00, minval = 0, title = "Take profit: ") sl = input.float(defval = 1.00, minval = 0, title = "Stop loss: ") if trigger==true and strategy.opentrades==0 and probabilities >= 51 e := close strategy.entry(id = "e", direction = strategy.long, qty = lots, limit = e) takeprofit = e + ((e * tp)/100) stoploss = e - ((e * sl)/100) if exit==true c := close strategy.exit(id = "c", from_entry = "e", limit = c) if takeprofit and stoploss strategy.exit(id = "c", from_entry = "e", stop = stoploss, limit = takeprofit)