金融时间序列分析 第一次作业
更新时间:2023-05-30 12:31:01 阅读量: 实用文档 文档下载
- 金融时间序列分析推荐度:
- 相关推荐
张老师的金融计量课作业答案 R软件
1.1
a.用百分数表示简单月收益率(略)
b.简单收益率换成对数收益率(略) c.把对数收益率用百分比表示出来(略)
d.对数收益率零均值检验( =0.05) 1>对于American Express data: dailylogre$V2
t = 1.6044, df = 2518, p-value = 0.1087
alternative hypothesis: true mean is not equal to 0
95 percent confidence interval: -0.01596993 0.15972365 sample estimates: mean of x 0.07187686 故接受原假设
2>对于Caterpillar data: dailylogre$V3
t = 1.4369, df = 2518, p-value = 0.1509
alternative hypothesis: true mean is not equal to 0
95 percent confidence interval:-0.02245558 0.14560208 sample estimates: mean of x 0.06157325 故接受原假设 3>对于Starbucks
张老师的金融计量课作业答案 R软件
data: dailylogre$V4
t = 1.6162, df = 2518, p-value = 0.1062
alternative hypothesis: true mean is not equal to 0
95 percent confidence interval:-0.02098409 0.21776370 sample estimates: mean of x 0.09838981 故接受原假设
1.2
a.用百分数表示简单月收益率(略)
b.简单收益率换成对数收益率(略) c.把对数收益率用百分比表示出来(略)
d.对数收益率零均值检验( =0.05) 1>对于IBM
data: dailylogre$V2
t = 2.1095, df = 347, p-value = 0.03562
alternative hypothesis: true mean is not equal to 0 95 percent confidence interval: 0.05899196 1.68541655 sample estimates: mean of x 0.8722043 故拒绝原假设
张老师的金融计量课作业答案 R软件
2>对于VW
data: dailylogre$V3
t = 4.3846, df = 347, p-value = 1.542e-05
alternative hypothesis: true mean is not equal to 0 95 percent confidence interval: 0.5955359 1.5644506 sample estimates: mean of x 1.079993 故拒绝原假设
3>对于EW
data: dailylogre$V4
t = 4.6899, df = 347, p-value = 3.937e-06
alternative hypothesis: true mean is not equal to 0 95 percent confidence interval: 0.8250521 2.0169110 sample estimates: mean of x 1.420982 故拒绝原假设
4>对于SP
data: dailylogre$V5
t = 3.3417, df = 347, p-value = 0.0009235
alternative hypothesis: true mean is not equal to 0 95 percent confidence interval: 0.329396 1.271850 sample estimates: mean of x 0.8006232 故拒绝原假设
1.3
a.
12
2004 2005 =1975 =1975 =1
平均年对数收益率==
其中, 为第 年对数收益率, 为第 年第 月的月对数收益率 则SP的平均年对数收益率=9.607479% b.
= =1× 0.09607479(2004 1975)=16.21876
1.4
张老师的金融计量课作业答案 R软件
a. 0: =0, =0.05 建立检验统计量 =
计算结果为 =1.81106 =0.070132
"Accept Null Hypothesis" 故接受原假设
b. 0: =0, =0.05 建立检验统计量
= (0,1)
计算结果为 = 6.23215
=4.60076e 10
"Reject Null Hypthesis;Accept Alternative Hypothesis" 故拒绝原假设,接受被择假设
(0,1)
1.5
a.计算月对数收益率(略)
b.
c. 汇率对数收益率的经验特征
Appendix
1.1R语言程序源码
setwd("F:/Financial Econometrics/Homework Guide/TsayDat") dailyre<-read.table(file="d-3stock.txt") dailyre$V2=dailyre$V2*100 dailyre$V3=dailyre$V3*100 dailyre$V4=dailyre$V4*100 summary(dailyre) sd(dailyre) library(fBasics) skewness(dailyre)
张老师的金融计量课作业答案 R软件
kurtosis(dailyre)-3
dailylogre<-dailyre
dailylogre$V2=log(1+dailyre$V2/100) dailylogre$V3=log(1+dailyre$V3/100) dailylogre$V4=log(1+dailyre$V4/100)
dailylogre$V2=dailylogre$V2*100 dailylogre$V3=dailylogre$V3*100 dailylogre$V4=dailylogre$V4*100 summary(dailylogre) sd(dailylogre) skewness(dailylogre) kurtosis(dailylogre)-3
t.test(x=dailylogre$V2,alternative="two.sided",mu=0) t.test(x=dailylogre$V3,alternative="two.sided",mu=0) t.test(x=dailylogre$V4,alternative="two.sided",mu=0)
1.2R语言程序源码
setwd("F:/Financial Econometrics/Homework Guide/TsayDat") dailyre<-read.table(file="m-ibm3dx7503.txt") dailyre$V2=dailyre$V2*100 dailyre$V3=dailyre$V3*100 dailyre$V4=dailyre$V4*100 dailyre$V5=dailyre$V5*100
summary(dailyre) sd(dailyre) library(fBasics) skewness(dailyre) kurtosis(dailyre)-3
dailylogre<-dailyre
dailylogre$V2=log(1+dailyre$V2/100) dailylogre$V3=log(1+dailyre$V3/100) dailylogre$V4=log(1+dailyre$V4/100) dailylogre$V5=log(1+dailyre$V5/100)
dailylogre$V2=dailylogre$V2*100 dailylogre$V3=dailylogre$V3*100 dailylogre$V4=dailylogre$V4*100 dailylogre$V5=dailylogre$V5*100
summary(dailylogre) sd(dailylogre) skewness(dailylogre) kurtosis(dailylogre)-3
t.test(x=dailylogre$V2,alternative="two.sided",mu=0) t.test(x=dailylogre$V3,alternative="two.sided",mu=0) t.test(x=dailylogre$V4,alternative="two.sided",mu=0) t.test(x=dailylogre$V5,alternative="two.sided",mu=0)
1.3R语言程序源码 接1.2
r<-sum(dailylogre$V5)/(2004-1975) exp(r*(2004-1975)/100)
1.4R语言程序源码
建立名为z.test的函数用于检验偏度
z.test<-function(skewness,n,alpha,alternative="two.sided"){ options(digits=6) result<-list()
t<-(skewness/sqrt(6/n))
张老师的金融计量课作业答案 R软件
p<-pnorm(t,lower.tail=FALSE) result$t<-t result$p<-p
if(alternative=="two.sided"){ p<-2*p result$p<-p }
else return("Unexpected Error") if(p<alpha){
result$conclusion<-("Accept Null Hypothesis") }
else {result$conclusion<-("Reject Null Hypthesis;Accept Alternative Hypothesis") }
return(result) }
建立名为z.test2的函数用于检验超额峰度
z.test2<-function(kurtosis,n,alpha,alternative="two.sided"){ options(digits=6) result<-list()
t<-((kurtosis-3)/sqrt(24/n)) p<-pnorm(t,lower.tail=FALSE) result$t<-t result$p<-p
if(alternative=="two.sided"){ p<-(min(2*p,2(1-p))) result$p<-p }
else return("Unexpected Error") if(p>alpha){
result$conclusion<-("Accept Null Hypothesis") }
else {result$conclusion<-("Reject Null Hypthesis;Accept Alternative Hypothesis") }
return(result) }
1.5R语言程序源码
setwd("F:/Financial Econometrics/Homework Guide/TsayDat") fxca<-read.table(file="d-fxca00.txt") fxuk<-read.table(file="d-fxuk00.txt") fxjp<-read.table(file="d-fxjp00.txt") fxeu<-read.table(file="d-fxeu00.txt")
fxca$V2=log(1+fxca$V2) fxuk$V2=log(1+fxuk$V2) fxjp$V2=log(1+fxjp$V2) fxeu$V2=log(1+fxeu$V2)
mean(fxca$V2) mean(fxuk$V2) mean(fxjp$V2) mean(fxeu$V2) min(fxca$V2) min(fxuk$V2) min(fxjp$V2) min(fxeu$V2) max(fxca$V2) max(fxuk$V2) max(fxjp$V2) max(fxeu$V2)
sd(fxca$V2) sd(fxuk$V2) sd(fxjp$V2) sd(fxeu$V2)
library(fBasics)
张老师的金融计量课作业答案 R软件
skewness(fxca$V2) skewness(fxuk$V2) skewness(fxjp$V2) skewness(fxeu$V2) kurtosis(fxca$V2)-3 kurtosis(fxuk$V2)-3 kurtosis(fxjp$V2)-3
正在阅读:
金融时间序列分析 第一次作业05-30
账户管理工作总结10-19
做家务的作文400字04-01
小学一年级数学暑假作业(应用题)10-11
知识竞赛题库汇总03-16
cost accounting test bank chapter 1511-15
浅析企业员工流失的原因与解决对策06-19
请相信诚信的力量作文300字07-15
中国饮品市场分析08-16
一 节 公 开 课 后 的 反 思09-13
- 教学能力大赛决赛获奖-教学实施报告-(完整图文版)
- 互联网+数据中心行业分析报告
- 2017上海杨浦区高三一模数学试题及答案
- 招商部差旅接待管理制度(4-25)
- 学生游玩安全注意事项
- 学生信息管理系统(文档模板供参考)
- 叉车门架有限元分析及系统设计
- 2014帮助残疾人志愿者服务情况记录
- 叶绿体中色素的提取和分离实验
- 中国食物成分表2020年最新权威完整改进版
- 推动国土资源领域生态文明建设
- 给水管道冲洗和消毒记录
- 计算机软件专业自我评价
- 高中数学必修1-5知识点归纳
- 2018-2022年中国第五代移动通信技术(5G)产业深度分析及发展前景研究报告发展趋势(目录)
- 生产车间巡查制度
- 2018版中国光热发电行业深度研究报告目录
- (通用)2019年中考数学总复习 第一章 第四节 数的开方与二次根式课件
- 2017_2018学年高中语文第二单元第4课说数课件粤教版
- 上市新药Lumateperone(卢美哌隆)合成检索总结报告
- 时间序列
- 作业
- 第一次
- 金融
- 分析
- 锤击预制方桩施工方案
- 四级专项练习(快速阅读、写作、阅读、听力、完形填空等各10来套题目)及答案
- 长输管道安装作业指导书
- 基于互联网的新媒体营销策略分析_逄超
- 白城师范学院经济困难学生情况统计表
- 积极培育和践行社会主义核心价值观(参考)
- 技术部员工加班相关规定
- 犹太人的智慧与成就
- 人生目标重要性(转)
- 新课程与教学改革培训材料
- 高等教育心理学(论述题)2011
- 节水灌溉实施方案
- C++复习(选择与填空无答案)
- 2014-2018年中国管道防爆阻火器市场分析与投资战略研究报告
- 最新的华为C8500刷机图文教程
- 高二初中生入团申请书范文
- 我国建设社会主义和谐文化的必要性
- Constitution Reflection
- 全球大震和中国及邻区中强震地震活动(2011年3—4月)
- 常用物体折射率表