アリガターRSI取引戦略は,市場動向を決定し,取引信号を生成するために,複数の相対強度指数 (RSI) 移動平均値の組み合わせを使用する定量的な取引戦略である.この戦略は,短期RSI線が長期RSI線を横切ったときに取引を開く,アリガターが狩猟する方法からインスピレーションを得ている.
アリゲーターRSIの取引戦略は,5期,13期,34期という3つのRSI線を使用する. 5期RSI線は"歯
短期のRSIと長期のRSIの間の交差点を把握することで,短期的および長期的トレンドの関係を測定し,逆転の機会を特定することができます.短期RSIが長期RSIを横切ると,短期価格の動きの逆転をシグナル化し,反対方向にポジションをとることで,迫りつつある長期的トレンドの逆転から利益を得ることができます.
アリガターRSIの取引戦略には以下の利点があります.
アリガターRSIの取引戦略には以下のリスクもあります.
これらのリスクは,追加の指標を組み合わせ,パラメータを最適化し,ポジションサイズを適切に調整することによって軽減できる.
アリゲーターのRSI取引戦略は,次の方法で最適化できます.
Alligator RSI トレーディング戦略は,市場逆転の機会を把握するために RSI MA クロスを使用している.それはシンプルで,アルゴ・トレードに使用可能だが,いくつかの欠点がある.パラメータ最適化と指標の組み合わせは,この戦略を強化し,安定した収益性の高いアルゴリズム取引戦略にする.
/*backtest start: 2022-11-30 00:00:00 end: 2023-12-06 00:00:00 period: 1d basePeriod: 1h exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}] */ //@version=3 strategy("RSI Alligator", overlay=false) jaws = rsi(close, 34) teeth = rsi(close, 5) lips = rsi(close, 13) plot(jaws, color=blue, title="Jaw") plot(teeth, color=green, title="Teeth") plot(lips, color=red, title="Lips") longCondition = crossover(rsi(close, 13), rsi(close, 34)) and (rsi(close, 5) > rsi(close, 34)) longCondition1 = crossover(rsi(close, 5), rsi(close, 34)) and (rsi(close, 13) > rsi(close, 34)) if (longCondition) strategy.entry("Long", strategy.long) if (longCondition1) strategy.entry("Long", strategy.long) shortCondition = crossunder(rsi(close, 13), rsi(close, 34)) and (rsi(close, 5) < rsi(close, 34)) shortCondition1 = crossunder(rsi(close, 5), rsi(close, 34)) and (rsi(close, 13) < rsi(close, 34)) if (shortCondition) strategy.entry("Short", strategy.short) if (shortCondition1) strategy.entry("Short", strategy.short) // === BACKTESTING: EXIT strategy === sl_inp = input(10, title='Stop Loss %', type=float)/100 tp_inp = input(90, title='Take Profit %', type=float)/100 stop_level = strategy.position_avg_price * (1 - sl_inp) take_level = strategy.position_avg_price * (1 + tp_inp) strategy.exit("Stop Loss/Profit", "Long", stop=stop_level, limit=take_level)