Skip to content

Commit 3a50682

Browse files
committed
2 parents 7c88537 + 422f503 commit 3a50682

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

docs/source/remote_data.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ Historical stock prices from Yahoo! Finance.
4747
f = web.DataReader("F", 'yahoo', start, end)
4848
f.ix['2010-01-04']
4949
50-
Historical corporate actions (Dividends and Stock Splits) from Yahoo! Finance.
50+
Historical corporate actions (Dividends and Stock Splits) with ex-dates from Yahoo! Finance.
5151

5252
.. ipython:: python
5353

pandas_datareader/data.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ def DataReader(name, data_source=None, start=None, end=None,
5858
# Data from Yahoo! Finance
5959
gs = DataReader("GS", "yahoo")
6060
61-
# Corporate Actions (Dividend and Split Data) from Yahoo! Finance
61+
# Corporate Actions (Dividend and Split Data) with ex-dates from Yahoo! Finance
6262
gs = DataReader("GS", "yahoo-actions")
6363
6464
# Data from Google Finance
@@ -436,7 +436,8 @@ def get_data_yahoo_actions(symbol, start=None, end=None, retry_count=3,
436436
pause=0.001):
437437
"""
438438
Returns DataFrame of historical corporate actions (dividends and stock
439-
splits) from symbols, over date range, start to end.
439+
splits) from symbols, over date range, start to end. All dates in the
440+
resulting DataFrame correspond with dividend and stock split ex-dates.
440441
441442
Parameters
442443
----------

0 commit comments

Comments
 (0)