jjaskulowski

Gaussian smooth

Gaussian smooth of price. Colour telling the momentum bending (= second diff). Port of mq4 indicator.

Tip jar: 165PuWddQdWynFf3fmNi6tVCG6gWf4usKG. Thank you.
开源脚本

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

免责声明

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

想在图表上使用此脚本?
//@version=2
study(title="Gaussian smooth", shorttitle="GSmooth", overlay=true)
p = input(100, minval=1, title="Length")
price = input(close, title="Source")

pi=3.1415926535


w=2*pi/p
beta = (1 - cos(w))/(pow(1.414,2.0/3) - 1)
alfa = -beta + sqrt(beta*beta + 2*beta)
ret= pow(alfa,4)*price+4*(1-alfa)*nz(ret[1])-6*pow(1-alfa,2)*nz(ret[2])+4*pow(1-alfa,3)*nz(ret[3])-pow(1-alfa,4)*nz(ret[4])

diff2 = nz(ret[1]) - nz(ret[2]) - (nz(ret[2]) - nz(ret[3]) ) > 0
c= if diff2 > 0
    blue
else 
    red
    
plot(ret, color=c, title="MA")