Publications by Jordyn Carpenter

Term Paper

23.11.2020

Finance students in the past have participated in national student competitions. They are a great opportunity to practice and further your knowledge and skills you learned in the finance program at PSU. Because not all of you are finance major, grading will be generous as long as you follow the instructions (e.g., number counts for answers). In a...

3228 sym

Quiz 3

19.11.2020

# Load packages library(tidyquant) library(tidyverse) Q1 dividends Import dividends of Costco and Target since 2000. mult_stocks <- tq_get(c("COST", "TGT"), get = "dividends", from = "2000-01-01") mult_stocks ## # A tibble: 154 x 3 ## symbol date value ## <chr> <date> <dbl> ...

1299 sym R (4998 sym/15 pcs)

Quiz 5

07.11.2020

# Load packages library(tidyquant) ## Loading required package: lubridate ## ## Attaching package: 'lubridate' ## The following objects are masked from 'package:base': ## ## date, intersect, setdiff, union ## Loading required package: PerformanceAnalytics ## Loading required package: xts ## Loading required package: zoo ## ## Attachin...

2717 sym R (9403 sym/39 pcs) 1 img

Quiz 3 Makeup

20.11.2020

# Load packages library(tidyquant) library(tidyverse) Q1 dividends Import dividends of Walmart and Target since 2010. mult_stocks <- tq_get(c("WMT", "TGT"), get = "dividends", from = "2010-01-01") mult_stocks ## # A tibble: 88 x 3 ## symbol date value ## <chr> <date> <dbl> #...

1320 sym R (5056 sym/15 pcs)

Quiz 6

20.11.2020

Q1 Get monthly returns of Facebook, Amazon, and Netflix for the last 5 years. from <- today() - years(5) stock_returns_monthly <- c("FB", "AMZN", "NFLX") %>% tq_get(get = "stock.prices", from = from) %>% group_by(symbol) %>% tq_transmute(select = adjusted, mutate_fun = periodReturn, ...

1945 sym R (7815 sym/18 pcs)