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.
2 parents 4a5ff56 + c40c06a commit b9f809fCopy full SHA for b9f809f
pandas_datareader/tests/test_stooq.py
@@ -15,3 +15,22 @@ 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
28
29
+def test_stooq_googl():
30
+ f = get_data_stooq('GOOGL.US')
31
32
33
34
+def test_get_data_ibm():
35
+ f = get_data_stooq('IBM.UK')
36
0 commit comments