Dear Nick Cox and Clyde Schechter
I am calculating the stock price crash risk. The crash variable is measured as: An indicator variable that equals one if a firm experiences one or more firm-specific weekly returns exceeding 3.09
standard deviations below the mean firm-specific weekly returns over the fiscal year and zero otherwise, with 3.09 chosen to generate frequencies of 0.1% in a normal distribution. I am having the firm-specific weekly returns and i have calculated the standard deviation and mean by the following commands:
egen sd=sd(rret), by(permno year)
egen mean=mean(rret), by(permno year)
I want to ask that how I will generate the indicator variable to 1 if a firm experiences one or more firm-specific weekly returns exceeding 3.09 standard deviations below the mean firm-specific weekly returns. Kindly assist me in this regard.
Regards
I am calculating the stock price crash risk. The crash variable is measured as: An indicator variable that equals one if a firm experiences one or more firm-specific weekly returns exceeding 3.09
standard deviations below the mean firm-specific weekly returns over the fiscal year and zero otherwise, with 3.09 chosen to generate frequencies of 0.1% in a normal distribution. I am having the firm-specific weekly returns and i have calculated the standard deviation and mean by the following commands:
egen sd=sd(rret), by(permno year)
egen mean=mean(rret), by(permno year)
I want to ask that how I will generate the indicator variable to 1 if a firm experiences one or more firm-specific weekly returns exceeding 3.09 standard deviations below the mean firm-specific weekly returns. Kindly assist me in this regard.
Regards
Comment