From 9a067180832dadfc43256361bc698d86c2595bcc Mon Sep 17 00:00:00 2001 From: Brian Giarrocco Date: Tue, 31 Dec 2013 10:35:42 -0500 Subject: [PATCH] Fixing ichart URL for yahoo finance historical data. --- pandas/io/data.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandas/io/data.py b/pandas/io/data.py index a3968446930e8..98ac860c391c8 100644 --- a/pandas/io/data.py +++ b/pandas/io/data.py @@ -183,7 +183,7 @@ def _get_hist_yahoo(sym, start, end, retry_count, pause): Returns a DataFrame. """ start, end = _sanitize_dates(start, end) - yahoo_url = 'http://ichart.yahoo.com/table.csv?' + yahoo_url = 'http://ichart.finance.yahoo.com/table.csv?' url = (yahoo_url + 's=%s' % sym + '&a=%s' % (start.month - 1) + '&b=%s' % start.day +