yf.download("TSLA", start='2022-08-29', end='2022-08-30', interval="1m")
Above is the code that I normally use to get 1 minute stock prices of a period, but I want to get the prices for just 1 day. I cannot do it like the below.
yf.download("TSLA", start='2022-08-29', end='2022-08-29', interval="1m")
Below also does not work.
yf.download("TSLA", start='2022-08-29', period="1d", interval="1m")