YFinance v0.1.10
Improvements
get_prices
now supports the retrieval of minute level data for periods longer than 7 days. This is facilitated by making multiple requests and stitching the responses together (minute data still needs to be within the last 30 days - this is a limit set by Yahoo)get_prices
now allowsstartdt
andenddt
to be of different types (e.g.,startdt="2024-01-01", enddt=today()
is now valid)- The
range
argument inget_prices
has been reworked to convert tostartdt
andenddt
#21 . Previously, this parameter was simply passed to the Yahoo API. The new way brings multiple improvements:- more flexible range inputs
- specified intervals are now observed
- Significant code refactoring for improved maintainability and readability of the
get_prices
function get_prices
now returns aOrderedDict{String, Union{String,Vector{DateTime},Vector{Float64}}}
rather thanOrderedDict{String,Any}
- Added precompilation for the response processing part of the
get_prices
function only
Closed issues:
- Problem with "using YFinance" along with other packages (#23)