top of page

Python Stock Market Prediction with LSTM Neural Network Guided Project part 1

In this Python deep learning project, we set up our LSTM neural network with Tensorflow in an attempt to get rich and predict the stock market. In this project, we use the MACD and RSI indicators as our features to predict today's closing value. The LSTM is a recurrent layer and either the SimpleRNN or GRU can be used in its place. This is a great place to experiment with how different recurrent layers impact the predictions of GOOG stock price.










Send data science teacher brandyn a message if you have any questions







Plot this history our of your Tensorflow model's training history in a quick easy way with Pandas.




We start our stock market prediction with deep learning project by building the MACD and RSI indicators common in technical analysis in stock market trading, using Pandas built in functions.

An important consideration is whether our data is stationary or not. When we preprocess our data for financial-type predictions we will need to make our data stationary.

In our time series prediction using a Tensorflow deep learning model, we have to consider what will will use to predict itself. An auto-prediction, self-prediction. We have a little more flexibility here that with ARIMA in stats model and but question what lags period to we use?

In stock predictions to understand if our prediction will work tomorrow we need to do a time series split to create our train and test data.

Always important for machine learning predictions. We'll use my favorite from sklearn to standardize our data using StandardScaler.

Here we build a simple neural network in Tensorflow and include the LSTM to make our stock market predictions.




10 visualizaciones0 comentarios

Comentários

Avaliado com 0 de 5 estrelas.
Ainda sem avaliações

Adicione uma avaliação
bottom of page