MarcoValente

close-hl2 Price action

135
Still not tested, but looks very good ; it is the difference between EMA median price and EMA close in different time frame, I used 240, 60, and the current Time frame ,plus one more customed period ; can forcast the price movement , but it s not in scale, so it can not show how much higher or lower the price can goes but just the next direction. I think intraday on 5 ,15 ,60 better then high frame.If you need to try on Daily frame have to change the period to higher then Daily
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?
//@version=2
//by Marco
study(title="close-hl2")
re=input(defval="15",type=resolution,title="custom period")
len=input(20)
dd=ema(hl2,len)
cc=ema(close,len)
er=(cc-dd)
er1 = security(tickerid, '240', er)
er5 = security(tickerid, re, er)
er60 = security(tickerid, '60', er)
plot(er1,color=blue,linewidth=1,style=line,transp=0,title="240m")
plot(er5,color=blue,style=area,transp=70,title="Custom Resolution")
plot(er60,color=green,transp=0,title="60m")
plot(er,color=red,style=columns,transp=60,title="timaframe")
hline(0)