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)