trying to run buyapple.py in a local notebook. i have already ingested the the file in my command prompt; however, when the data frame is returned there are no prices in the dataframe for apple, any ideas what i might need to do next?
%matplotlib inline
%load_ext zipline
from zipline.data import bundles
from zipline.api import order, record, symbol
def initialize(context):
pass
def handle_data(context, data):
order(symbol('AAPL), 10)
record(AAPL=data.current(symbol('AAPL'), 'price'))
%zipline --bundle quantopian-quandl --start 2018-7-1 --end 2019-7-19 -o backtest.pickle