Forex price prediction using LSTM’s

We get the Forex price of EUR/USD from Yahoo finance website by using the yfinance.download method: data=yf.download(tickers='EURUSD=X',start='2011-12-31',end='2019-12-31',interval='1d') Figure 2: EUR/USD Forex price Since we are only interested in the closing price, we will filter out the closing price and save its values into an array. ................
................