# Load packages
# Core
library(tidyverse)
## ── Attaching core tidyverse packages ──────────────────────── tidyverse 2.0.0 ──
## ✔ dplyr 1.1.3 ✔ readr 2.1.4
## ✔ forcats 1.0.0 ✔ stringr 1.5.0
## ✔ ggplot2 3.4.3 ✔ tibble 3.2.1
## ✔ lubridate 1.9.2 ✔ tidyr 1.3.0
## ✔ purrr 1.0.2
## ── Conflicts ────────────────────────────────────────── tidyverse_conflicts() ──
## ✖ dplyr::filter() masks stats::filter()
## ✖ dplyr::lag() masks stats::lag()
## ℹ Use the conflicted package (<http://conflicted.r-lib.org/>) to force all conflicts to become errors
library(tidyquant)
## Loading required package: PerformanceAnalytics
## Loading required package: xts
## Loading required package: zoo
##
## Attaching package: 'zoo'
##
## The following objects are masked from 'package:base':
##
## as.Date, as.Date.numeric
##
##
## ######################### Warning from 'xts' package ##########################
## # #
## # The dplyr lag() function breaks how base R's lag() function is supposed to #
## # work, which breaks lag(my_xts). Calls to lag(my_xts) that you type or #
## # source() into this session won't work correctly. #
## # #
## # Use stats::lag() to make sure you're not using dplyr::lag(), or you can add #
## # conflictRules('dplyr', exclude = 'lag') to your .Rprofile to stop #
## # dplyr from breaking base R's lag() function. #
## # #
## # Code in packages is not affected. It's protected by R's namespace mechanism #
## # Set `options(xts.warn_dplyr_breaks_lag = FALSE)` to suppress this warning. #
## # #
## ###############################################################################
##
## Attaching package: 'xts'
##
## The following objects are masked from 'package:dplyr':
##
## first, last
##
##
## Attaching package: 'PerformanceAnalytics'
##
## The following object is masked from 'package:graphics':
##
## legend
##
## Loading required package: quantmod
## Loading required package: TTR
## Registered S3 method overwritten by 'quantmod':
## method from
## as.zoo.data.frame zoo
Take raw prices of five individual stocks and transform them into monthly returns five stocks: “SPY”, “EFA”, “IJS”, “EEM”, “AGG”
# Choose Stocks
symbols <- c("NKE", "ADS", "UA", "AMZN", "MSFT")
prices <- tq_get(x = symbols,
get = "stock.prices",
from = "2012-01-01",
to = "2017-01-01")
## Warning: There was 1 warning in `dplyr::mutate()`.
## ℹ In argument: `data.. = purrr::map(...)`.
## Caused by warning:
## ! x = 'ADS', get = 'stock.prices': Error in getSymbols.yahoo(Symbols = "ADS", env = <environment>, verbose = FALSE, : Unable to import "ADS".
## HTTP error 404.
## Removing ADS.
asset_returns_tbl<- prices %>%
group_by(symbol) %>%
tq_transmute(select = adjusted,
mutate_fun = periodReturn,
period = "monthly",
type = "log") %>%
ungroup() %>%
set_names(c("asset", "data", "returns"))
asset_returns_tbl
## # A tibble: 190 × 3
## asset data returns
## <chr> <date> <dbl>
## 1 NKE 2012-01-31 0.0715
## 2 NKE 2012-02-29 0.0371
## 3 NKE 2012-03-30 0.00815
## 4 NKE 2012-04-30 0.0311
## 5 NKE 2012-05-31 -0.0302
## 6 NKE 2012-06-29 -0.209
## 7 NKE 2012-07-31 0.0615
## 8 NKE 2012-08-31 0.0457
## 9 NKE 2012-09-28 -0.0255
## 10 NKE 2012-10-31 -0.0379
## # ℹ 180 more rows
asset_returns_tbl %>%
ggplot(aes(x = returns)) +
geom_density(aes(color = asset), show.legend = FALSE, alpha = 1) +
geom_histogram(aes(fill = asset, show.legend = FALSE, alpha = 0.3, binwith = 0.01)) +
facet_wrap(~ asset, ncol = 1) +
# labelig
labs(title= "Distrubution of Monthly Returns, 2012-2016",
y = "frequency",
x = "rate of returns ",
capitation = "A typic montly return is high for spy and IJS than for AGG, EEM, and EFA")
## Warning in geom_histogram(aes(fill = asset, show.legend = FALSE, alpha = 0.3, :
## Ignoring unknown aesthetics: show.legend and binwith
## `stat_bin()` using `bins = 30`. Pick better value with `binwidth`.