バイノミアル・モメンタム・ブレイクアウト・リバース・ストラテジーは,ストカスティック・インジケーターとブル・パワー・インジケーターを組み合わせて,市場転換点で二重信号フィルタリングとリバース・トレードを実施し,過剰売りと過剰購入の状況を追いかける.
戦略は2つの部分からなる.
123 逆転戦略
Ulf Jensenが彼の著書"How I Tripled My Money in the Futures Market"で提案した逆転戦略を使用している. 閉じる価格は2連日前の閉じるよりも高く,9日間のスローストキャスティックは50を下回る.閉じる価格は2連日前の閉じるよりも低く,9日間の速いストキャスティックは50を超えると短くなります.
牛の力指標
バディム・ギメルファルブ (Vadim Gimelfarb) の著書"ブル・アンド・ベアバランス・インディケーター (Bull and Bear Balance Indicator) "で提唱したモメントインディケーターを用いて,現在のKラインと以前のKラインの関係を計算して,上昇/下落力を判断し,取引信号を生成する.
この戦略は,上記の2つの単一の信号戦略を組み合わせ,二重信号フィルタリングを実施するために,2つの戦略の信号が一貫している場合にのみ取引信号を生成する.
この戦略は,逆転戦略と追跡戦略の利点を組み合わせている.市場が逆転の兆候を示したときに,逆転信号をタイミングで捕捉し,二重信号フィルタリングを通じて偽信号を削減することで,高値を追いかけて低値を売ることを避ける.主な利点は:
この戦略にはいくつかのリスクもあります:
対策は
この戦略は,次の側面においてさらに最適化することができる.
バイノミアルモメンタムブレイクアウト逆転戦略は,ストカスティック指標とブルパワー指標を組み合わせ,二重信号フィルタリングと逆転取引を達成する. 市場の逆転機会を把握し,単一の信号によって発生するノイズを回避することができます. これは安定的かつ効果的な定量戦略です. 戦略はパラメータ最適化,ストップ損失戦略,信号検証などを通じて改善され,より多くの種類や市場環境に適しています. 最適化と適用の可能性が高くなります.
/*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 )