newbie so apologies for the basic q.
How do I get intraday data from zipline?
I tried the following
start = datetime(2015, 1, 4, 9, 0, 0, 0, pytz.utc)
end = datetime(2015, 1, 4, 16, 0, 0, 0, pytz.utc)
data = zp.utils.factory.load_from_yahoo(stocks=['AAPL'], indexes={}, start=start,
end=end, adjusted=False)
But it came back with an error.