main_templates1/drumb.scala
author Christian Urban <christian.urban@kcl.ac.uk>
Thu, 02 Nov 2023 13:53:37 +0000
changeset 471 31b81f20fd9a
parent 467 1b879b3e704e
permissions -rw-r--r--
updated
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
396
ea39bbc8d98d updated
Christian Urban <christian.urban@kcl.ac.uk>
parents: 347
diff changeset
     1
// Main Part 1 about a really dumb investment strategy
266
31e5218f43de updated to 2.13
Christian Urban <urbanc@in.tum.de>
parents: 199
diff changeset
     2
//===================================================
129
1b0f1573c27c updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     3
396
ea39bbc8d98d updated
Christian Urban <christian.urban@kcl.ac.uk>
parents: 347
diff changeset
     4
object M1 {
129
1b0f1573c27c updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     5
1b0f1573c27c updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     6
//two test portfolios
1b0f1573c27c updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     7
144
41a2b4f2c30c updated
Christian Urban <urbanc@in.tum.de>
parents: 135
diff changeset
     8
val blchip_portfolio = List("GOOG", "AAPL", "MSFT", "IBM", "FB", "AMZN", "BIDU")
41a2b4f2c30c updated
Christian Urban <urbanc@in.tum.de>
parents: 135
diff changeset
     9
val rstate_portfolio = List("PLD", "PSA", "AMT", "AIV", "AVB", "BXP", "CCI", 
199
2e13dedd922e updated
Christian Urban <urbanc@in.tum.de>
parents: 145
diff changeset
    10
                            "DLR", "EQIX", "EQR", "ESS", "EXR", "FRT", "HCP") 
129
1b0f1573c27c updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    11
135
e59aebee9770 updated
Christian Urban <urbanc@in.tum.de>
parents: 132
diff changeset
    12
import io.Source
e59aebee9770 updated
Christian Urban <urbanc@in.tum.de>
parents: 132
diff changeset
    13
import scala.util._
132
d91f907b6ed3 updated
Christian Urban <urbanc@in.tum.de>
parents: 129
diff changeset
    14
425
6e990ae2c6a3 updated solutions and templates
Christian Urban <christian.urban@kcl.ac.uk>
parents: 396
diff changeset
    15
// ADD YOUR CODE BELOW
6e990ae2c6a3 updated solutions and templates
Christian Urban <christian.urban@kcl.ac.uk>
parents: 396
diff changeset
    16
//======================
6e990ae2c6a3 updated solutions and templates
Christian Urban <christian.urban@kcl.ac.uk>
parents: 396
diff changeset
    17
6e990ae2c6a3 updated solutions and templates
Christian Urban <christian.urban@kcl.ac.uk>
parents: 396
diff changeset
    18
6e990ae2c6a3 updated solutions and templates
Christian Urban <christian.urban@kcl.ac.uk>
parents: 396
diff changeset
    19
// (1) 
347
0b727d1a8184 updated
Christian Urban <christian.urban@kcl.ac.uk>
parents: 281
diff changeset
    20
def get_january_data(symbol: String, year: Int) : List[String] = ???
132
d91f907b6ed3 updated
Christian Urban <urbanc@in.tum.de>
parents: 129
diff changeset
    21
135
e59aebee9770 updated
Christian Urban <urbanc@in.tum.de>
parents: 132
diff changeset
    22
467
1b879b3e704e updated
Christian Urban <christian.urban@kcl.ac.uk>
parents: 425
diff changeset
    23
425
6e990ae2c6a3 updated solutions and templates
Christian Urban <christian.urban@kcl.ac.uk>
parents: 396
diff changeset
    24
// (2) 
347
0b727d1a8184 updated
Christian Urban <christian.urban@kcl.ac.uk>
parents: 281
diff changeset
    25
def get_first_price(symbol: String, year: Int) : Option[Double] = ???
129
1b0f1573c27c updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    26
1b0f1573c27c updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    27
425
6e990ae2c6a3 updated solutions and templates
Christian Urban <christian.urban@kcl.ac.uk>
parents: 396
diff changeset
    28
// (3) 
347
0b727d1a8184 updated
Christian Urban <christian.urban@kcl.ac.uk>
parents: 281
diff changeset
    29
def get_prices(portfolio: List[String], years: Range) : List[List[Option[Double]]] = ???
135
e59aebee9770 updated
Christian Urban <urbanc@in.tum.de>
parents: 132
diff changeset
    30
129
1b0f1573c27c updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    31
1b0f1573c27c updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    32
425
6e990ae2c6a3 updated solutions and templates
Christian Urban <christian.urban@kcl.ac.uk>
parents: 396
diff changeset
    33
// (4) 
347
0b727d1a8184 updated
Christian Urban <christian.urban@kcl.ac.uk>
parents: 281
diff changeset
    34
def get_delta(price_old: Option[Double], price_new: Option[Double]) : Option[Double] = ???
129
1b0f1573c27c updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    35
199
2e13dedd922e updated
Christian Urban <urbanc@in.tum.de>
parents: 145
diff changeset
    36
2e13dedd922e updated
Christian Urban <urbanc@in.tum.de>
parents: 145
diff changeset
    37
425
6e990ae2c6a3 updated solutions and templates
Christian Urban <christian.urban@kcl.ac.uk>
parents: 396
diff changeset
    38
// (5) 
347
0b727d1a8184 updated
Christian Urban <christian.urban@kcl.ac.uk>
parents: 281
diff changeset
    39
def get_deltas(data: List[List[Option[Double]]]) :  List[List[Option[Double]]] = ???
135
e59aebee9770 updated
Christian Urban <urbanc@in.tum.de>
parents: 132
diff changeset
    40
425
6e990ae2c6a3 updated solutions and templates
Christian Urban <christian.urban@kcl.ac.uk>
parents: 396
diff changeset
    41
// (6) 
347
0b727d1a8184 updated
Christian Urban <christian.urban@kcl.ac.uk>
parents: 281
diff changeset
    42
def yearly_yield(data: List[List[Option[Double]]], balance: Long, index: Int) : Long = ???
135
e59aebee9770 updated
Christian Urban <urbanc@in.tum.de>
parents: 132
diff changeset
    43
129
1b0f1573c27c updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    44
425
6e990ae2c6a3 updated solutions and templates
Christian Urban <christian.urban@kcl.ac.uk>
parents: 396
diff changeset
    45
// (7) 
347
0b727d1a8184 updated
Christian Urban <christian.urban@kcl.ac.uk>
parents: 281
diff changeset
    46
def compound_yield(data: List[List[Option[Double]]], balance: Long, index: Int) : Long = ???
129
1b0f1573c27c updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    47
347
0b727d1a8184 updated
Christian Urban <christian.urban@kcl.ac.uk>
parents: 281
diff changeset
    48
def investment(portfolio: List[String], years: Range, start_balance: Long) : Long = ???
129
1b0f1573c27c updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    49
1b0f1573c27c updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    50
1b0f1573c27c updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    51
199
2e13dedd922e updated
Christian Urban <urbanc@in.tum.de>
parents: 145
diff changeset
    52
2e13dedd922e updated
Christian Urban <urbanc@in.tum.de>
parents: 145
diff changeset
    53
//Test cases for the two portfolios given above
129
1b0f1573c27c updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    54
266
31e5218f43de updated to 2.13
Christian Urban <urbanc@in.tum.de>
parents: 199
diff changeset
    55
//println("Real data: " + investment(rstate_portfolio, 1978 to 2019, 100))
31e5218f43de updated to 2.13
Christian Urban <urbanc@in.tum.de>
parents: 199
diff changeset
    56
//println("Blue data: " + investment(blchip_portfolio, 1978 to 2019, 100))
129
1b0f1573c27c updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    57
199
2e13dedd922e updated
Christian Urban <urbanc@in.tum.de>
parents: 145
diff changeset
    58
281
32dfd2ca577b updated
Christian Urban <urbanc@in.tum.de>
parents: 266
diff changeset
    59
}