Skip to content

Commit

Permalink
Merge pull request #2147 from dhruvan2006/fix/price-auto-adjust
Browse files Browse the repository at this point in the history
Default yf.download() to auto adjust prices
  • Loading branch information
ValueRaider authored Nov 23, 2024
2 parents 2167fb3 + 02785d6 commit a8f0998
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions yfinance/multi.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@

@utils.log_indent_decorator
def download(tickers, start=None, end=None, actions=False, threads=True,
ignore_tz=None, group_by='column', auto_adjust=False, back_adjust=False,
ignore_tz=None, group_by='column', auto_adjust=True, back_adjust=False,
repair=False, keepna=False, progress=True, period="max", interval="1d",
prepost=False, proxy=None, rounding=False, timeout=10, session=None,
multi_level_index=True) -> Union[_pd.DataFrame, None]:
Expand Down Expand Up @@ -65,7 +65,7 @@ def download(tickers, start=None, end=None, actions=False, threads=True,
Include Pre and Post market data in results?
Default is False
auto_adjust: bool
Adjust all OHLC automatically? Default is False
Adjust all OHLC automatically? Default is True
repair: bool
Detect currency unit 100x mixups and attempt repair
Default is False
Expand Down

0 comments on commit a8f0998

Please sign in to comment.