diff --git a/README.md b/README.md index 9d64eea..de9b6c7 100644 --- a/README.md +++ b/README.md @@ -113,7 +113,7 @@ $ pip install pandas_ta Latest Version -------------- -Best choice! Version: *0.3.29b* +Best choice! Version: *0.3.30b* * Includes all fixes and updates between **pypi** and what is covered in this README. ```sh $ pip install -U git+https://github.com/twopirllc/pandas-ta diff --git a/pandas_ta/utils/data/yahoofinance.py b/pandas_ta/utils/data/yahoofinance.py index 3fa464e..54f563b 100644 --- a/pandas_ta/utils/data/yahoofinance.py +++ b/pandas_ta/utils/data/yahoofinance.py @@ -88,6 +88,7 @@ def yf(ticker: str, **kwargs): # Ticker Info & Chart History yfd = yfra.Ticker(ticker) + df = DataFrame() try: df = yfd.history(period=period, interval=interval, proxy=proxy, **kwargs) except: diff --git a/setup.py b/setup.py index 908f5b1..4dfafa5 100644 --- a/setup.py +++ b/setup.py @@ -19,7 +19,7 @@ setup( "pandas_ta.volatility", "pandas_ta.volume" ], - version=".".join(("0", "3", "29b")), + version=".".join(("0", "3", "30b")), description=long_description, long_description=long_description, author="Kevin Johnson",