Project-131 - Crude oil price prediction.
using : Artifical Recurrent Neural Network - Long Short Term memory (LSTM)
WTI - West Texas Intermediate WTI refers to oil extracted from wells in the U.S. and sent via pipeline to Cushing, Oklahoma. The fact that supplies are land-locked is one of the drawbacks to West Texas crude as it’s relatively expensive to ship to certain parts of the globe. The product itself is very light and very sweet, making it ideal for gasoline refining. WTI continues to be the main benchmark for oil consumed in the United States and World.
The dataset used for this project is from - https://in.investing.com/
Problem statement : To predict the price of Crude Oil WTI .
In this project we have used an Artificail recurrent neural network called Long Short Term Memory(LSTM)
Overview of the project!
Variables used are trading price of each day for past 20 years.
Variables :
- Date
- Price
- Open (Price of the Day)
- High (Price of the Day)
- Low (Price of the Day)
- Vol.
- Change in %
_ LSTM Model summary _
Here we used 3 hidden layers and input shape 100 for first hidden layer
Challenges faced
1.Data collection 2.Low accuracy with basic models 3.Model selection 4.LSTM Model building 5.Implementation of tracer in the deployment
MODEL DEPLOYEMNET Deployement was done using Streamlit Method
In above plot.
- Blue line determine the actual values .
- Orange line determine the predicted value for train data.
- Green line determine the predicted values for test data.
- LSTM is giving better results, so we finalize the LSTM model.
- Blue Line represents past 100 days price.
- Orange Line represents future 30 days price.
WTI – FORECATED PRICE FOR 30 DAYS
Thank you!!