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