Yahoo 15m data error start="2022-05-01", end="2022-05-03"

I cannot receive 15 minutes of data from yahoo at certain times, for example yf.download("AAPL", start="2022-05-01", end="2022-05-03", interval = "15m") This code does not work. It gives an error like this1 Failed download:

['AAPL']: Exception('%ticker%: 15m data not available for startTime=1651377600 and endTime=1651550400. The requested range must be within the last 60 days.')

Hi Durdu,



The error is because Yahoo Finance only provides the 15-minute timeframe data only for the latest 60 days. As you are trying to access the data older than 60 days, you are getting this error. To resolve this, you can try fetching the data within the last 60 days, and it should work.