data import Options def get_stock_price(symbol, start, end): # read the stock information from Google finance if symbol[0] == '^' or "VIX" in symbol: # we have to call Stooq reader df = web.DataReader(symbol, 'stooq') else: df = web.DataReader(symbol, 'yahoo'...