v0.1.3
YFinance v0.1.3
Closed issues:
Bug Fix
- get_prices would error when
autoadjust=true
for some tickers when Yahoo returns nothing for some observations in the price time series. The update now does not error in this cases and returnsNaN
for the missing datapoints.NaN
is used instead ofMissing
because of performance improvements and the ability to integrateYFinance.jl
withTimeSeries.jl
. (#5)- Thank you RaSi96 for reporting this bug and helping me sort it out!
Docs
- Improved documentation for get_prices (#5)
- When the
range
keyword is used instead ofstartdt
andenddt
the specified interval is not observed by Yahoo at longer ranges. To enforce the specifiedinterval
usestartdt
andenddt
instead. - Data points that yahoo returns as
nothing
are returned asNaN
. It seems like Yahoo thinks it should have price information for these timestamps but does not have them and thus returnsnothing
.
- When the
Other
- Added a test case for the stock "ADANIENT.NS". The time series of the stock prices contains the
nothing
values mentioned in theBug Fix
. (#5)