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
python's yfinance library admits valid intervals: 1m,2m,5m,15m,30m,60m,90m,1h,1d,5d,1wk,1mo,3mo. But this historical() function only admits "1d", "1wk", "1mo". It is possible to have intraday intervals?
The text was updated successfully, but these errors were encountered:
Hey, yahoo-finance2 historical() module uses Yahoo's historical API under the hood, which indeed only supports "1d", "1wk", "1mo" intervals. (Ref: pilwon/node-yahoo-finance#76)
I had a look at yfinance, and it looks like their history module uses Yahoo's chart API (vs their "history" API), to get that data. This is an approach we're exploring too, and we hope to have a dev release very soon.
You can follow the relevant issues, particularly #328. You can leave this issue open and we'll update here too.
python's yfinance library admits
valid intervals: 1m,2m,5m,15m,30m,60m,90m,1h,1d,5d,1wk,1mo,3mo
. But thishistorical()
function only admits"1d", "1wk", "1mo"
. It is possible to have intraday intervals?The text was updated successfully, but these errors were encountered: