ダブルデッカーRSI取引戦略は,相対強度指数 (RSI) をベースとした定量的な取引戦略である.この戦略は,二重確認を達成するために,高速および遅いRSIの両方を取引信号として利用し,信号品質を改善し,偽信号をフィルタリングすることを目的としている.
この戦略は,主要取引指標として異なる期間の2つのRSIを使用する.高速RSIは5日間の期間を持ち,短期間の過買い・過売状況を把握するために使用される.遅いRSIは14日間の期間を持ち,中長期間のトレンドと主要なサポート/レジスタンスレベルを決定するために使用される.
特別取引規則は次のとおりです.
速いRSIが70を超え ゆっくりしたRSIが50を超えると ロングします.速いRSIが30を超え ゆっくりしたRSIが50を超えるとショートします.
ロングポジションのストップ・ロスは,急速なRSIが55を下回る時です.ショートポジションのストップ・ロスは,急速なRSIが45を下回る時です.
この戦略は,速いRSIと遅いRSIを組み合わせることで,異なるタイムフレーム間の互い補完性を達成し,中長期トレンドを確認しながら,過剰購入/過剰販売条件を効果的に特定し,高品質の取引信号を生成することができます.このダブルRSIフィルターメカニズムは,偽のブレイクノイズも減らすのに役立ちます.
Double Decker RSI戦略の最大の利点は,誤った信号を効果的にフィルタリングし,信号品質を向上させ,不必要な取引を削減し,取引頻度を下げることができるということです.具体的な利点は以下の通りです.
速くて遅いRSIの組み合わせにより,短期,中期,長期間の過買い/過売りポイントが特定され,信号の精度が向上します.
2重のRSIフィルターメカニズムは 効果的にノイズを削減し 閉じ込められないようにします
低取引頻度は取引コストと滑り損を削減するのに役立ちます.
ストップロスのメカニズムは,単一の損失と最大引き上げを制御します.
また,ダブルデッカーRSI戦略には,主に次の側面からなる一定のリスクがあります.
RSIの遅延性自体が取引の遅延を引き起こす可能性があります.
ダブルフィルターメカニズムは 取引機会を逃す可能性があります
極端な市場環境では システムリスクを完全に回避することはできません
上記のリスクを軽減するために,以下の方法が使用できます.
快速RSIのパラメータを適切に調整し,感度を高めます.
リスクとリターンをバランスするためにエントリーとストップロスの条件を最適化します
トレンドフォローシステム,機械学習アルゴリズムなどと組み合わせる
二階建てのRSI戦略のさらなる最適化には,主に次の方向性において,まだ余地があります.
RSIのパラメータを動的に最適化し,市場状況に基づいて自動的に調整します.
波動性に基づくリスク管理モジュールを追加する.
テキストマイニングやソーシャルデータなどの代替信号を組み込む
信号をフィルタリングするのに 機械学習モデルを使用します
上記の最適化により,戦略の収益性,安定性,適応性がさらに向上できます.
一般的に,ダブルデッカーRSI戦略は非常に実践的な定量的な取引戦略である.傾向追跡,過買い/過売り識別,および二重フィルタリングメカニズムを組み合わせて比較的完全な取引システムを形成する.この戦略はリスクを制御し,取引頻度を削減する上で顕著に機能し,中長期保有に適している.継続的な最適化と繰り返しのなかで,ダブルデッカーRSI戦略は次世代の定量的な戦略の重要な構成要素になる可能性がある.
/*backtest start: 2023-12-30 00:00:00 end: 2024-01-29 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/ // © Ankit_Quant //@version=4 // ******************************************************************************************************** // This was coded live during webinar on Backtesting in Tradingview // That was held on 16-Jan-21 // Aim of this strategy is to code a Double Decker RSI Strategy - Rules of Strategy are given in Description // ********************************************************************************************************* // Identifier of strategy or an indicator (study()) strategy(title="Strategy- Double Decker RSI",shorttitle='Strategy - Double Decker RSI',overlay=true) // ******************** // INPUTS // ******************** // RSI Lookback Periods slowRSI=input(defval=14,title='Slow RSI Period',type=input.integer) fastRSI=input(defval=5,title='Fast RSI Period',type=input.integer) // Time Period Backtesting Input start_year=input(defval=2000,title='Backtest Start Year',type=input.integer) end_year=input(defval=2021,title='Backtest End Year',type=input.integer) //Specific Years to Test Starategy timeFilter=true // Trade Conditions and signals long = rsi(close,fastRSI)>70 and rsi(close,slowRSI)>50 short = rsi(close,fastRSI)<40 and rsi(close,slowRSI)<50 long_exit=rsi(close,fastRSI)<55 short_exit=rsi(close,fastRSI)>45 //positionSize - 1 Unit (also default setting) positionSize=1 // Trade Firing - Entries and Exits if(timeFilter) if(long and strategy.position_size<=0) strategy.entry(id='Long',long=strategy.long,qty=positionSize) if(short and strategy.position_size>=0) strategy.entry(id="Short",long=strategy.short,qty=positionSize) if(long_exit and strategy.position_size>0) strategy.close_all(comment='Ex') if(short_exit and strategy.position_size<0) strategy.close_all(comment='Ex') // Plot on Charts the Buy Sell Labels plotshape(strategy.position_size<1 and long,style=shape.labelup,location=location.belowbar,color=color.green,size=size.tiny,text='Long',textcolor=color.white) plotshape(strategy.position_size>-1 and short,style=shape.labeldown,location=location.abovebar,color=color.red,size=size.tiny,text='Short',textcolor=color.white) plotshape(strategy.position_size<0 and short_exit?1:0,style=shape.labelup,location=location.belowbar,color=color.maroon,size=size.tiny,text='ExShort',textcolor=color.white) plotshape(strategy.position_size>0 and long_exit?1:0,style=shape.labeldown,location=location.abovebar,color=color.olive,size=size.tiny,text='ExLong',textcolor=color.white)