solutions1/drumb.scala
author Christian Urban <urbanc@in.tum.de>
Tue, 29 Oct 2019 14:12:24 +0000
changeset 281 87b9e3e2c1a7
parent 266 ca48ac1d3c3e
child 282 ec9773fe1dc0
permissions -rw-r--r--
updated
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
208
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     1
// Part 2 and 3 about a really dumb investment strategy
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     2
//======================================================
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     3
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     4
object CW6b { // for purposes of generating a jar
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     5
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     6
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     7
//two test portfolios
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     8
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     9
val blchip_portfolio = List("GOOG", "AAPL", "MSFT", "IBM", "FB", "AMZN", "BIDU")
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    10
val rstate_portfolio = List("PLD", "PSA", "AMT", "AIV", "AVB", "BXP", "CCI", 
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    11
                            "DLR", "EQIX", "EQR", "ESS", "EXR", "FRT", "HCP") 
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    12
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    13
import io.Source
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    14
import scala.util._
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    15
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    16
// (1) The function below takes a stock symbol and a year as arguments.
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    17
//     It should read the corresponding CSV-file and reads the January 
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    18
//     data from the given year. The data should be collected in a list of
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    19
//     strings for each line in the CSV-file.
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    20
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    21
def get_january_data(symbol: String, year: Int) : List[String] = 
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    22
  Source.fromFile(symbol ++ ".csv")("ISO-8859-1").getLines.toList.filter(_.startsWith(year.toString))
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    23
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    24
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    25
//test cases
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    26
//blchip_portfolio.map(get_january_data(_, 2018))
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    27
//rstate_portfolio.map(get_january_data(_, 2018))
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    28
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    29
//get_january_data("GOOG", 1980)
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    30
//get_january_data("GOOG", 2010)
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    31
//get_january_data("FB", 2014)
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    32
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    33
//get_january_data("PLD", 1980)
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    34
//get_january_data("EQIX", 2010)
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    35
//get_january_data("ESS", 2014)
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    36
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    37
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    38
// (2) From the output of the get_january_data function, the next function 
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    39
//     should extract the first line (if it exists) and the corresponding
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    40
//     first trading price in that year with type Option[Double]. If no line 
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    41
//     is generated by get_january_data then the result is None; Some if 
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    42
//     there is a price.
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    43
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    44
def get_first_price(symbol: String, year: Int) : Option[Double] = {
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    45
  val data = Try(Some(get_january_data(symbol, year).head)) getOrElse None 
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    46
  data.map(_.split(",").toList(1).toDouble)
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    47
}
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    48
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    49
//test cases
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    50
//get_first_price("GOOG", 1980)
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    51
//get_first_price("GOOG", 2010)
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    52
//get_first_price("FB", 2014)
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    53
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    54
/*
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    55
for (i <- 1978 to 2018) {
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    56
  println(blchip_portfolio.map(get_first_price(_, i)))
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    57
}
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    58
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    59
for (i <- 1978 to 2018) {
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    60
  println(rstate_portfolio.map(get_first_price(_, i)))
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    61
}
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    62
*/ 
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    63
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    64
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    65
// (3) Complete the function below that obtains all first prices
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    66
//     for the stock symbols from a portfolio (list of strings) and 
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    67
//     for the given range of years. The inner lists are for the
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    68
//     stock symbols and the outer list for the years.
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    69
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    70
def get_prices(portfolio: List[String], years: Range): List[List[Option[Double]]] = 
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    71
  for (year <- years.toList) yield
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    72
    for (symbol <- portfolio) yield get_first_price(symbol, year)
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    73
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    74
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    75
//test cases
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    76
266
ca48ac1d3c3e updated to 2.13
Christian Urban <urbanc@in.tum.de>
parents: 229
diff changeset
    77
//println("Task 3 data from Google and Apple in 2010 to 2012")
ca48ac1d3c3e updated to 2.13
Christian Urban <urbanc@in.tum.de>
parents: 229
diff changeset
    78
//val goog_aapl_prices = get_prices(List("GOOG", "AAPL"), 2010 to 2012)
ca48ac1d3c3e updated to 2.13
Christian Urban <urbanc@in.tum.de>
parents: 229
diff changeset
    79
//println(goog_aapl_prices.toString ++ "\n")
208
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    80
266
ca48ac1d3c3e updated to 2.13
Christian Urban <urbanc@in.tum.de>
parents: 229
diff changeset
    81
//val p_fb = get_prices(List("FB"), 2012 to 2014)
ca48ac1d3c3e updated to 2.13
Christian Urban <urbanc@in.tum.de>
parents: 229
diff changeset
    82
//val tt = get_prices(List("BIDU"), 2004 to 2008)
208
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    83
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    84
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    85
// (4) The function below calculates the change factor (delta) between
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    86
//     a price in year n and a price in year n + 1. 
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    87
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    88
def get_delta(price_old: Option[Double], price_new: Option[Double]) : Option[Double] = {
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    89
  (price_old, price_new) match {
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    90
    case (Some(x), Some(y)) => Some((y - x) / x)
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    91
    case _ => None
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    92
  }
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    93
}
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    94
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    95
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    96
// (5) The next function calculates all change factors for all prices (from a 
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    97
//     portfolio). The input to this function are the nested lists created by 
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    98
//     get_prices above.
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    99
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   100
def get_deltas(data: List[List[Option[Double]]]):  List[List[Option[Double]]] =
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   101
  for (i <- (0 until (data.length - 1)).toList) yield 
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   102
    for (j <- (0 until (data(0).length)).toList) yield get_delta(data(i)(j), data(i + 1)(j))
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   103
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   104
229
5549016ab10f updated
Christian Urban <urbanc@in.tum.de>
parents: 208
diff changeset
   105
208
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   106
// test case using the prices calculated above
266
ca48ac1d3c3e updated to 2.13
Christian Urban <urbanc@in.tum.de>
parents: 229
diff changeset
   107
ca48ac1d3c3e updated to 2.13
Christian Urban <urbanc@in.tum.de>
parents: 229
diff changeset
   108
//println("Task 5 change prices from Google and Apple in 2010 and 2011")
ca48ac1d3c3e updated to 2.13
Christian Urban <urbanc@in.tum.de>
parents: 229
diff changeset
   109
//val goog_aapl_deltas = get_deltas(goog_aapl_prices)
ca48ac1d3c3e updated to 2.13
Christian Urban <urbanc@in.tum.de>
parents: 229
diff changeset
   110
//println(goog_aapl_deltas.toString ++ "\n")
ca48ac1d3c3e updated to 2.13
Christian Urban <urbanc@in.tum.de>
parents: 229
diff changeset
   111
208
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   112
//val ttd = get_deltas(tt)
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   113
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   114
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   115
// (6) Write a function that given change factors, a starting balance and an index,
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   116
//     calculates the yearly yield, i.e. new balance, according to our dumb investment 
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   117
//     strategy. Index points to a year in the data list.
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   118
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   119
def yearly_yield(data: List[List[Option[Double]]], balance: Long, index: Int): Long = {
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   120
  val somes = data(index).flatten
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   121
  val somes_length = somes.length
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   122
  if (somes_length == 0) balance
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   123
  else {
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   124
    val portion: Double = balance.toDouble / somes_length.toDouble
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   125
    balance + (for (x <- somes) yield (x * portion)).sum.toLong
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   126
  }
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   127
}
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   128
266
ca48ac1d3c3e updated to 2.13
Christian Urban <urbanc@in.tum.de>
parents: 229
diff changeset
   129
// test case using the deltas calculated above
ca48ac1d3c3e updated to 2.13
Christian Urban <urbanc@in.tum.de>
parents: 229
diff changeset
   130
//println("Task 6 yield from Google and Apple in 2010 with  balance 100")
208
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   131
266
ca48ac1d3c3e updated to 2.13
Christian Urban <urbanc@in.tum.de>
parents: 229
diff changeset
   132
//val d0 = goog_aapl_deltas(0)(0)
ca48ac1d3c3e updated to 2.13
Christian Urban <urbanc@in.tum.de>
parents: 229
diff changeset
   133
//val d1 = goog_aapl_deltas(0)(1)
ca48ac1d3c3e updated to 2.13
Christian Urban <urbanc@in.tum.de>
parents: 229
diff changeset
   134
//println(s"50 * ${d0.get} + 50 * ${d1.get} = ${50.toDouble * d0.get + 50.toDouble * d1.get}")
ca48ac1d3c3e updated to 2.13
Christian Urban <urbanc@in.tum.de>
parents: 229
diff changeset
   135
ca48ac1d3c3e updated to 2.13
Christian Urban <urbanc@in.tum.de>
parents: 229
diff changeset
   136
ca48ac1d3c3e updated to 2.13
Christian Urban <urbanc@in.tum.de>
parents: 229
diff changeset
   137
//val goog_aapl_yield = yearly_yield(goog_aapl_deltas, 100, 0)
ca48ac1d3c3e updated to 2.13
Christian Urban <urbanc@in.tum.de>
parents: 229
diff changeset
   138
//println("Rounded yield: " ++ goog_aapl_yield.toString ++ "\n")
ca48ac1d3c3e updated to 2.13
Christian Urban <urbanc@in.tum.de>
parents: 229
diff changeset
   139
ca48ac1d3c3e updated to 2.13
Christian Urban <urbanc@in.tum.de>
parents: 229
diff changeset
   140
ca48ac1d3c3e updated to 2.13
Christian Urban <urbanc@in.tum.de>
parents: 229
diff changeset
   141
//yearly_yield(get_prices(rstate_portfolio, 2016 to 2018), 100, 2) 
ca48ac1d3c3e updated to 2.13
Christian Urban <urbanc@in.tum.de>
parents: 229
diff changeset
   142
//get_prices(rstate_portfolio, 2016 to 2018)(2).flatten.sum
229
5549016ab10f updated
Christian Urban <urbanc@in.tum.de>
parents: 208
diff changeset
   143
5549016ab10f updated
Christian Urban <urbanc@in.tum.de>
parents: 208
diff changeset
   144
208
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   145
// (7) Write a function compound_yield that calculates the overall balance for a 
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   146
//     range of years where in each year the yearly profit is compounded to the new 
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   147
//     balances and then re-invested into our portfolio. For this use the function and 
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   148
//     results generated under (6). The function investment calls compound_yield
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   149
//     with the appropriate deltas and the first index.
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   150
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   151
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   152
def compound_yield(data: List[List[Option[Double]]], balance: Long, index: Int): Long = {
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   153
  if (index >= data.length) balance else {
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   154
    val new_balance = yearly_yield(data, balance, index)
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   155
    compound_yield(data, new_balance, index + 1)
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   156
  }
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   157
}
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   158
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   159
def investment(portfolio: List[String], years: Range, start_balance: Long): Long = {
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   160
  compound_yield(get_deltas(get_prices(portfolio, years)), start_balance, 0)
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   161
}
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   162
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   163
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   164
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   165
//test cases for the two portfolios given above
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   166
266
ca48ac1d3c3e updated to 2.13
Christian Urban <urbanc@in.tum.de>
parents: 229
diff changeset
   167
//println("Real data: " + investment(rstate_portfolio, 1978 to 2019, 100))
ca48ac1d3c3e updated to 2.13
Christian Urban <urbanc@in.tum.de>
parents: 229
diff changeset
   168
//println("Blue data: " + investment(blchip_portfolio, 1978 to 2019, 100))
208
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   169
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   170
}
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   171
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   172
f8883f8a14ad updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   173