-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAboutMe.html
98 lines (84 loc) · 5.3 KB
/
AboutMe.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<!DOCTYPE html>
<html>
<head>
<title>About Zheng Liang</title>
<link rel="stylesheet" href="css/styles.css">
<meta name="viewport" content= "width=device-width, initial-scale=0.6">
</head>
<body>
<!-- Navigation Bar and Dropdown Button and Content-->
<div class="navbar">
<a href="/">Home</a>
<a href="/AboutMe.html">About Me</a>
<div class="dropdown">
<button class="dropbtn">Portfolio Optimization and Back-testing Trading Strategies</button>
<div class="dropdown-content">
<a href="/Portfolio Optimization and Back-testing Trading Strategies/Project Description.html">Project Description</a>
<a href="/Portfolio Optimization and Back-testing Trading Strategies/Portfolio Optimization and Back-testing.html" target="_blank">
Portfolio Optimization and Back-testing</a>
<a href="/Portfolio Optimization and Back-testing Trading Strategies/Effect of Risk Measures on Portfolio Composition and Performance.html" target="_blank">
Effect of Risk Measures on Portfolio Composition and Performance</a>
<a href="/Portfolio Optimization and Back-testing Trading Strategies/Random Selection Expertise and Index Investing.html" target="_blank">
Random Selection, Expertise and Index Investing</a>
<a href="/Portfolio Optimization and Back-testing Trading Strategies/Returns and Risks_The Mean and The Median.html" target="_blank">
Returns and Risks: The Mean and The Median</a>
<a href="/Portfolio Optimization and Back-testing Trading Strategies/Testing a Trading Strategy Using a Rolling Window CAPM.html" target="_blank">
Testing a Trading Strategy Using a Rolling Window CAPM</a>
<a href="/Portfolio Optimization and Back-testing Trading Strategies/Backtesting a 5-day and 20-day Moving Average Trading Strategy.html" target="_blank">
Backtesting a 5-day and 20-day Moving Average Trading Strategy</a>
<a href="/Portfolio Optimization and Back-testing Trading Strategies/Backtesting a MACD Trading Strategy.html" target="_blank">
Backtesting a MACD Trading Strategy</a>
</div><!-- /dropdown-content -->
</div><!-- /dropdown -->
<div class="dropdown">
<button class="dropbtn">Econometrics</button>
<div class="dropdown-content">
<a href="/Econometrics Projects/Project Description.html">Project Description</a>
<a href="/Econometrics Projects/Forecasting Singapore CPI Using Different Time Series Models.html" target="_blank">
Forecasting Singapore CPI Using Different Time Series Models</a>
<a href="/Econometrics Projects/Effects of Bond-Yields VIX Initial-Jobless-Claims on SP500.html" target="_blank">
Effects of Bond Yields, VIX and Initial Jobless Claims on S&P 500</a>
<a href="/Econometrics Projects/Effects of Seasonality in Forecasting Singapore Consumer Price Index.html" target="_blank">
Effects of Seasonality in Forecasting Singapore Consumer Price Index</a>
<a href="/Econometrics Projects/Non-Stationary Processes in Time Series Analysis.html" target="_blank">
Non-Stationary Processes in Time Series Analysis</a>
</div><!-- /dropdown-content -->
</div><!-- /dropdown -->
<div class="dropdown">
<button class="dropbtn">Introductory Guides</button>
<div class="dropdown-content">
<a href="/Introductory Guides/The Somewhat Complete Guide to PerformanceAnalytics for Beginners.html" target="_blank">
The Somewhat Complete Guide to PerformanceAnalytics for Beginners</a>
</div><!-- /dropdown-content -->
</div><!-- /dropdown -->
</div><!-- /navbar -->
<!-- Main Content on the Webpage-->
<div class="container">
<div class="blurb">
<h1>About Me</h1>
<img src="https://avatars.githubusercontent.com/u/106428124?v=4" alt="Zheng Liang's Avatar" style="float:left;width:200px; height:auto;">
<p>
I am Tan Zheng Liang, a Final Year Economics undergraduate at Nanyang Technological University,
Singapore. This GitHub Pages documents my learning experience in R, covering topics mostly on
econometrics and finance. The codes are available in the projects and my
<a href="https://github.com/zheng-liang/Learning-R">Learning-R Repository</a> on GitHub.
</p>
<p>
Everyone is welcomed to read about the projects that are on the site. However, the projects
were mainly intended to learn about portfolio optimization and econometric modelling and the
application of R in these fields. It may be useful to those who are learning R for basic econometric
modelling and portfolio optimization but readers who are looking for more advanced content on these
topics may not find what they want. However, I am always looking to improve on what I have learnt, so
more content can be expected in the future.
</p>
</div><!-- /blurb -->
</div><!-- /container -->
<footer>
<ul>
<li><a href="https://www.linkedin.com/in/tan-zheng-liang/">LinkedIn</a></li>
<li><a href="https://github.com/zheng-liang" target="_blank">GitHub Profile</a></li>
<li><a href="https://github.com/zheng-liang/Learning-R" target="_blank">Learning-R Repository</a></li>
</ul>
</footer>
</body>
</html>