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 c5be817 commit 480006cCopy full SHA for 480006c
pandas_datareader/tests/test_stooq.py
@@ -25,6 +25,10 @@ def test_stooq_sp500():
25
f = get_data_stooq("^SPX")
26
assert f.shape[0] > 0
27
28
+def test_stooq_clx19f():
29
+ f = get_data_stooq("CLX19.F", start="20190101", end="20190115")
30
+ assert f.shape[0] > 0
31
+
32
33
def test_get_data_stooq_dax():
34
f = get_data_stooq("^DAX")
@@ -39,3 +43,5 @@ def test_stooq_googl():
39
43
def test_get_data_ibm():
40
44
f = get_data_stooq("IBM.UK")
41
45
46
47
0 commit comments