Since I can get the stock price from Yahoo Finance US, I tried to predict Monday. I will briefly introduce the result.
Almost all stocks are likely to go down even though the stocks are selected appropriately? ??
Many forecasts are up, and some down forecasts are up on Friday the 12th.
Codes other than the following are the same as currency exchange. ** It seems that Yahoo Finance reflects data one day earlier than stooq **.
import pandas_datareader.data as DataReader
stock = '6758.T'
start = dt.date(2020,1,1)
end = dt.date(2020,6,11)
df=DataReader.get_data_yahoo("{}".format(stock),start,end)
・ I was able to acquire individual stock prices of Japanese stocks from Yahoo Finance.
・ ** As an overall impression, the movement is different from the Mu-Method prediction, so it is necessary to look at the long-term prediction accuracy in the future **.
Recommended Posts