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
Skrip open-source

Dalam semangat TradingView, penulis dari skrip ini telah mempublikasikannya ke sumber-terbuka, maka trader dapat mengerti dan memverifikasinya. Semangat untuk penulis! Anda dapat menggunakannya secara gratis, namun penggunaan kembali kode ini dalam publikasi diatur oleh Tata Tertib. Anda dapat memfavoritkannya untuk digunakan pada chart

Pernyataan Penyangkalan

Informasi dan publikasi tidak dimaksudkan untuk menjadi, dan bukan merupakan saran keuangan, investasi, perdagangan, atau rekomendasi lainnya yang diberikan atau didukung oleh TradingView. Baca selengkapnya di Persyaratan Penggunaan.

Inggin menggunakan skrip ini pada chart?
//@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)