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 7949e60 commit 3069a2bCopy full SHA for 3069a2b
pandas_datareader/tests/test_stooq.py
@@ -15,3 +15,13 @@ def test_get_data_stooq_dji():
15
def test_get_data_stooq_dates():
16
f = get_data_stooq('SPY', start='20180101', end='20180115')
17
assert f.shape[0] == 9
18
+
19
20
+def test_stooq_sp500():
21
+ f = get_data_stooq('^SPX')
22
+ assert f.shape[0] > 0
23
24
25
+def test_get_data_stooq_dax():
26
+ f = get_data_stooq('^DAX')
27
0 commit comments