()
| 17 | |
| 18 | # Let's use AAPL (Apple), MSI (Motorola), SBUX (Starbucks) |
| 19 | def get_data(): |
| 20 | # returns a T x 3 list of stock prices |
| 21 | # each row is a different stock |
| 22 | # 0 = AAPL |
| 23 | # 1 = MSI |
| 24 | # 2 = SBUX |
| 25 | df = pd.read_csv('aapl_msi_sbux.csv') |
| 26 | return df.values |
| 27 | |
| 28 | |
| 29 |