Niklaus

Beta

en.wikipedia.org/wiki/Beta_(finance)
Beta is a measure of the risk arising from exposure to general market movements as opposed to idiosyncratic factors.
The market portfolio of all investable assets has a beta of exactly 1 (here the S&P500). A beta below 1 can indicate either an investment with lower volatility than the market, or a volatile investment whose price movements are not highly correlated with the market
开源脚本

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

免责声明

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

想在图表上使用此脚本?
study(title="Beta", shorttitle="Beta")

//by Niklaus
//SHOULD BE USED TOGETHER WITH "Alpha" INDICATOR
//beta (β or beta coefficient) of an investment indicates whether the investment is more or less volatile than the market. 
//In general, a beta less than 1 indicates that the investment is less volatile than the market,
//while a beta more than 1 indicates that the investment is more volatile than the market. Volatility is measured as the fluctuation of the price around the mean.

//Beta is a measure of the risk arising from exposure to general market movements as opposed to idiosyncratic factors. 
//The market portfolio of all investable assets has a beta of exactly 1 (here the S&P500). A beta below 1 can indicate either an investment with lower volatility than the market, 
//or a volatile investment whose price movements are not highly correlated with the market. 
//An example of the first is a treasury bill: the price does not go up or down a lot, so it has a low beta. 
//An example of the second is gold. The price of gold does go up and down a lot, but not in the same direction or at the same time as the market

//https://en.wikipedia.org/wiki/Beta_(finance)

sym = "SPX500", res=period, src = close, length = input(title = "Beta Window", defval=300, minval=1)
ovr = security(sym, res, src)

ret = ((close - close[1])/close)
retb = ((ovr - ovr[1])/ovr)
secd = stdev(ret, length), mktd = stdev(retb, length)
Beta = correlation(ret, retb, length) * secd / mktd

plot(Beta, color=blue, style=area, transp=40)