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)