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
開源腳本

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

免責聲明

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

想在圖表上使用此腳本?
//@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)