diff --git a/pyEXzipline/ingest.py b/pyEXzipline/ingest.py index 485a876..348c1d3 100644 --- a/pyEXzipline/ingest.py +++ b/pyEXzipline/ingest.py @@ -3,7 +3,7 @@ def _get_data(symbol, start, end): - df = chartDF('aapl', '5y') + df = chartDF(symbol, '5y') df = df[['open', 'close', 'high', 'low', 'volume']].set_index(df['date']) df.index = pd.to_datetime(df.index) if start: