tmr0

Moving RSI

Moving RSI oscilator. Triangle up - enter long, triangle down - short.
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
study("Moving RSI", shorttitle="tMRSI", overlay=false, precision=0)

rsilen=input(3, "RSI length")
smalen=input(20, "Moving average length")
chan=input(20, "RSI bands width", step=5)

s=hl2-sma(hl2,smalen)
z=rsi(s,rsilen)

buy0=z<chan
sell0=z>(100-chan)

buy = buy0?true:(not buy0 and not sell0)?buy[1]:false
sell = sell0?true:(not buy0 and not sell0)?sell[1]:false

enterL = buy and sell[1]
enterS = sell and buy[1]

clr = buy0?green:sell0?red:#b08040
plot(s, style =columns, color = clr, transp=65)

plotshape(enterL, "Long", style=shape.triangleup, color=teal, location=location.bottom)
plotshape(enterS, "Short", style=shape.triangledown, color=maroon, location=location.bottom)