You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If I am interested in specific column like low, and want only return that data, there should be an argument keyword like fileds allow me to achieve that.
It will be better if get_prices function add fields::Vector{String} like:
The get request always returns all of these fields so I don't think there is much to be gained from having a fields argument.
Put differently having a fields argument is practically the same as just getting the dictionary from get prices and then taking the relevant columns from there.
If I am interested in specific column like
low
, and want only return that data, there should be an argument keyword likefileds
allow me to achieve that.It will be better if
get_prices
function addfields::Vector{String}
like:get_prices(symbol::String; range::String="5d", interval::String="1d", ..., divsplits::Bool=false, wait::Float64=0.0, fields::Vector{String})
where
fields = ["Open", "High", "Low", "Close", "Adj Close"])
The text was updated successfully, but these errors were encountered: