Intraday prices from Yahoo with MarketData.jl?

Is it possible to get intraday prices from Yahoo using MarketData.jl?

1 Like

No, see YahooOpt() for the options accepted by MarketData:

struct YahooOpt <: AbstractQueryOpt
  period1  # the start time
  period2  # the end time
  interval # "1d", "1wk" or "1mo"
  events   # currently only `:history` supported
end

https://juliaquant.github.io/MarketData.jl/stable/downloads/#MarketData.YahooOpt

(In general I think you’ll struggle to find any comprehensive source of free intraday data)

2 Likes