この戦略は,相対強度指数 (RSI) 指標に基づいて,ロングとショートのための自動取引システムを設計する.RSIが過買いまたは過売りレベルに達すると,自動取引を行うときに自動的にロングとショートシグナルを生成することができます.
この戦略は,価格上昇と減少を基準に0-100の範囲のRSI値を計算する.RSIが30を下回ると,oversold状態である.RSIが70を超えると,oversold状態である.このルールによると,RSIがoversoldゾーンに達すると戦略は自動的にロングになり,RSIがoversoldゾーンに達するとショートになる.
戦略は,まず15期間のRSIを計算する.RSIが20を下回るとoversoldとみなされる.この時点で,価格が200日間の移動平均値を超えると,ロングポジションが開かれる.RSIが80を超えると,oversoldとみなされる.この時点でショートポジションが開かれる.ロングまたはショートした後,取利益とストップロスは出口ポジションに設定される.
さらに,この戦略は,価格信号が発生するときに対応するランドマークラインとラベルを画し,取引信号をより直感的にします.
リスク制御対策には,RSIパラメータを最適化し,異なる製品に合わせて過剰購入と過剰販売の
RSIは,RSIが過剰購入または過剰販売状態を判断するために使用される自動化取引戦略である.RSIが極端な過剰購入または過剰販売レベルに達すると,自動的に長期および短期取引を行うことができる.戦略のアイデアはシンプルで明確で,実行しやすく,基本的な自動取引戦略として適しています.しかし,RSIインジケーターにはいくつかの遅れがあります.したがって,信号の精度を向上させるために他の指標と最適化することが推奨されています.また,リスク管理,ストップ損失メカニズムを最適化,取引リスクを減らすリスク制御モジュールの開発に注意を払う必要があります.ライブ取引で最適化および検証された場合,戦略は長期および短期取引のための効果的な自動化システムになることができます.
/*backtest start: 2023-10-22 00:00:00 end: 2023-10-29 00:00:00 period: 15m basePeriod: 5m exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}] */ //@version=5 strategy("RSI Improved strategy", overlay=true) higherTF1 = input.timeframe('15' , "Resolution", options = ['5', '15', '1H', 'D', 'W', 'M']) dailyopen = request.security(syminfo.tickerid, higherTF1, close) Reward = input(1600) Risk = input(1600) length = input( 5 ) overSold = input( 30 ) overBought = input( 70 ) EMA = input(200) price = close vrsi = ta.rsi(price, length) RSIlowest = vrsi[1] > vrsi ? true : false RSIhighest = vrsi[1] < vrsi ? true : false //ro = ta.crossunder(vrsi, 20) //ru = ta.crossover(vrsi, 80) co = ta.crossunder(vrsi, overSold) cu = ta.crossunder(vrsi, overBought) plot(ta.ema(close, EMA)) plot(ta.ema(close, 50), color = color.orange) UponEMA = close > ta.ema(close, EMA) ? true : false belowEMA = close < ta.ema(close, EMA) ? true : false //transfer 'float' to 'int' to 'string' r = int(vrsi) value = str.tostring(r) m = int(strategy.openprofit) money = str.tostring(m) if (not na(vrsi)) //when price stand up on 200ema and rsi is at oversold area, open long position // if (co and UponEMA) // strategy.order("Rsi long", strategy.long, 1 , comment = "Rsi long") if(vrsi < 20 and RSIlowest) // line1 = line.new(x1=bar_index, y1=dailyopen, x2=bar_index+1, y2=dailyopen, xloc=xloc.bar_index, style=line.style_solid,extend=extend.right, color=color.aqua, width = 2) // line.delete(line1[1]) // remove the previous line when new bar appears // label1 = label.new(x=bar_index, y=dailyopen,yloc=yloc.belowbar, text = value,textcolor = color.white, color = color.green, style = label.style_label_up) // label.delete(label1[1]) strategy.order("Rsi long", strategy.long, 1 , comment = "Rsi long") strategy.exit("exit", "Rsi long", profit = Reward, loss = Risk, comment = "Rsi long exit") //strategy.close("Rsi short", comment = "Rsi close") if(vrsi > 80 and RSIhighest) // line2 = line.new(x1=bar_index, y1=dailyopen, x2=bar_index+1, y2=dailyopen, xloc=xloc.bar_index, style=line.style_solid,extend=extend.right, color = #e65100, width = 2) // line.delete(line2[1]) // remove the previous line when new bar appears // label2 = label.new(x=bar_index, y=dailyopen,yloc=yloc.abovebar, text = value, textcolor = color.white, color = color.red) // label.delete(label2[1]) strategy.order("Rsi short",strategy.short, 1, comment = "Rsi short ") strategy.exit("exit", "Rsi short", profit = Reward,loss = Risk, comment = "Rsi short exit") // if(UponEMA) // strategy.close("Rsi short", comment = "Rsi short close") //plot(strategy.equity, title="equity", color=color.red, linewidth=2, style=plot.style_cross) //plotshape(confirmPH, title="Label",offset = 1,text="Bull",style=shape.labeldown,location=location.abovebar,color=color.green,textcolor=color.green) //when Rsi reaches overbought, draw a Horizontal Ray to close prices, similarly when it comes to oversold.(accomplished) //detects when there is more lower/higher RSI values, adjust horizontal Ray and label to new posistion.(accomplished)