TradingView
xel_arjona
27 paź 2015 02:05

Standard Error Bands by @XeL_arjona 

Euro Fx/U.S. DollarFXCM

Opis

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.

Komentarze
xel_arjona
I need to give you guys an apology given that the current code posted here is wrongly applied. The Bands constructed are ERROR OF THE MEAN, and should'd be taken as is, not as Mr. Jon Andersen described in it's original idea. A version 2 of the code is already published here: tradingview.com/script/qQjavJxT-Standard-Error-of-the-Estimate-Composite-Bands/

Thanks in advance and Sorry for the inconvenience!
cooney_s
Good tool. Questions: What measure is it that you are trying to achieve? 1.) a change in momentum? 2.) price squeeze vs expansion? 3.) deviation from the Mean? How do you plan on implementing the tools? I have done my fair share of work with linear regression so I am curious which path your are traveling down. Thanks for sharing!
xel_arjona
@Coondawg71 This is not an original idea of mine, is a tool developed by Jon Andersen that take a different approach from the Bollinger's Standard Deviation Bands from an average. (typically a simple rolling mean). I try to write the Standard Error function given that is not at all on TradingView's standard function library but is present on must statistical or trading platforms and give it a use on an indicator like this. Andersen took the concept of using a statistical concept approach, that's why he is suggesting use a Linear Regression as a real statistical mean and not any other rolling mean (or time series average 'moving'), then he add to it both a positive and a negative Standard Error's derivative line, which is the standard deviation of the sampling distribution of a statistic (the Linear Reg Curve). en.wikipedia.org/wiki/Standard_error - The practical idea is to find momentum or trend continuation by the widening or narrowing from the bands against the center Linear Regression Curve. ;)
xel_arjona
Small Bug correction: Line 12 should look like:
lr = sm ? sma(linreg(array,p,0),3) : linreg(array,p,0)
Więcej