이분법 모멘텀 브레이크아웃 역전 전략은 스토카스틱 지표와 불 파워 지표를 결합하여 시장 전환점에 이중 신호 필터링과 역전 거래를 구현하여 과판 및 과입 상황을 추적합니다.
이 전략은 두 부분으로 구성됩니다.
123 역전 전략
황소 힘 지표
그것은 Vadim Gimelfarb가 그의 책
이 전략은 위의 두 개의 단일 신호 전략을 결합합니다. 이중 신호 필터링을 구현하기 위해 두 가지 전략의 신호가 일관 할 때만 거래 신호를 생성합니다.
이 전략은 반전 전략과 추적 전략의 장점을 결합합니다. 시장이 반전 징후를 표시 할 때 반전 신호를 적시에 캡처 할 수 있으며, 높은 점과 낮은 점을 쫓는 것을 피하기 위해 이중 신호 필터링을 통해 잘못된 신호를 줄일 수 있습니다. 주요 장점은 다음과 같습니다.
이 전략은 또한 몇 가지 위험을 안고 있습니다.
대책:
이 전략은 다음 측면에서 더 이상 최적화 될 수 있습니다.
이분법 모멘텀 브레이크아웃 역전 전략 (Binomial Momentum Breakout Reversal Strategy) 은 스토카스틱 지표와 불 파워 지표를 결합하여 이중 신호 필터링 및 역전 거래를 달성합니다. 시장 역전 기회를 포착하고 단일 신호로 인해 발생하는 소음을 피할 수 있습니다. 안정적이고 효과적인 수치 전략입니다. 전략은 매개 변수 최적화, 스톱 로스 전략, 신호 검증 등을 통해 개선 할 수 있으며 더 많은 품종과 시장 환경에 적합합니다. 최적화 및 응용에 큰 잠재력을 가지고 있습니다.
/*backtest start: 2024-01-01 00:00:00 end: 2024-01-31 23:59:59 period: 1h basePeriod: 15m exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}] */ //@version=4 //////////////////////////////////////////////////////////// // Copyright by HPotter v1.0 05/07/2019 // This is combo strategies for get a cumulative signal. // // First strategy // This System was created from the Book "How I Tripled My Money In The // Futures Market" by Ulf Jensen, Page 183. This is reverse type of strategies. // The strategy buys at market, if close price is higher than the previous close // during 2 days and the meaning of 9-days Stochastic Slow Oscillator is lower than 50. // The strategy sells at market, if close price is lower than the previous close price // during 2 days and the meaning of 9-days Stochastic Fast Oscillator is higher than 50. // // Second strategy // Bull Power Indicator // To get more information please see "Bull And Bear Balance Indicator" // by Vadim Gimelfarb. // // WARNING: // - For purpose educate only // - This script to change bars colors. //////////////////////////////////////////////////////////// Reversal123(Length, KSmoothing, DLength, Level) => vFast = sma(stoch(close, high, low, Length), KSmoothing) vSlow = sma(vFast, DLength) pos = 0.0 pos := iff(close[2] < close[1] and close > close[1] and vFast < vSlow and vFast > Level, 1, iff(close[2] > close[1] and close < close[1] and vFast > vSlow and vFast < Level, -1, nz(pos[1], 0))) pos BullPower(SellLevel, BuyLevel) => pos = 0 value = iff (close < open , iff (close[1] < open , max(high - close[1], close - low), max(high - open, close - low)), iff (close > open, iff(close[1] > open, high - low, max(open - close[1], high - low)), iff(high - close > close - low, iff (close[1] < open, max(high - close[1], close - low), high - open), iff (high - close < close - low, iff(close[1] > open, high - low, max(open - close, high - low)), iff (close[1] > open, max(high - open, close - low), iff(close[1] < open, max(open - close, high - low), high - low)))))) pos := iff(value > SellLevel, -1, iff(value <= BuyLevel, 1, nz(pos[1], 0))) pos strategy(title="Combo Backtest 123 Reversal & Bull Power", shorttitle="Combo", overlay = true) Length = input(14, minval=1) KSmoothing = input(1, minval=1) DLength = input(3, minval=1) Level = input(50, minval=1) //------------------------- SellLevel = input(15, step=1) BuyLevel = input(3, step=1) reverse = input(false, title="Trade reverse") posReversal123 = Reversal123(Length, KSmoothing, DLength, Level) posBullPower = BullPower(SellLevel, BuyLevel) pos = iff(posReversal123 == 1 and posBullPower == 1 , 1, iff(posReversal123 == -1 and posBullPower == -1, -1, 0)) possig = iff(reverse and pos == 1, -1, iff(reverse and pos == -1, 1, pos)) if (possig == 1) strategy.entry("Long", strategy.long) if (possig == -1) strategy.entry("Short", strategy.short) if (possig == 0) strategy.close_all() barcolor(possig == -1 ? #b50404: possig == 1 ? #079605 : #0536b3 )