()
| 29 | |
| 30 | # Let's use AAPL (Apple), MSI (Motorola), SBUX (Starbucks) |
| 31 | def get_data(): |
| 32 | # returns a T x 3 list of stock prices |
| 33 | # each row is a different stock |
| 34 | # 0 = AAPL |
| 35 | # 1 = MSI |
| 36 | # 2 = SBUX |
| 37 | df = pd.read_csv('aapl_msi_sbux.csv') |
| 38 | return df.values |
| 39 | |
| 40 | |
| 41 |