xel_arjona

Standard Error Bands by @XeL_arjona

Standard Error Bands - Code by @XeL_arjona
Original implementation by:
Traders issue: Stocks & Commodities V. 14:9 (375-379):
Standard Error Bands by Jon Andersen
Version 1



For a quick and publicly open explanation of this Statistical indicator, you can refer at Here!

Extract from the former URL:
Standard Error bands are quite different than Bollinger's. First, they are bands constructed around a linear regression curve. Second, the bands are based on two standard errors above and below this regression line. The error bands measure the standard error of the estimate around the linear regression line. Therefore, as a price series follows the course of the regression line the bands will narrow, showing little error in the estimate. As the market gets noisy and random, the error will be greater resulting in wider bands.


开源脚本

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

免责声明

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

想在图表上使用此脚本?
// Standard Error Bands - Code by @XeL_arjona
// Original implementation by:
//     Traders issue: Stocks & Commodities V. 14:9 (375-379): 
//                    Standard Error Bands by Jon Andersen
// Ver 1
study(title="Standard Error Bands by @XeL_arjona", shorttitle="StDeBands", overlay=true)
len = input(defval=21, minval=1, title="Linear Regression Window:")
sm = input(true, title="Use Jon Andersen's Smooth of Median:")
src = close
// Standard Error Band Function
stdeB(array,p,mult,dir) =>
    lr = sm ? sma(linreg(array,p,0),1) : linreg(array,p,0)
    stde = stdev(lr,p)/sqrt(p)
    d = dir ? 1 : -1
    eband = lr + d * mult * stde
lrc = sma(linreg(src, len, 0),1)
m = plot(lrc, color = blue, title = "OLS Regression Curve", style = line, linewidth = 2)
ub = plot(stdeB(close,len,2,true), color = green, title = 'StdEu', style = line, linewidth = 1)
bb = plot(stdeB(close,len,2,false), color = red, title = 'StdEb', style = line, linewidth = 1)
fill(m,ub, color=olive, title="StdE_U", transp=81)
fill(m,bb, color=orange, title="StdE_B", transp=81)