Publications by Leo Tzang

Document

27.05.2024

#======================================== # FamaFrench_mon_69_98_3stocks # one factor model # ff three factor model #======================================== library(tidyverse) ## ── Attaching core tidyverse packages ──────────────────────── tidyverse 2.0.0 ── ## ✔ dplyr 1.1.4 ✔ re...

44 sym R (25781 sym/38 pcs) 3 img

In Class Exercise

27.05.2024

#======================================== # FamaFrench_mon_69_98_3stocks # one factor model # ff three factor model #======================================== library(tidyverse) ## ── Attaching core tidyverse packages ──────────────────────── tidyverse 2.0.0 ── ## ✔ dplyr 1.1.4 ✔ re...

46 sym R (41870 sym/41 pcs) 2 img

HW

26.05.2024

By following the 5 factor model and 10 industry monthly returns based on Fama-French database website. (https://mba.tuck.dartmouth.edu/pages/faculty/ken.french/data_library.html), you can construct the MVP portfolio and its monthly returns using the previous 5-year monthly returns data. Show its cumulative returns starting from 1969. library(tidyve...

351 sym R (4782 sym/11 pcs) 1 img

Document

16.05.2024

library(tidymodels) ## ── Attaching packages ────────────────────────────────────── tidymodels 1.2.0 ── ## ✔ broom 1.0.5 ✔ recipes 1.0.10 ## ✔ dials 1.2.1 ✔ rsample 1.2.1 ## ✔ dplyr 1.1.4 ✔ tibble 3.2....

42 sym R (11020 sym/38 pcs) 1 img

In class exercise 3

16.05.2024

#Resampling Methods library(tidymodels) ## ── Attaching packages ────────────────────────────────────── tidymodels 1.2.0 ── ## ✔ broom 1.0.5 ✔ recipes 1.0.10 ## ✔ dials 1.2.1 ✔ rsample 1.2.1 ## ✔ dplyr 1.1.4 �...

43 sym R (11560 sym/39 pcs) 1 img

Homework4

12.05.2024

etf6 <- read.table('ETF6_20080101-20200430.csv', sep = ',', header = T) # head(etf6) ## 證券代碼 簡稱 年月日 收盤價.元. ## 1 0050 元大台灣50 20080102 39.6472 ## 2 0052 富邦科技 20080102 27.0983 ## 3 0056 元大高股息 20080102 14.5739 ## 4 0050 元大台灣50 20080103 38....

42 sym R (6621 sym/38 pcs) 1 img

Hw04

12.05.2024

etf6 <- read.table('ETF6_20080101-20200430.csv', sep = ',', header = T) # head(etf6) ## 證券代碼 簡稱 年月日 收盤價.元. ## 1 0050 元大台灣50 20080102 39.6472 ## 2 0052 富邦科技 20080102 27.0983 ## 3 0056 元大高股息 20080102 14.5739 ## 4 0050 元大台灣50 20080103 38....

42 sym R (6621 sym/38 pcs) 1 img

Document

28.04.2024

# https://bookdown.org/kochiuyu/Technical-Analysis-with-R/technical-indicators.html # This is the case of downloading data from TEJ rm(list=ls()) con = gzcon(url('https://github.com/systematicinvestor/SIT/raw/master/sit.gz', 'rb')) source(con) close(con) install.packages('pacman') ## Installing package into '/cloud/lib/x86_64-pc-linux-gnu-library/...

19 sym R (2621 sym/16 pcs)

Midterm_112035134

25.04.2024

# Q1 library(psych) library(tidyverse) ## ── Attaching core tidyverse packages ──────────────────────── tidyverse 2.0.0 ── ## ✔ dplyr 1.1.4 ✔ readr 2.1.5 ## ✔ forcats 1.0.0 ✔ stringr 1.5.1 ## ✔ ggplot2 3.5.1 ✔ tibble 3.2.1 ## ✔ lubridate 1.9.3 ✔...

61 sym R (24616 sym/54 pcs) 8 img

LDA_Munkhzul

18.04.2024

library(MASS) table(iris$Species) ## ## setosa versicolor virginica ## 50 50 50 lookup <- c(setosa='blue', versicolor='green', virginica='orange') col.ind <- lookup[iris$Species] pairs(iris[-5], pch=21, col="gray", bg=col.ind) lda.fit <- lda(Species ~ ., data = iris) lda.fit ## Call: ## lda(Species ~ ., data = iris) ...

606 sym R (2011 sym/15 pcs) 3 img