Stock Price Predictor using different machine learning methods
Predcition Using LSTM
Reference: https://www.youtube.com/playlist?list=PLUlAo15GdbCVsz3EUWZHVQhzKUnIu5c_E
Prediction Using Overfitting
Reference: https://www.youtube.com/watch?v=Iu5T2TZumxU&ab_channel=ComputerScience
Prediction Using LSTM with codes for predicting
Reference: https://www.youtube.com/watch?v=QIUxPv5PJOY&ab_channel=ComputerScience
Prediction Using LSTM for forecasting
Reference: https://www.youtube.com/watch?v=5Gm3bWNBoWQ&ab_channel=shubhambhalala
Prediction Using LSTM
Reference: https://www.youtube.com/watch?v=s3CnE2tqQdo&ab_channel=GeeksforGeeks
Prediction Using LSTM with best results
- Filter first then split
- Apply MinMaxScaling
- Decide on % to split
- Split first then apply scale transform
- Divide the data into x_train and y_train, create empty lists for both
- Append to empty lists depending on number of steps
- Convert both lists to numpy arrays
- Potentially reshape the data? (Ver 3)
- Build the LSTM model
- Compile the model
- Train the model
- Fit the model
- Append training to testing data (Ver 5)
- Or create the testing data (Ver 3)
- Both versions differ greatly afterwards