author | Christian Urban <christian dot urban at kcl dot ac dot uk> |
Thu, 10 Nov 2016 01:31:12 +0000 | |
changeset 31 | d0caa12ab8d8 |
parent 30 | bb8c3dd8c75c |
child 35 | 9fea5f751be4 |
permissions | -rw-r--r-- |
6 | 1 |
\documentclass{article} |
11
417869f65585
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
9
diff
changeset
|
2 |
\usepackage{../style} |
6 | 3 |
%%\usepackage{../langs} |
4 |
||
5 |
\begin{document} |
|
6 |
||
9
48a477fdef21
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
6
diff
changeset
|
7 |
\section*{Coursework 6 (Scala)} |
31
d0caa12ab8d8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
30
diff
changeset
|
8 |
|
11
417869f65585
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
9
diff
changeset
|
9 |
This coursework is about Scala and is worth 10\%. The first and second |
29
fde9223a5301
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
28
diff
changeset
|
10 |
part are due on 16 November at 11pm, and the third part on 23 November |
fde9223a5301
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
28
diff
changeset
|
11 |
at 11pm. You are asked to implement three programs about list |
18 | 12 |
processing and recursion. The third part is more advanced and might |
24
66b97f9a40f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
20
diff
changeset
|
13 |
include material you have not yet seen in the first lecture. |
28
f50c6a61a3a2
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
24
diff
changeset
|
14 |
Make sure the files you submit can be processed by just calling |
f50c6a61a3a2
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
24
diff
changeset
|
15 |
\texttt{scala <<filename.scala>>}. |
f50c6a61a3a2
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
24
diff
changeset
|
16 |
|
6 | 17 |
|
18 | 18 |
\subsection*{Disclaimer} |
6 | 19 |
|
20 |
It should be understood that the work you submit represents |
|
21 |
your own effort. You have not copied from anyone else. An |
|
22 |
exception is the Scala code I showed during the lectures or |
|
23 |
uploaded to KEATS, which you can freely use.\bigskip |
|
24 |
||
25 |
||
18 | 26 |
\subsection*{Part 1 (3 Marks)} |
6 | 27 |
|
11
417869f65585
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
9
diff
changeset
|
28 |
This part is about recursion. You are asked to implement a Scala |
18 | 29 |
program that tests examples of the \emph{$3n + 1$-conjecture}, also |
30 |
called \emph{Collatz conjecture}. This conjecture can be described as |
|
31 |
follows: Start with any positive number $n$ greater than $0$: |
|
32 |
||
33 |
\begin{itemize} |
|
34 |
\item If $n$ is even, divide it by $2$ to obtain $n / 2$. |
|
35 |
\item If $n$ is odd, multiply it by $3$ and add $1$ to obtain $3n + |
|
36 |
1$. |
|
37 |
\item Repeat this process and you will always end up with $1$. |
|
38 |
\end{itemize} |
|
39 |
||
40 |
\noindent |
|
41 |
For example if you start with $6$, respectively $9$, you obtain the |
|
42 |
series |
|
11
417869f65585
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
9
diff
changeset
|
43 |
|
417869f65585
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
9
diff
changeset
|
44 |
\[ |
417869f65585
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
9
diff
changeset
|
45 |
\begin{array}{@{}l@{\hspace{5mm}}l@{}} |
18 | 46 |
6, 3, 10, 5, 16, 8, 4, 2, 1 & \text{(= 9 steps)}\\ |
47 |
9, 28, 14, 7, 22, 11, 34, 17, 52, 26, 13, 40, 20, 10, 5, 16, 8, 4, 2, 1 & \text{(= 20 steps)}\\ |
|
11
417869f65585
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
9
diff
changeset
|
48 |
\end{array} |
417869f65585
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
9
diff
changeset
|
49 |
\] |
417869f65585
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
9
diff
changeset
|
50 |
|
417869f65585
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
9
diff
changeset
|
51 |
\noindent |
417869f65585
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
9
diff
changeset
|
52 |
As you can see, the numbers go up and down like a roller-coaster, but |
18 | 53 |
curiously they seem to always terminate in $1$. The conjecture is that |
54 |
this will \emph{always} happen for every number greater than |
|
55 |
0.\footnote{While it is relatively easy to test this conjecture with |
|
56 |
particular numbers, it is an interesting open problem to |
|
57 |
\emph{prove} that the conjecture is true for \emph{all} numbers ($> |
|
58 |
0$). Paul Erd\"o{}s, a famous mathematician you might have hard |
|
59 |
about, said about this conjecture: ``Mathematics may not be ready |
|
60 |
for such problems.'' and also offered a \$500 cash prize for its |
|
61 |
solution. Jeffrey Lagarias, another mathematician, claimed that |
|
62 |
based only on known information about this problem, ``this is an |
|
63 |
extraordinarily difficult problem, completely out of reach of |
|
64 |
present day mathematics.'' There is also a |
|
65 |
\href{https://xkcd.com/710/}{xkcd} cartoon about this conjecture |
|
66 |
(click \href{https://xkcd.com/710/}{here}). If you are able to solve |
|
67 |
this conjecture, you will definitely get famous.}\bigskip |
|
68 |
||
69 |
\newpage |
|
70 |
\noindent |
|
71 |
\textbf{Tasks (file collatz.scala):} |
|
72 |
||
73 |
\begin{itemize} |
|
74 |
\item[(1)] You are asked to implement a recursive function that |
|
75 |
calculates the number of steps needed until a series ends |
|
76 |
with $1$. In case of starting with $6$, it takes $9$ steps and in |
|
77 |
case of starting with $9$, it takes $20$ (see above). In order to |
|
78 |
try out this function with large numbers, you should use |
|
79 |
\texttt{Long} as argument type, instead of \texttt{Int}. You can |
|
80 |
assume this function will be called with numbers between $1$ and |
|
81 |
$1$ million. \hfill[2 Marks] |
|
82 |
||
83 |
\item[(2)] Write a second function that takes an upper bound as |
|
84 |
argument and calculates the steps for all numbers in the range from |
|
20
07860dd35c2b
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
18
diff
changeset
|
85 |
1 up to this bound. It returns the maximum number of steps and the |
31
d0caa12ab8d8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
30
diff
changeset
|
86 |
corresponding number that needs that many steps. More precisely |
24
66b97f9a40f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
20
diff
changeset
|
87 |
it returns a pair where the first |
66b97f9a40f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
20
diff
changeset
|
88 |
component is the number of steps and the second is the |
66b97f9a40f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
20
diff
changeset
|
89 |
corresponding number. \hfill\mbox{[1 Mark]} |
18 | 90 |
\end{itemize} |
11
417869f65585
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
9
diff
changeset
|
91 |
|
417869f65585
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
9
diff
changeset
|
92 |
\noindent |
18 | 93 |
\textbf{Test Data:} Some test ranges are: |
11
417869f65585
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
9
diff
changeset
|
94 |
|
417869f65585
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
9
diff
changeset
|
95 |
\begin{itemize} |
18 | 96 |
\item 1 to 10 where $9$ takes 20 steps |
97 |
\item 1 to 100 where $97$ takes 119 steps, |
|
98 |
\item 1 to 1,000 where $871$ takes 179 steps, |
|
99 |
\item 1 to 10,000 where $6,171$ takes 262 steps, |
|
100 |
\item 1 to 100,000 where $77,031$ takes 351 steps, |
|
101 |
\item 1 to 1 million where $837,799$ takes 525 steps |
|
102 |
%%\item[$\bullet$] $1 - 10$ million where $8,400,511$ takes 686 steps |
|
103 |
\end{itemize}\bigskip |
|
104 |
||
11
417869f65585
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
9
diff
changeset
|
105 |
|
417869f65585
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
9
diff
changeset
|
106 |
|
18 | 107 |
\subsection*{Part 2 (4 Marks)} |
11
417869f65585
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
9
diff
changeset
|
108 |
|
417869f65585
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
9
diff
changeset
|
109 |
This part is about list processing---it's a variant of |
18 | 110 |
``buy-low-sell-high'' in Scala. It uses the online financial data |
111 |
service from Yahoo.\bigskip |
|
112 |
||
113 |
\noindent |
|
114 |
\textbf{Tasks (file trade.scala):} |
|
115 |
||
116 |
\begin{itemize} |
|
117 |
\item[(1)] Given a list of prices for a commodity, for example |
|
11
417869f65585
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
9
diff
changeset
|
118 |
|
417869f65585
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
9
diff
changeset
|
119 |
\[ |
417869f65585
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
9
diff
changeset
|
120 |
\texttt{List(28.0, 18.0, 20.0, 26.0, 24.0)} |
417869f65585
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
9
diff
changeset
|
121 |
\] |
6 | 122 |
|
11
417869f65585
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
9
diff
changeset
|
123 |
\noindent |
18 | 124 |
you need to write a function that returns a pair of indices for when |
125 |
to buy and when to sell this commodity. In the example above it should |
|
126 |
return the pair $\texttt{(1, 3)}$ because at index $1$ the price is lowest and |
|
127 |
then at index $3$ the price is highest. Note the prices are given as |
|
31
d0caa12ab8d8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
30
diff
changeset
|
128 |
lists of \texttt{Float}s.\newline \mbox{} \hfill[1 Mark] |
11
417869f65585
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
9
diff
changeset
|
129 |
|
18 | 130 |
\item[(2)] Write a function that requests a comma-separated value (CSV) list |
131 |
from the Yahoo websevice that provides historical data for stock |
|
132 |
indices. For example if you query the URL |
|
11
417869f65585
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
9
diff
changeset
|
133 |
|
417869f65585
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
9
diff
changeset
|
134 |
\begin{center} |
417869f65585
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
9
diff
changeset
|
135 |
\url{http://ichart.yahoo.com/table.csv?s=GOOG} |
417869f65585
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
9
diff
changeset
|
136 |
\end{center} |
417869f65585
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
9
diff
changeset
|
137 |
|
24
66b97f9a40f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
20
diff
changeset
|
138 |
\noindent where \texttt{GOOG} stands for Google's stock market symbol, |
18 | 139 |
then you will receive a CSV-list of the daily stock prices since |
20
07860dd35c2b
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
18
diff
changeset
|
140 |
Google was listed. You can also try this with other stock market |
18 | 141 |
symbols, for instance AAPL, MSFT, IBM, FB, YHOO, AMZN, BIDU and so |
142 |
on. |
|
11
417869f65585
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
9
diff
changeset
|
143 |
|
18 | 144 |
This function should return a List of strings, where each string |
145 |
is one line in this CVS-list (representing one day's |
|
146 |
data). Note that Yahoo generates its answer such that the newest data |
|
147 |
is at the front of this list, and the oldest data is at the end. |
|
148 |
\hfill[1 Mark] |
|
149 |
||
150 |
\item[(3)] As you can see, the financial data from Yahoo is organised in 7 columns, |
|
11
417869f65585
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
9
diff
changeset
|
151 |
for example |
417869f65585
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
9
diff
changeset
|
152 |
|
417869f65585
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
9
diff
changeset
|
153 |
{\small\begin{verbatim} |
417869f65585
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
9
diff
changeset
|
154 |
Date,Open,High,Low,Close,Volume,Adj Close |
417869f65585
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
9
diff
changeset
|
155 |
2016-11-04,750.659973,770.359985,750.560974,762.02002,2126900,762.02002 |
417869f65585
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
9
diff
changeset
|
156 |
2016-11-03,767.25,769.950012,759.030029,762.130005,1914000,762.130005 |
417869f65585
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
9
diff
changeset
|
157 |
2016-11-02,778.200012,781.650024,763.450012,768.700012,1872400,768.700012 |
417869f65585
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
9
diff
changeset
|
158 |
2016-11-01,782.890015,789.48999,775.539978,783.609985,2404500,783.609985 |
417869f65585
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
9
diff
changeset
|
159 |
.... |
417869f65585
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
9
diff
changeset
|
160 |
\end{verbatim}} |
417869f65585
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
9
diff
changeset
|
161 |
|
417869f65585
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
9
diff
changeset
|
162 |
\noindent |
417869f65585
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
9
diff
changeset
|
163 |
Write a function that ignores the first line (the header) and then |
417869f65585
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
9
diff
changeset
|
164 |
extracts from each line the date (first column) and the Adjusted Close |
417869f65585
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
9
diff
changeset
|
165 |
price (last column). The Adjusted Close price should be converted into |
18 | 166 |
a \texttt{Double}. So the result of this function is a list of pairs where the |
167 |
first components are strings (the dates) and the second are doubles |
|
168 |
(the adjusted close prices).\newline\mbox{}\hfill\mbox{[1 Mark]} |
|
11
417869f65585
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
9
diff
changeset
|
169 |
|
18 | 170 |
\item[(4)] Write a function that takes a stock market symbol as |
171 |
argument (you can assume it is a valid one, like GOOG or AAPL). The |
|
172 |
function calculates the \underline{dates} when you should have |
|
173 |
bought the corresponding shares (lowest price) and when you should |
|
174 |
have sold them (highest price).\hfill\mbox{[1 Mark]} |
|
175 |
\end{itemize} |
|
11
417869f65585
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
9
diff
changeset
|
176 |
|
417869f65585
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
9
diff
changeset
|
177 |
\noindent |
417869f65585
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
9
diff
changeset
|
178 |
\textbf{Test Data:} |
417869f65585
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
9
diff
changeset
|
179 |
In case of Google, the financial data records 3077 entries starting |
417869f65585
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
9
diff
changeset
|
180 |
from 2004-08-19 until 2016-11-04 (which is the last entry on the day |
18 | 181 |
when I prepared the course work...namely on 6 November; remember stock |
11
417869f65585
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
9
diff
changeset
|
182 |
markets are typically closed on weekends and no financial data is |
417869f65585
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
9
diff
changeset
|
183 |
produced then; also I did not count the header line). The lowest |
18 | 184 |
shareprice for Google was on 2004-09-03 with \$49.95513 per share and the |
185 |
highest on 2016-10-24 with \$813.109985 per share.\bigskip |
|
186 |
||
187 |
\subsection*{Advanced Part 3 (3 Marks)} |
|
188 |
||
31
d0caa12ab8d8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
30
diff
changeset
|
189 |
A purely fictional character named Mr T.~Drump inherited in 1978 |
d0caa12ab8d8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
30
diff
changeset
|
190 |
approximately 200 Million Dollar from his father. Mr Drump prides |
20
07860dd35c2b
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
18
diff
changeset
|
191 |
himself to be a brilliant business man because nowadays it is |
07860dd35c2b
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
18
diff
changeset
|
192 |
estimated he is 3 Billion Dollar worth (one is not sure, of course, |
31
d0caa12ab8d8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
30
diff
changeset
|
193 |
because Mr Drump refuses to make his tax records public). |
18 | 194 |
|
31
d0caa12ab8d8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
30
diff
changeset
|
195 |
Since the question about Mr Drump's business acumen remains, let's do a |
18 | 196 |
quick back-of-the-envelope calculation in Scala whether his claim has |
197 |
any merit. Let's suppose we are given \$100 in 1978 and we follow a |
|
198 |
really dump investment strategy, namely: |
|
199 |
||
200 |
\begin{itemize} |
|
24
66b97f9a40f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
20
diff
changeset
|
201 |
\item We blindly choose a portfolio of stocks, say some Blue-Chip stocks |
18 | 202 |
or some Real Estate stocks. |
203 |
\item If some of the stocks in our portfolio are traded in January of |
|
24
66b97f9a40f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
20
diff
changeset
|
204 |
a year, we invest our money in equal amounts in each of these |
18 | 205 |
stocks. For example if we have \$100 and there are four stocks that |
24
66b97f9a40f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
20
diff
changeset
|
206 |
are traded in our portfolio, we buy \$25 worth of stocks |
18 | 207 |
from each. |
208 |
\item Next year in January, we look how our stocks did, liquidate |
|
209 |
everything, and re-invest our (hopefully) increased money in again |
|
210 |
the stocks from our portfolio (there might be more stocks available, |
|
211 |
if companies from our portfolio got listed in that year, or less if |
|
212 |
some companies went bust or de-listed). |
|
213 |
\item We do this for 38 years until January 2016 and check what would |
|
214 |
have become out of our \$100. |
|
215 |
\end{itemize}\medskip |
|
11
417869f65585
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
9
diff
changeset
|
216 |
|
18 | 217 |
\noindent |
31
d0caa12ab8d8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
30
diff
changeset
|
218 |
\textbf{Tasks (file drump.scala):} |
18 | 219 |
|
220 |
\begin{itemize} |
|
221 |
\item[(1.a)] Write a function that queries the Yahoo financial data |
|
222 |
service and obtains the first trade (adjusted close price) of a |
|
223 |
stock symbol and a year. A problem is that normally a stock exchange |
|
24
66b97f9a40f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
20
diff
changeset
|
224 |
is not open on 1st of January, but depending on the day of the week |
18 | 225 |
on a later day (maybe 3rd or 4th). The easiest way to solve this |
226 |
problem is to obtain the whole January data for a stock symbol as |
|
227 |
CSV-list and then select the earliest entry in this list. For this |
|
228 |
you can specify a date range with the Yahoo service. For example if |
|
229 |
you want to obtain all January data for Google in 2000, you can form |
|
230 |
the query:\mbox{}\\[-8mm] |
|
231 |
||
232 |
\begin{center}\small |
|
233 |
\mbox{\url{http://ichart.yahoo.com/table.csv?s=GOOG&a=0&b=1&c=2000&d=1&e=1&f=2000}} |
|
234 |
\end{center} |
|
235 |
||
236 |
For other companies and years, you need to change the stock symbol |
|
237 |
(\texttt{GOOG}) and the year \texttt{2000} (in the \texttt{c} and |
|
238 |
\texttt{f} argument of the query). Such a request might fail, if the |
|
239 |
company does not exist during this period. For example, if you query |
|
240 |
for Google in January of 1980, then clearly Google did not exists yet. |
|
24
66b97f9a40f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
20
diff
changeset
|
241 |
Therefore you are asked to return a trade price as |
18 | 242 |
\texttt{Option[Double]}. |
243 |
||
24
66b97f9a40f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
20
diff
changeset
|
244 |
\item[(1.b)] Write a function that takes a portfolio (a list of stock symbols), |
66b97f9a40f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
20
diff
changeset
|
245 |
a years range and gets all the first trading prices for each year. You should |
66b97f9a40f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
20
diff
changeset
|
246 |
organise this as a list of lists of \texttt{Option[Double]}'s. The inner lists |
18 | 247 |
are for all stock symbols from the portfolio and the outer list for the years. |
248 |
For example for Google and Apple in years 2010 (first line), 2011 |
|
249 |
(second line) and 2012 (third line) you obtain: |
|
11
417869f65585
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
9
diff
changeset
|
250 |
|
18 | 251 |
\begin{verbatim} |
252 |
List(List(Some(313.062468), Some(27.847252)), |
|
253 |
List(Some(301.873641), Some(42.884065)), |
|
254 |
List(Some(332.373186), Some(53.509768))) |
|
255 |
\end{verbatim}\hfill[1 Mark] |
|
256 |
||
257 |
\item[(2.a)] Write a function that calculates the \emph{change factor} (delta) |
|
258 |
for how a stock price has changed from one year to the next. This is |
|
259 |
only well-defined, if the corresponding company has been traded in both |
|
260 |
years. In this case you can calculate |
|
11
417869f65585
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
9
diff
changeset
|
261 |
|
18 | 262 |
\[ |
263 |
\frac{price_{new} - price_{old}}{price_{old}} |
|
264 |
\] |
|
265 |
||
266 |
||
267 |
\item[(2.b)] Write a function that calculates all change factors |
|
268 |
(deltas) for the prices we obtained under Task 1. For the running |
|
24
66b97f9a40f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
20
diff
changeset
|
269 |
example of Google and Apple for the years 2010 to 2012 you should |
66b97f9a40f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
20
diff
changeset
|
270 |
obtain 4 change factors: |
18 | 271 |
|
272 |
\begin{verbatim} |
|
273 |
List(List(Some(-0.03573991820699504), Some(0.5399747522663995)) |
|
274 |
List(Some(0.10103414428290529), Some(0.24777742035415723))) |
|
275 |
\end{verbatim} |
|
276 |
||
24
66b97f9a40f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
20
diff
changeset
|
277 |
That means Google did a bit badly in 2010, while Apple did very well. |
18 | 278 |
Both did OK in 2011.\hfill\mbox{[1 Mark]} |
279 |
||
280 |
\item[(3.a)] Write a function that calculates the ``yield'', or |
|
281 |
balance, for one year for our portfolio. This function takes the |
|
282 |
change factors, the starting balance and the year as arguments. If |
|
283 |
no company from our portfolio existed in that year, the balance is |
|
284 |
unchanged. Otherwise we invest in each existing company an equal |
|
285 |
amount of our balance. Using the change factors computed under Task |
|
286 |
2, calculate the new balance. Say we had \$100 in 2010, we would have |
|
287 |
received in our running example |
|
6 | 288 |
|
18 | 289 |
\begin{verbatim} |
290 |
$50 * -0.03573991820699504 + $50 * 0.5399747522663995 |
|
291 |
= $25.211741702970222 |
|
292 |
\end{verbatim} |
|
293 |
||
294 |
as profit for that year, and our new balance for 2011 is \$125 when |
|
295 |
converted to a \texttt{Long}. |
|
296 |
||
297 |
\item[(3.b)] Write a function that calculates the overall balance |
|
298 |
for a range of years where each year the yearly profit is compounded to |
|
299 |
the new balances and then re-invested into our portfolio.\mbox{}\hfill\mbox{[1 Mark]} |
|
300 |
\end{itemize}\medskip |
|
301 |
||
302 |
\noindent |
|
303 |
\textbf{Test Data:} File \texttt{drumb.scala} contains two portfolios |
|
304 |
collected from the S\&P 500, one for blue-chip companies, including |
|
305 |
Facebook, Amazon and Baidu; and another for listed real-estate companies, whose |
|
306 |
names I have never heard of. Following the dumb investment strategy |
|
307 |
from 1978 until 2016 would have turned a starting balance of \$100 |
|
308 |
into \$23,794 for real estate and a whopping \$524,609 for blue chips.\medskip |
|
309 |
||
310 |
\noindent |
|
24
66b97f9a40f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
20
diff
changeset
|
311 |
\textbf{Moral:} Reflecting on our assumptions, we are over-estimating |
18 | 312 |
our yield in many ways: first, who can know in 1978 about what will |
313 |
turn out to be a blue chip company. Also, since the portfolios are |
|
314 |
chosen from the current S\&P 500, they do not include the myriad |
|
315 |
of companies that went bust or were de-listed over the years. |
|
31
d0caa12ab8d8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
30
diff
changeset
|
316 |
So where does this leave our fictional character Mr T.~Drump? Well, given |
18 | 317 |
his inheritance, a really dumb investment strategy would have done |
318 |
equally well, if not much better. |
|
6 | 319 |
\end{document} |
320 |
||
321 |
%%% Local Variables: |
|
322 |
%%% mode: latex |
|
323 |
%%% TeX-master: t |
|
324 |
%%% End: |