この戦略は,RSIインジケーターのブレイクアウトを異なる範囲で監視し,低値で購入し,高値で販売する.RSIが低値でロングになり,RSIが高値でショートになり,過剰購入または過剰販売の状況が現れるとポジションを逆転させる.
RSI 期間を 14 に設定する
RSIの買い信号範囲を設定する:
RSIのセールシグナル範囲を設定する:
RSIが買い区間に入ると,ロング:
RSIが売り範囲に入ると ショート
2500ピップに利益と 5000ピップにストップロスを設定します
RSIが信号範囲を外すとき,ポジションを閉じ
ダブルレンジ設定は,過買いと過売の状況をよりよく識別し,逆転の機会を逃すのを避けるのに役立ちます
ピップで固定得益とストップ損失を導入することで,傾向を追求を過剰に防ぐことができます.
RSI は,他の指標に優れている過買い値と過売値を特定する成熟した振動指標です.
この戦略は,適切なパラメータ調整によって,トレンドの逆転点を効果的に捉え,過剰なリターンを生み出すことができます.
持続的なショートポジションから連続して損失をもたらすRSIの差異が起こる可能性があります.
固定得益とストップ損失は,市場の変動に合致しない可能性があり,利益を得ることができないか,早めに停止する可能性があります.
不適切な範囲設定は,取引を欠かしたり,収益を上げない取引を頻繁に行う可能性があります.
この戦略は,バックテストに基づくパラメータ最適化に大きく依存している.注意深く歩いて前向きな分析が必要である.
RSIの試験効果は,異なる期間の長さ
異なる製品の特徴に合うように,購入と販売範囲の値を最適化
収益性や合理性を向上させるため,利益とストップ損失を採取する研究動態
安定性を高めるため,他の指標を組み合わせることを検討する.
機械学習技術を探求し,安定性のためのパラメータ範囲を自動最適化する
この戦略は,RSI
/*backtest start: 2023-09-16 00:00:00 end: 2023-10-16 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/ // © Rawadabdo // Ramy's Algorithm //@version=5 strategy("BTC/USD - RSI", overlay=false, initial_capital = 5000) // User input length = input(title = "Length", defval=14, tooltip="RSI period") first_buy_level = input(title = "Buy Level 1", defval=27, tooltip="Level where 1st buy triggers") second_buy_level = input(title = "Buy Level 2", defval=18, tooltip="Level where 2nd buy triggers") first_sell_level = input(title = "Sell Level 1", defval=68, tooltip="Level where 1st sell triggers") second_sell_level = input(title = "Sell Level 2", defval=80, tooltip="Level where 2nd sell triggers") takeProfit= input(title="target Pips", defval=2500, tooltip="Fixed pip stop loss distance") stopLoss = input(title="Stop Pips", defval=5000, tooltip="Fixed pip stop loss distance") lot = input(title = "Lot Size", defval = 1, tooltip="Trading Lot size") // Get RSI vrsi = ta.rsi(close, length) // Entry Conditions long1 = (vrsi <= first_buy_level and vrsi>second_buy_level) long2 = (vrsi <= second_buy_level) short1= (vrsi >= first_sell_level and vrsi<second_sell_level) short2= (vrsi >= second_sell_level) // Entry Orders // Buy Orders if (long1 and strategy.position_size == 0) strategy.entry("Long", strategy.long, qty=lot, comment="Buy") if (long2 and strategy.position_size == 0) strategy.entry("Long", strategy.long, qty=lot, comment="Buy") // Short Orders if (short1 and strategy.position_size == 0) strategy.entry("Short", strategy.short,qty=lot, comment="Sell") if (short2 and strategy.position_size == 0) strategy.entry("Short", strategy.short,qty=lot, comment="Sell") // Exit our trade if our stop loss or take profit is hit strategy.exit(id="Long Exit", from_entry="Long",qty = lot, profit=takeProfit, loss=stopLoss) strategy.exit(id="Short Exit", from_entry="Short", qty = lot, profit=takeProfit, loss=stopLoss) // plot data to the chart hline(first_sell_level, "Overbought Zone", color=color.red, linestyle=hline.style_dashed, linewidth = 2) hline(second_sell_level, "Overbought Zone", color=color.green, linestyle=hline.style_dashed, linewidth = 2) hline(first_buy_level, "Oversold Zone", color=color.red, linestyle=hline.style_dashed, linewidth = 2) hline(second_buy_level, "Oversold Zone", color=color.green, linestyle=hline.style_dashed, linewidth = 2) plot (vrsi, title = "RSI", color = color.blue, linewidth=2)