DMI Crosses

開源腳本

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

免責聲明

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

想在圖表上使用此腳本?
study(title="TO-DMI", shorttitle="TO-DMI")
lensig = input(13, title="ADX Smoothing", minval=1, maxval=50)
len = input(5, minval=1, title="DI Length")
up = change(high)
down = -change(low)
trur = rma(tr, len)
plus = fixnan(100 * rma(up > down and up > 0 ? up : 0, len) / trur)
minus = fixnan(100 * rma(down > up and down > 0 ? down : 0, len) / trur)
sum = plus + minus 
adx = 100 * rma(abs(plus - minus) / (sum == 0 ? 1 : sum), lensig)
plot(plus, color=red, title="+DI")
plot(minus, color=green, title="-DI")
plot(adx, color=teal, title="ADX")
plot(cross(plus, minus) ? plus : na, color=black, style = cross, linewidth = 10)