is the Hull Moving Average Cross (simple for Alert friendliness)
开源脚本

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

免责声明

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

想在图表上使用此脚本?
//@version=2 
//                            is the Hull Moving Average Cross (simple for Alert friendliness) by SeaSide420
study("HMA_X", overlay=true)
jah=input(title="HullMA cross",type=integer,defval=14)
n2ma=2*wma(close,round(jah/2))
nma=wma(close,jah)
diff=n2ma-nma
sqn=round(sqrt(jah))
n2ma1=2*wma(close[1],round(jah/2))
nma1=wma(close[1],jah)
diff1=n2ma1-nma1
sqn1=round(sqrt(jah))
n1=wma(diff,sqn)
n2=wma(diff1,sqn)
cannabist  =n1>n2?green:black
of         =n1>n2?black:red
cantheist  =n1>n2?green:red
n1e=plot(n1, title="HMA1", color=cannabist, linewidth=2, offset=2)
n2e=plot(n2, title="HMA2", color=of, linewidth=2, offset=2)
fill(n1e, n2e, color=cantheist, transp=80)// o_O // hi! :-)