当前位置:首页>编程日记>正文

R语言 股价分析

首先判断股价的分布是不是正态分布:

#获取3m公司收盘价
mmmdata = read.csv("E:\kuaipan\A Introduction to Analysis of Financial Data with R\chapter 1\ch1data\d-mmm-0111.txt",header = T)
mmmprice = as.numeric(sapply(mmmdata, function(l){substring(l,15)}))#绘制频度直方图
hist(mmmprice, nclass = 35)#绘制密度图,并和同方差同均值的正态分布做比较
mmmprice.density=density(mmmprice)
x=seq(-.1,.1,.001) # Create a sequence of x with increment 0.001.
y1=dnorm(x,mean(mmmprice),sd(mmmprice))
plot(mmmprice.density$x,mmmprice.density$y,xlab='rtn',ylab='density',type='l')
lines(x, y1, lty=2)
legend(0.06,32,c('price','Norm'),lty = c(1,2))#使用流行的qq图来与正态分布做比较
qqnorm(mmmprice)
qqline(mmmprice)


#ohlc analysis
#ohlc means open highest lowest and close price
library(quantmod)
getSymbols("AAPL",from="2015-01-03",to="2015-09-30")
chartSeries(AAPL)#the left protuberance means open price, the right one means close price
barChart(AAPL,theme='white.mono',bar.type='ohlc')#最近n个price的均值的变化趋势——移动平均曲线
"ma" <- function(pri,n,plot=TRUE){# pri: price series of an asset (univariate)# n: window size#nob=length(pri)ma1=prirange=max(pri)-min(pri)if(nob > n){psum=sum(pri[1:(n-1)])ma1[1:n]=psum/(n-1)for (i in n:nob){psum=psum+pri[i]ma1[i]=psum/npsum=psum-pri[i-n+1]}}if(plot){par(mfcol=c(1,1))plot(pri,type='l',xlab="time index")lines(ma1,lty=2)loc=max(pri)-range/3legend(n/2,loc,c(paste("n = ",c(n))),lty=2)title(main='Moving average plot')}ma <- list(ma=ma1)
}
ma(as.numeric(AAPL$AAPL.Close))


下面这段代码可以用来对二元正态假设进行判断, 代码中对IBM 和 SP 的股价收益率进行了分析

分析手段1: 协方差矩阵

分析手段2: 用rmnorm函数生成了2元正态分布的变量, 对比了两个plot, 来得出ibm和sp的股价收益率不符合二元正态假设!

da = read.table("E:\kuaipan\A Introduction to Analysis of Financial Data with R\chapter 1\ch1data\m-ibmsp-2611.txt", header = T)
ibm=log(da$ibm+1) # Transform to log returns
sp=log(da$sp+1)
tdx=c(1:nrow(da))/12+1926 # Create time index
par(mfcol=c(2,1))
plot(tdx,ibm,xlab='year',ylab='lrtn',type='l')
title(main='(a) IBM returns')
plot(tdx,sp,xlab='year',ylab='lrtn',type='l') # X-axis first.
title(main='(b) SP index')
cor(ibm,sp)  # Obtain sample correlation
m1=lm(ibm~sp)  # Fit the Market Model (linear model)
summary(m1)
plot(sp,ibm,cex=0.8)  # Obtain scatter plot
ablines(0.008,.807) # Add the linear regression lineda = read.table("E:\kuaipan\A Introduction to Analysis of Financial Data with R\chapter 1\ch1data\m-ibmsp-2611.txt", header = T)
ibm = log(da$ibm + 1)
sp = log(da$sp + 1)
rt=cbind(ibm, sp)
m1=apply(rt,2,mean)
v1= cov(rt) #协方差, 判断两个维度的相关度
library(mnormt)
x=rmnorm(1029,mean=m1,varcov=v1)#随机二元正态分布生成
plot(x[,2],x[,1],xlab='sim-sp',ylab='sim-ibm',cex=.8)



http://www.coolblog.cn/news/7d3b307a67332d20.html

相关文章:

  • asp多表查询并显示_SpringBoot系列(五):SpringBoot整合Mybatis实现多表关联查询
  • s7day2学习记录
  • 【求锤得锤的故事】Redis锁从面试连环炮聊到神仙打架。
  • 矿Spring入门Demo
  • 拼音怎么写_老师:不会写的字用圈代替,看到孩子试卷,网友:人才
  • Linux 实时流量监测(iptraf中文图解)
  • Win10 + Python + GPU版MXNet + VS2015 + RTools + R配置
  • 美颜
  • shell访问php文件夹,Shell获取某目录下所有文件夹的名称
  • 如何优雅的实现 Spring Boot 接口参数加密解密?
  • LeCun亲授的深度学习入门课:从飞行器的发明到卷积神经网络
  • Mac原生Terminal快速登录ssh
  • java受保护的数据与_Javascript类定义语法,私有成员、受保护成员、静态成员等介绍...
  • mysql commit 机制_1024MySQL事物提交机制
  • 支撑微博千亿调用的轻量级RPC框架:Motan
  • jquery 使用小技巧
  • 2019-9
  • 法拉利虚拟学院2010 服务器,法拉利虚拟学院2010
  • vscode pylint 错误_将实际未错误的py库添加到pylint白名单
  • 科学计算工具NumPy(3):ndarray的元素处理
  • 工程师在工作电脑存 64G 不雅文件,被公司开除后索赔 41 万,结果…
  • linux批量创建用户和密码
  • newinsets用法java_Java XYPlot.setInsets方法代碼示例
  • js常用阻止冒泡事件
  • 气泡图在开源监控工具中的应用效果
  • 各类型土地利用图例_划重点!国土空间总体规划——土地利用
  • php 启动服务器监听
  • dubbo简单示例
  • 【设计模式】 模式PK:策略模式VS状态模式
  • [iptables]Redhat 7.2下使用iptables实现NAT
  • Ubuntu13.10:[3]如何开启SSH SERVER服务
  • CSS小技巧——CSS滚动条美化
  • JS实现-页面数据无限加载
  • 阿里巴巴分布式服务框架 Dubbo
  • 最新DOS大全
  • Django View(视图系统)
  • 阿里大鱼.net core 发送短信
  • 程序员入错行怎么办?
  • 两张超级大表join优化
  • 第九天函数
  • Linux软件安装-----apache安装
  • HDU 5988 最小费用流
  • Sorenson Capital:值得投资的 5 种 AI 技术
  • 《看透springmvc源码分析与实践》读书笔记一
  • 正式开课!如何学习相机模型与标定?(单目+双目+鱼眼+深度相机)
  • Arm芯片的新革命在缓缓上演
  • nagios自写插件—check_file
  • python3 错误 Max retries exceeded with url 解决方法
  • 行为模式之Template Method模式
  • 通过Spark进行ALS离线和Stream实时推荐