Skip to content

Commit 397cdd4

Browse files
committed
fix for futures
1 parent 48a538c commit 397cdd4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas_datareader/stooq.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ def _get_params(self, symbol, country="US"):
4747
elif symbol_parts[1].lower() == "pl":
4848
symbol = symbol_parts[0]
4949
else:
50-
if symbol_parts[1].lower() not in ["de", "hk", "hu", "jp", "uk", "us"]:
50+
if symbol_parts[1].lower() not in ["de", "hk", "hu", "jp", "uk", "us", "f"]:
5151
symbol = ".".join([symbol, "US"])
5252

5353
params = {

0 commit comments

Comments
 (0)