tmr0

Moving RSI by tmr0

My moveing RSI strategy. Work on any pairs and timeframes
開源腳本

本著真正的TradingView精神,該腳本的作者將其開源發布,以便交易者可以理解和驗證它。為作者喝彩吧!您可以免費使用它,但在出版物中重複使用此代碼受網站規則的約束。 您可以收藏它以在圖表上使用。

免責聲明

這些資訊和出版物並不意味著也不構成TradingView提供或認可的金融、投資、交易或其他類型的意見或建議。請在使用條款閱讀更多資訊。

想在圖表上使用此腳本?
//coded by tmr0
//@version=2
strategy("Moving RSI by tmr0",shorttitle="tMRSI", overlay=false, default_qty_type=strategy.cash, default_qty_value=7000,  precision=0)

rsilen=input(3)
smalen=input(20)
chan=input(20, step=5)

s=hl2-sma(hl2,smalen)
z=rsi(s,rsilen)
plot(s, style =areabr, color = #b08040, transp=65)
hline(0, linestyle=dashed)
enterL = z<chan
enterS = z>(100-chan)

plotshape(enterL, "EnterL", style=shape.triangleup, color=teal, location=location.bottom)
plotshape(enterS, "EnterS", style=shape.triangledown, color=maroon, location=location.bottom)
//plotshape(overL and not enterS, "StopL", style=shape.square, color=teal, location=location.bottom)
//plotshape(overS and not enterL, "StopS", style=shape.square, color=maroon, location=location.bottom)

strategy.entry("Long", strategy.long, when=enterL)
strategy.entry("Short", strategy.short, when=enterS)
//strategy.close("Short", when=overS)
//strategy.close("Long", when=overL)