Publications by Daniel Lee

Document

22.09.2022

# Load packages library(tidyverse) library(tidyquant) 1 Get stock prices and convert to returns Ra <- c("BAC", "LULU", "CLX") %>% tq_get(get = "stock.prices", from = "2022-01-01") %>% group_by(symbol) %>% tq_transmute(select = adjusted, mutate_fun = periodReturn, period = "month...

254 sym R (2372 sym/9 pcs)

Applications3

23.09.2022

Economic Dashboard Market Indicators Economic Indicators What is your reading of the economy? After analyzing the charts in the years 2008 and 2009 there was a dip into a recession, when reading the City Composite Home Price Index we are able to view that there was a massive drop in sales for homes in this time period meaning at this point hom...

1613 sym

Apply3

23.09.2022

# load packages library(tidyverse) library(tidyquant) library(moments) 1 Get stock prices and convert to returns Ra <- c("AMZN", "TGT", "WMT") %>% tq_get(get = "stock.prices", from = "2022-01-01") %>% group_by(symbol) %>% tq_transmute(select = adjusted, mutate_fun = periodReturn, pe...

204 sym R (3100 sym/11 pcs)

CodeAlong4

26.09.2022

# Load packages # Core library(tidyverse) ## ── Attaching packages ─────────────────────────────────────── tidyverse 1.3.2 ── ## ✔ ggplot2 3.3.6 ✔ purrr 0.3.4 ## ✔ tibble 3.1.8 ✔ dplyr 1.0.10 ## ✔ tidyr 1.2.0 ✔ stringr 1.4.1 ...

216 sym R (2769 sym/8 pcs) 1 img

Document

27.09.2022

# Load packages # Core library(tidyverse) ## ── Attaching packages ─────────────────────────────────────── tidyverse 1.3.2 ── ## ✔ ggplot2 3.3.6 ✔ purrr 0.3.4 ## ✔ tibble 3.1.8 ✔ dplyr 1.0.10 ## ✔ tidyr 1.2.1 ✔ stringr 1.4.1 ...

216 sym R (2776 sym/8 pcs) 1 img

Best Practices 4

28.09.2022

Chater Openning Questions A manager needs to monitor: The prices of major inputs and its outputs The facts about inflation Volatility: CPI < PPI Finished Goods < PPI Intermediate Goods < PPI Crude Materials Price Growth: CPI > PPI Finished Goods > PPI Intermediate Goods > PPI Crude Materials There are thousands of specific indexes to choose fro...

3296 sym

Document

29.09.2022

1 Import stock prices of your choice 2 Convert prices to returns by quarterly ## # A tibble: 60 × 3 ## asset date returns ## <chr> <date> <dbl> ## 1 AAPL 2012-03-30 0.377 ## 2 AAPL 2012-06-29 -0.0263 ## 3 AAPL 2012-09-28 0.137 ## 4 AAPL 2012-12-31 -0.221 ## 5 AAPL 2013-03-28 -0.178 ## 6 AAPL 2013-06-28 -0.103...

396 sym 1 img

Apply 4

29.09.2022

1 Import stock prices of your choice 2 Convert prices to returns by quarterly ## # A tibble: 60 × 3 ## asset date returns ## <chr> <date> <dbl> ## 1 AMZN 2012-03-30 0.123 ## 2 AMZN 2012-06-29 0.120 ## 3 AMZN 2012-09-28 0.108 ## 4 AMZN 2012-12-31 -0.0137 ## 5 AMZN 2013-03-28 0.0604 ## 6 AMZN 2013-06-28 0.041...

477 sym 1 img

Real World Applications 4

29.09.2022

Economic Dashboard Grappone outputPrice = Consumer Price Index for All Urban Consumers: New Vehicles in U.S. City Average inputPrice = Producer Price Index by Industry: New Car Dealers: New Vehicle Sales Bank of New Hampshire outputPrice = Market Yield on U.S. Treasury Securities at 10-Year Constant Maturity inputPrice = Market Yield on U.S. ...

1078 sym

Document

04.10.2022

# Load packages # Core library(tidyverse) library(tidyquant) Goal Collect individual returns into a portfolio by assigning a weight to each stock five stocks: “SPY”, “EFA”, “IJS”, “EEM”, “AGG” from 2012-12-31 to 2017-12-31 1 Import stock prices symbols <- c("SPY", "EFA", "IJS", "EEM", "AGG") prices <- tq_get(x = symbols, ...

339 sym R (2628 sym/14 pcs) 3 img