Publications by Dylan Franko

Quiz 1

09.09.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 ## ## Attachi...

1065 sym R (3736 sym/26 pcs)

Quiz 3

07.10.2020

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

1330 sym R (4863 sym/15 pcs)

Quiz 2

24.09.2020

In this exercise, use Chapter 4.2 Quantitative vs. Quantitative Data Visualization with R. # Load packages library(tidyquant) library(tidyverse) # Import stock prices stock_prices <- tq_get(c("AAPL", "MSFT", "AMZN"), get = "stock.prices", from = "2020-01-01") stock_prices ## # A tibble: 552 x 8 ## symbol date open high low c...

1556 sym R (3867 sym/10 pcs) 2 img

Quiz 4

21.10.2020

Witht the given stock, conduct the Bollinger Bands analysis by answering the questions below. ## 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 pack...

2416 sym R (5899 sym/24 pcs) 1 img

Quiz 6

18.11.2020

Q1 Get monthly returns of Facebook, Amazon, and Netflix for the last 5 years. 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 p...

1383 sym R (5165 sym/30 pcs)

Quiz 5

06.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...

2462 sym R (9638 sym/37 pcs) 1 img

Term Paper

20.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...

5664 sym