InvestitoreComune

Chauvenet Radius

The Chauvenet criterion is a well-known criterion of selection and rejection of the data used by the Physics. It establishes that in an experiment is well to discard the data whose distance from the average is greater than a certain number of the delta.
In the stock market if prices move away from the average with a volatility too high are suspect. This principle is embodied in the Chauvenet floor with the definition of two asymptotes and two data areas rejection.
The Chauvenet Radius is the quadratic sum of the delta (distance from average) and sigmoid (volatility) and is therefore an obvious market stability index. In fact the moments when price strongly moves away from the average with high volatility coincide with the moments of high instability of the market.

It can be considered an evolution of John Bollinger method introduced during the '80.

Source: www.performancetradi...alo-Fabbri_index.htm
Script de código abierto

Siguiendo el verdadero espíritu de TradingView, el autor de este script lo ha publicado en código abierto, para que los traders puedan entenderlo y verificarlo. ¡Un hurra por el autor! Puede utilizarlo de forma gratuita, aunque si vuelve a utilizar este código en una publicación, debe cumplir con lo establecido en las Normas internas. Puede añadir este script a sus favoritos y usarlo en un gráfico.

Exención de responsabilidad

La información y las publicaciones que ofrecemos, no implican ni constituyen un asesoramiento financiero, ni de inversión, trading o cualquier otro tipo de consejo o recomendación emitida o respaldada por TradingView. Puede obtener información adicional en las Condiciones de uso.

¿Quiere utilizar este script en un gráfico?
//@version=2
study("Chauvenet Radius",shorttitle="Chavrad",overlay=false)
len=input(defval=20,minval=1)
price=close
avg=sma(price,len)
x=price-avg
y=stdev(price,len)
rad=pow(x+y,2)
ema=ema(rad,10)
hist1=rad-ema
hist2=ema-rad
histpos=hist1<0?0:hist1
histneg=hist2<0?0:hist2
plot(rad,color=lime,transp=80)
plot(ema,color=red,transp=80)
plot(histpos,style=columns,color=green)
plot(histneg,style=columns,color=maroon)