We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d96000 commit 0a57210Copy full SHA for 0a57210
pandas_datareader/moex.py
@@ -15,11 +15,12 @@ class MoexReader(_DailyBaseReader):
15
symbols : str, an array-like object (list, tuple, Series), or a DataFrame
16
A single stock symbol (secid), an array-like object of symbols or
17
a DataFrame with an index containing stock symbols.
18
- start : str, (defaults to '1/1/2010')
19
- The starting date, timestamp. Parses many different kind of date
20
- representations (e.g., 'JAN-01-2010', '1/1/10', 'Jan, 1, 1980')
21
- end : str, (defaults to today)
22
- The ending date, timestamp. Same format as starting date.
+ start : string, int, date, datetime, timestamp
+ Starting date. Parses many different kind of date
+ representations (e.g., 'JAN-01-2010', '1/1/10', 'Jan, 1, 1980'). Defaults to
+ 20 years before current date.
+ end : string, int, date, datetime, timestamp
23
+ Ending date
24
retry_count : int, default 3
25
The number of times to retry query request.
26
pause : int, default 0.1
pandas_datareader/quandl.py
@@ -23,11 +23,12 @@ class QuandlReader(_DailyBaseReader):
Beware of ambiguous symbols (different securities per country)!
Note: Cannot use more than a single string because of the inflexible
way the URL is composed of url and _get_params in the superclass
- start : string
27
- Starting date, timestamp. Parses many different kind of date
28
29
- end : string, (defaults to today)
30
- Ending date, timestamp. Same format as starting date.
31
32
33
Number of times to retry query request.
34
pandas_datareader/stooq.py
@@ -12,8 +12,12 @@ class StooqDailyReader(_DailyBaseReader):
12
symbols : string, array-like object (list, tuple, Series), or DataFrame
13
Single stock symbol (ticker), array-like object of symbols or
14
DataFrame with index containing stock symbols.
- start: string, date which to start interval at YYYYMMDD.
- end: string, date which to end interval at YYYYMMDD.
pandas_datareader/tests/test_utils.py
@@ -10,6 +10,7 @@ class TestUtils(object):
10
"input_date",
11
[
"2019-01-01",
+ "JAN-01-2010",
dt.datetime(2019, 1, 1),
dt.date(2019, 1, 1),
pd.Timestamp(2019, 1, 1),
pandas_datareader/tiingo.py
@@ -34,11 +34,12 @@ class TiingoIEXHistoricalReader(_BaseReader):
----------
35
symbols : {str, List[str]}
36
String symbol of like of symbols
37
38
39
40
41
42
43
44
45
pause : float, default 0.1
pandas_datareader/tsp.py
@@ -12,11 +12,12 @@ class TSPReader(_BaseReader):
symbols : str, array-like object (list, tuple, Series), or DataFrame
0 commit comments