Hi all, Cant get data from Quandl with this code, i get the: Runtime exception: KeyError: 'Equities'
import pandas as pd
urla ='http://www.quandl.com/api/v1/datasets/ISE/EQU_SI.csv?trim_start=2011-01-01'
def initialize(context):
fetch_csv(urla, symbol='advn', date_column="Date")
def handle_data(context, data):
advn = data['advn']['Equities']
Same issue with trying to get in csv from dopbox. Trying to get "dma" column from csv (i know its there):
import pandas as pd
urla ='https://www.dropbox.com/s/92impo9rk7bmh1w/NYAD_Data.csv'
def initialize(context):
fetch_csv(urla, symbol='advn', date_column="Date", date_format = '%y-%m-%d')
def handle_data(context, data):
advn = data['advn']['dma']