tmr0

Moving RSI by tmr0

My moveing RSI strategy. Work on any pairs and timeframes
Script open-source

Nello spirito di condivisione promosso da TradingView, l'autore (al quale vanno i nostri ringraziamenti) ha deciso di pubblicare questo script in modalità open-source, così che chiunque possa comprenderlo e testarlo. Puoi utilizzarlo gratuitamente, ma il riutilizzo del codice è subordinato al rispetto del Regolamento. Per aggiungerlo al grafico, mettilo tra i preferiti.

Declinazione di responsabilità

Le informazioni ed i contenuti pubblicati non costituiscono in alcun modo una sollecitazione ad investire o ad operare nei mercati finanziari. Non sono inoltre fornite o supportate da TradingView. Maggiori dettagli nelle Condizioni d'uso.

Vuoi usare questo script sui tuoi grafici?
//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)