gb50k

After Hours Daytime - Consistency


Use only on Daily charts!!

When average AH moves are consistent with average daytime moves it tends to indicate a trend. The phenomenon is not obvious on a day to day basis but is easy to see with the smoothed changes.

Blue is smoothed daytime change and black is smoothed AH gap. The length is how many periods back to start the differentiation between AH and daytime.

Pink background shows BOTH smoothed AH and daytime changes are falling.
Lime background indicates both are rising.

When used on NYA with parameters shown the indicator give warnings with high specificity and reliability for the broader
开源脚本

本着真正的TradingView精神,该脚本的作者将其开源发布,以便交易者可以理解和验证它。为作者喝彩!您可以免费使用它,但在出版物中重复使用此代码受网站规则的约束。 您可以收藏它以在图表上使用。

免责声明

这些信息和出版物并不意味着也不构成TradingView提供或认可的金融、投资、交易或其它类型的建议或背书。请在使用条款阅读更多信息。

想在图表上使用此脚本?
study(shorttitle="AHvsID1", title="AHvsID1", overlay=true)
//
//Works only on DAILY CHARTS
//Aqua line is intraday contribution
//Black line is overnight gap
//Length: The reference date at which daytime and AH start at equality.

length = input(20, "Length", minval=1)
smooth = input(40, "SMA",minval=1)
src = close
sro = open
src1 = src[1]
intrad=src-sro
co=cum(intrad)
AH=sro-src1
oc1=cum(AH)
summ=co+oc1
offst1=co[length]-close[length]
offst2=oc1[length]-close[length]
IDC=sma(co-offst1,smooth)
AHC=sma(oc1-offst2,smooth)
plot(IDC, color=aqua,linewidth=3)
plot(AHC, color=black, linewidth=3)
bgcolor(change(IDC) < 0 and change(AHC) < 0 ? fuchsia : change(IDC) > 0 and change(AHC) > 0 ? lime : white, transp=90)