RSIシグナル追跡逆転取引戦略

作者: リン・ハーンチャオチャン, 日時: 2023-09-28 10:54:24
タグ:

概要

この戦略は,RSIインジケーターから見逃したオーバーバイトとオーバーセールシグナルを追跡することによってリバーストレードを実施する.RSIがオーバーバイトレベルから落ちると購入シグナルが生成され,RSIがオーバーセールレベルから跳ね返ったときに販売シグナルが生成され,リバース機会を掴むことを目的としています.

戦略の論理

シグナル識別

RSI インディケーターは,過買い/過売りレベルを特定します.RSIが過買い値を超えると過買い,過売り値を超えると過売りされます.

overbought = rsi > uplimit
oversold = rsi < dnlimit

このバー,購入信号が表示されます. このバー,このバー,このバー,このバー,このバー,このバー.up1このバー,販売の信号が発信されます.dn1生成されるのです

up1 = bar == -1 and strategy.position_size == 0 and overbought[1] and overbought == false
dn1 = bar == 1 and strategy.position_size == 0 and oversold[1] and oversold == false

エグジットロジック

棒の方向が位置方向と一致し,棒のボディが10周期平均の半分を超えると,出路信号が起動します.

exit = (((strategy.position_size > 0 and bar == 1) or  
         (strategy.position_size < 0 and bar == -1)) and  
        body > abody / 2)

利点

  1. RSIの逆転信号を追跡し,過買い/過売点を及ばないようにします.

  2. RSIの逆転特性を活用して ターニングポイントを把握します

  3. 引き戻り後にさらなる追跡を避けるために,出口論理にバーの方向とサイズを組み込む.

リスク と 解決策

  1. RSIからの誤った信号のリスク

    • 解決策: 誤った信号を避けるため,信号を他の指標で確認する
  2. 追跡信号の時に価格がかなり下がった可能性があり 損失のリスクが増加しています

    • 解決法: 入力時にポジションサイズを減らすか,入力のタイミングを最適化する
  3. 収益性の完全転換前の早期離脱リスク

    • 解決策: 利益を得る機会を増やすために出口論理を改善する

増進 の 機会

  1. オーバー買い/オーバーセールレベルのパラメータを最適化,バックバック期間など,異なる市場に基づいて

  2. 追跡信号のサイズを下げるような位置サイズ調整

  3. 追跡信号を超えたフィルターを追加することで,エントリータイミングを改善します

  4. 収益性を高めるために出口を拡大します.

  5. トレーリングストップやコーンストップなどの損失を減らすためにストップを最適化します

概要

この戦略は,RSIの過剰購入/過剰売却信号を追跡することによって逆転取引を実施する.逆転信号を捕捉する利点があるが,誤った信号や損失のリスクも伴う.さらなる最適化は戦略の安定性と収益性を向上させる.


/*backtest
start: 2023-09-20 00:00:00
end: 2023-09-27 00:00:00
period: 15m
basePeriod: 5m
exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}]
*/

//Noro
//2018

//@version=2
strategy(title = "Noro's Anti RSI Strategy v1.0", shorttitle = "Anti RSI str 1.0", overlay = true, default_qty_type = strategy.percent_of_equity, default_qty_value = 100, pyramiding = 0)

//Settings
needlong = input(true, defval = true, title = "Long")
needshort = input(true, defval = true, title = "Short")
usemar = input(false, defval = false, title = "Use Martingale")
capital = input(100, defval = 100, minval = 1, maxval = 10000, title = "Capital, %")
rsiperiod1 = input(14, defval = 14, minval = 2, maxval = 50, title = "RSI Period")
rsilimit1 = input(25, defval = 25, minval = 1, maxval = 100, title = "RSI limit")
showarr = input(false, defval = false, title = "Show Arrows")
fromyear = input(1900, defval = 1900, minval = 1900, maxval = 2100, title = "From Year")
toyear = input(2100, defval = 2100, minval = 1900, maxval = 2100, title = "To Year")
frommonth = input(01, defval = 01, minval = 01, maxval = 12, title = "From Month")
tomonth = input(12, defval = 12, minval = 01, maxval = 12, title = "To Month")
fromday = input(01, defval = 01, minval = 01, maxval = 31, title = "From day")
today = input(31, defval = 31, minval = 01, maxval = 31, title = "To day")

//RSI
uprsi1 = rma(max(change(close), 0), rsiperiod1)
dnrsi1 = rma(-min(change(close), 0), rsiperiod1)
rsi = dnrsi1 == 0 ? 100 : uprsi1 == 0 ? 0 : 100 - (100 / (1 + uprsi1 / dnrsi1))
uplimit = 100 - rsilimit1
dnlimit = rsilimit1

//Body
body = abs(close - open)
abody = sma(body, 10)

//Signals
bar = close > open ? 1 : close < open ? -1 : 0
overbought = rsi > uplimit
oversold = rsi < dnlimit

up1 = bar == -1 and strategy.position_size == 0 and overbought[1] and overbought == false
dn1 = bar == 1 and strategy.position_size == 0 and oversold[1] and oversold == false
up2 = bar == -1 and strategy.position_size > 0 and overbought == false
dn2 = bar == 1 and strategy.position_size < 0 and oversold == false

norma = overbought == false and oversold == false
exit = (((strategy.position_size > 0 and bar == 1) or (strategy.position_size < 0 and bar == -1)) and body > abody / 2)

//Arrows
col = exit ? black : up1 or dn1 or up2 or dn2 ? blue : na
needup = up1 or up2
needdn = dn1 or dn2
needexitup = exit and strategy.position_size < 0
needexitdn = exit and strategy.position_size > 0
plotarrow(showarr and needup ? 1 : na, colorup = blue, colordown = blue, transp = 0)
plotarrow(showarr and needdn ? -1 : na, colorup = blue, colordown = blue, transp = 0)
plotarrow(showarr and needexitup ? 1 : na, colorup = black, colordown = black, transp = 0)
plotarrow(showarr and needexitdn ? -1 : na, colorup = black, colordown = black, transp = 0)

//Trading
profit = exit ? ((strategy.position_size > 0 and close > strategy.position_avg_price) or (strategy.position_size < 0 and close < strategy.position_avg_price)) ? 1 : -1 : profit[1]
mult = usemar ? exit ? profit == -1 ? mult[1] * 2 : 1 : mult[1] : 1
lot = strategy.position_size == 0 ? strategy.equity / close * capital / 100 * mult : lot[1]

if up1 or up2
    if strategy.position_size < 0
        strategy.close_all()
        
    strategy.entry("Long", strategy.long, needlong == false ? 0 : lot, when=(time > timestamp(fromyear, frommonth, fromday, 00, 00) and time < timestamp(toyear, tomonth, today, 23, 59)))

if dn1 or dn2
    if strategy.position_size > 0
        strategy.close_all()
        
    strategy.entry("Short", strategy.short, needshort == false ? 0 : lot, when=(time > timestamp(fromyear, frommonth, fromday, 00, 00) and time < timestamp(toyear, tomonth, today, 23, 59)))
    
if time > timestamp(toyear, tomonth, today, 23, 59) or exit
    strategy.close_all()

もっと