forked from victorncg/blog_tradingcomdados
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathestudodecorrelacao.rmd
215 lines (148 loc) · 5.86 KB
/
estudodecorrelacao.rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
---
output:
word_document: default
html_document: default
---
# Estudo de correlação entre ações da Bolsa de Valores de São Paulo
### Para realizar esse estudo, utilizei dados de 33 empresas com ações listadas na Bolsa de Valores de São Paulo. Para uma cada delas, utilizei o Yahoo Finanças (https://br.financas.yahoo.com/) para obter os dados no intervalo de tempo desejado e baixei o arquivo .csv correspondente. Finalmente, salvei todos os arquivos .csv em um diretório à parte, para facilitar a importação dos arquivos no R.
### O primeiro passo é carregar as libraries que precisaremos para o estudo
```{r setup, include=TRUE, warning=FALSE, message=FALSE}
library(ggplot2)
library(readr)
library(dplyr)
library(corrplot)
```
## Importando dados das ações
```{r, include=TRUE, warning=FALSE, message=FALSE}
# Insira aqui o diretório onde estão os arquivos .csv
path <- "C:/Users/..."
setwd(path)
oname <- list.files(path=getwd())
numfiles <- length(oname)
Adjcloses <- read.csv("BBAS3.SA.csv")[1]
for(i in c(1:numfiles))
{
name <- substr(oname[i],length(oname[i]),length(oname[i])+4)
temp <- assign(name, read.csv(oname[i],
col.names = c("Date", "Open", "High", "Low", "Close",
paste(name),"Volume"), na.strings=c("","null")
))
Adjcloses <- merge(Adjcloses,temp[,c(1,6)],by="Date",all = TRUE)
}
Adjcloses$Date1 <- as.Date(Adjcloses$Date, format = "%Y-%m-%d")
```
## Vamos plotar agora as ações por setor da economia
### Bancos
```{r, echo=F, warning=FALSE, message=FALSE, fig.width = 8}
# Criar gráfico da variação do preço das ações
aa <- Adjcloses
aa[ aa==0 ] <- NA
a <- ggplot() +
geom_line(data = aa, aes(x = Date1, y = aa$ABCB4, color = "ABCB4")) +
geom_line(data = aa, aes(x = Date1, y = aa$BPAN4, color = "BPAN4")) +
geom_line(data = aa, aes(x = Date1, y = aa$BBAS3, color = "BBAS3")) +
geom_line(data = aa, aes(x = Date1, y = aa$BBDC4, color = "BBDC4")) +
geom_line(data = aa, aes(x = Date1, y = aa$ITUB4, color = "ITUB4")) +
xlab('Data') +
ylab('Preço')
a$labels$colour <- "Bancos"
print(a)
```
### Mineradoras e Metalúrgicas
```{r, echo=F, warning=FALSE, message=FALSE, fig.width = 9}
b <- ggplot() +
geom_line(data = aa, aes(x = Date1, y = aa$USIM5, color = "USIM5")) +
geom_line(data = aa, aes(x = Date1, y = aa$GOAU4, color = "GOAU4")) +
geom_line(data = aa, aes(x = Date1, y = aa$CSNA3, color = "CSNA3")) +
geom_line(data = aa, aes(x = Date1, y = aa$VALE5, color = "VALE5")) +
xlab('Data') +
ylab('Preço')
b$labels$colour <- "Mineradoras e Metalúrgicas"
print(b)
```
### Celulose
```{r, echo=F, warning=FALSE, message=FALSE, fig.width = 8}
c <- ggplot() +
geom_line(data = aa, aes(x = Date1, y = aa$FIBR3, color = "FIBR3")) +
geom_line(data = aa, aes(x = Date1, y = aa$SUZB5, color = "SUZB5")) +
xlab('Data') +
ylab('Preço')
c$labels$colour <- "Celulose"
print(c)
```
### Serviços Públicos
```{r, echo=F, warning=FALSE, message=FALSE, fig.width = 9}
d <- ggplot() +
geom_line(data = aa, aes(x = Date1, y = aa$SAPR4, color = "SAPR4")) +
geom_line(data = aa, aes(x = Date1, y = aa$SBSP3, color = "SBSP3")) +
geom_line(data = aa, aes(x = Date1, y = aa$CGAS3, color = "CGAS3")) +
xlab('Data') +
ylab('Preço')
d$labels$colour <- "Serviços Públicos"
print(d)
```
### Energia Elétrica
```{r, echo=F, warning=FALSE, message=FALSE, fig.width = 9}
e <- ggplot() +
geom_line(data = aa, aes(x = Date1, y = aa$CMIG4, color = "CMIG4")) +
geom_line(data = aa, aes(x = Date1, y = aa$ELET3, color = "ELET3")) +
geom_line(data = aa, aes(x = Date1, y = aa$ELPL4, color = "ELPL4")) +
geom_line(data = aa, aes(x = Date1, y = aa$ENBR3, color = "ENBR3")) +
geom_line(data = aa, aes(x = Date1, y = aa$EQTL3, color = "EQTL3")) +
xlab('Data') +
ylab('Preço')
e$labels$colour <- "Energia Elétrica"
print(e)
```
### Construção
```{r, echo=F, warning=FALSE, message=FALSE, fig.width = 8}
f <- ggplot() +
geom_line(data = aa, aes(x = Date1, y = aa$EZTC3, color = "EZTC3")) +
geom_line(data = aa, aes(x = Date1, y = aa$ELET3, color = "MRVE3")) +
geom_line(data = aa, aes(x = Date1, y = aa$ELPL4, color = "CYRE3")) +
xlab('Data') +
ylab('Preço')
f$labels$colour <- "Construção"
print(f)
```
### Petróleo
```{r, echo=F, warning=FALSE, message=FALSE, fig.width = 8}
g <- ggplot() +
geom_line(data = aa, aes(x = Date1, y = aa$PETR4, color = "PETR4")) +
geom_line(data = aa, aes(x = Date1, y = aa$QGEP3, color = "QGEP3")) +
xlab('Data') +
ylab('Preço')
g$labels$colour <- "Construção"
print(g)
```
### Maquinário
```{r, echo=F, warning=FALSE, message=FALSE, fig.width = 8}
h <- ggplot() +
geom_line(data = aa, aes(x = Date1, y = aa$MYPK3, color = "MYPK3")) +
geom_line(data = aa, aes(x = Date1, y = aa$POMO4, color = "POMO4")) +
geom_line(data = aa, aes(x = Date1, y = aa$RAPT4, color = "RAPT4")) +
geom_line(data = aa, aes(x = Date1, y = aa$TUPY3, color = "TUPY3")) +
geom_line(data = aa, aes(x = Date1, y = aa$WEGE3, color = "WEGE3")) +
xlab('Data') +
ylab('Preço')
h$labels$colour <- "Maquinário"
print(h)
```
### Varejo
```{r, echo=F, warning=FALSE, message=FALSE, fig.width = 8}
i <- ggplot() +
geom_line(data = aa, aes(x = Date1, y = aa$BTOW3, color = "BTOW3")) +
geom_line(data = aa, aes(x = Date1, y = aa$LAME4, color = "LAME4")) +
geom_line(data = aa, aes(x = Date1, y = aa$HGTX3, color = "HGTX3")) +
geom_line(data = aa, aes(x = Date1, y = aa$LREN3, color = "LREN3")) +
xlab('Data') +
ylab('Preço')
i$labels$colour <- "Varejo"
print(i)
```
## Vamos agora criar uma matriz de correlação entre o preço das ações
```{r fig2, fig.height = 10, fig.width = 10, fig.align = "center",echo=F}
Adjcloses[,-c(1,35)] %>%
cor(use="complete.obs", method="spearman") %>%
corrplot(type="lower", method="number", diag=FALSE,number.cex=0.70,number.font=1)
```