Skip to content

Commit

Permalink
fix start/end dates not getting filtered from yFinance provider. (#6721)
Browse files Browse the repository at this point in the history
Co-authored-by: Igor Radovanovic <74266147+IgorWounds@users.noreply.github.com>
  • Loading branch information
deeleeramone and IgorWounds authored Oct 1, 2024
1 parent ff9fc99 commit 2cf4f79
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -128,8 +128,8 @@ def extract_data(

data = yf_download(
query.symbol,
start=query.start_date,
end=query.end_date,
start_date=query.start_date,
end_date=query.end_date,
interval=INTERVALS_DICT[query.interval], # type: ignore
prepost=True,
auto_adjust=False,
Expand Down

0 comments on commit 2cf4f79

Please sign in to comment.