SlideShare a Scribd company logo
1 of 3
Download to read offline
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 07 Issue: 03 | Mar 2020 www.irjet.net p-ISSN: 2395-0072
ยฉ 2020, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 5285
Crude Oil Price Forecasting using ARIMA model
Jessin Shah P A1, Dr. G Kiruthiga2
1Department of Computer Science & Engineering, IES College of Engineering and Technology, Chittilappilly
2 HOD, Dept. of Computer Science & Engineering, IES College of Engineering and Technology, Chittilappilly
---------------------------------------------------------------------***----------------------------------------------------------------------
Abstract โ€“ Oil plays a vital role in the production of many
items that we use in regular basis. The increase and decrease
of the price of oil influence many sectors oftheeconomy.There
are many methods to model and forecast time series data. In
this paper, we examine the time series and non-linear feature
of oil price, and use ARIMA model to make prediction. The
results show that ARIMA model yields best performance.
Key Words: oil price forecast, Time โ€“series, AR, MA, ARIMA
model.
1. INTRODUCTION
Crude oil is an unprocessed thick liquid fuel source
extracted directly from the oil reservoirs. Oil is used for
transportation, petroleum products and plastics. Oil is the
base for over 6000 items. There are different types of oil.
West Texas Intermediate crude oil is of very high quality. It
is the major benchmark of crude oil in the Americas. Brent
Blend is a combination of crude oil from fifteen different oil
fields in North Sea and is the primary benchmark for crude
oils in Europe and Africa. Oil is one of the primary sources of
enegy consumption, therefore the price of oil affect the
world economy. Accounting for a large part of exports for
some countries, a sudden changes of crude oil price can
bring significant economic consequences, with crashes of
crude oil prices bringing about slower economic activity[1]
and booms of crude oil prices causing significant inflation as
well. The crude oil prices are affected by supply anddemand
and also depends economic activity, politics and more[2].
Accurate forecasting is important for both government and
industries to make decision in economic strategy. But dueto
its chaotic and unpredictable nature it is difficult to predict.
Crude oil price prediction is a challenging research topic.
Different machine learning models have been applied to
address this problem including EEMD-SBL-ADD[3],neural
network model, ARIMA model[4], support vector
machines(SVM)[5] and error correction models(ECM)[6],
etc.. Xie et al. compared the performance of SVM with other
popular time series forecasting models, and concluded that
SVM outperforms other tested models. Though Lanza At el.
(2005) utilized ECMs to investigate crude oil prices, due to
the irregular nature of crude oil market, method often
proved to be inefficient. In[3] a novel model integrating
EEMD(Ensemble Emperical Mode Decomposition),
SBL(Sparse Bayesian Learning) and addition for forecasting
crude oil prices were proposed and concluded that EEMD-
SBL-ADD outperforms any other competitive models in
terms of the evaluation criteria. A literature reviewoncrude
oil price prediction showed that for making predictions,
most existing work relied on ARIMA, fully connected neural
networks and recurrent neural networks[7].
Although many factors effect the price of oil, in practiceit
is hard to consider all the contributing factors. Therefore in
this work we consider oil as a pure timeseriesproblem.SVM
and ARIMA model is considered in this research and
compare to figure out a best fit for this prediction.
In the following part of this paper, we will first introduce
arima model which we apply in this study, next to fit time
series data into models, then perform data processing. Next
section contain results and comparisons. Then we conclude
our study about oil price forecasting.
2. ARIMA MODEL
In time series analysis, an autoregressive integrated moving
average (ARIMA) model is a generalization of an
autoregressive moving average (ARMA) model. Both these
models are used in time series data to understand data or to
predict the future points in series that is to forecast. ARIMA
model is the combination of autoregression(AR)andmoving
average(MA).ARusesthedependentrelationshipbetweenan
observation and some number of lagged observations.
integrated is the use of differencing of raw observations in
order to make the time series stationary. MA is a model that
uses the dependency between an observation and a residual
error from a moving average model applied to lagged
observations. Standard notation used for ARIMA model is
ARIMA(p, d, q) where p is the lag order that is order of AR, d
is the degree of differencing to make the time series
stationary, q is the size of moving average window thatโ€™s the
order of MA. The parameters take integer values.
ARIMA model is applied to the time series data with non-
stationarity property by applying differencing on raw
observations to make the time series data stationary. After
differencing the ARIMA model for a serially correlated data
can be expressed in the form of
yt=ยต+๏€ ๏ฆ1 yt-1 +โ€ฆ.+๏€ ๏ฆp yt-p -๏ฑ1et-1
โ€ฆ.. -๏ฑqet-q(1)
where yt is the value at time t, et random error and the
mean of the series. ๏ฆt(t=1, 2, โ€ฆ ,p) and ๏ฑt(t=1, 2, โ€ฆ, q) are
model parameters that needs to be determined from
data. p and q define orders of the model.
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 07 Issue: 03 | Mar 2020 www.irjet.net p-ISSN: 2395-0072
ยฉ 2020, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 5286
3. PREPARE THE DATA
3.1 Data Selection
To value the commodity, threecrudeoil benchmarksare set,
they are Brent, West Texas Intermediate(WTI) and
Dubai/Oman oil benchmarks. WTI crudeoil pricedata refers
to crude oil extracted in the U.S. is used in this study.
WTI oil price from July 1987 to March 2020 is collected for
the study. We can observe, the oil price increases in the
period between 2000 and 2013 and thendroppedsharply as
shown in figure1. The drastic variations make it difficult for
either traditional ARIMA models orSVMmodelstobeableto
capture those changes.
Figure 1: WTI price from 1987 to 2020
3.2 Preliminary Processing of Collected Data
Oil price have a large difference when considering
the highest and lowest. To reduce the variation of original
WTI data, we take log of the original data so that data can be
better fit into the model. The processed log data is shown in
figure 2. After taking the log , we can observe that the
processed data keeps an overall increasing trend while the
difference in price between early years and recent years are
reduced significantly, which can facilitate data analysis and
model training. Following data analysis will be based on the
log data. The whole dataset is split into training and testing
set. Training set accounts for 80% of the whole data and
testing set accounts for 20% of the whole data set, to verify
the model accuracy. This is shown in Figure 3.
Figure 2. Log value of WTI oil price from 1987 to
2020
Figure 3. Train and Test Data
3.3 Data preprocessing for ARIMA Model
Standard time series requires the analysis of the
stationarity of the data. The distributionofourinterestvalue
Xt=, in this study is the log oil price is independent of time t.
We claim that a time series data is stationary if given any T
period and time t, (X0, X1, โ€ฆ. , XT) and (Xt, Xt+1, โ€ฆ. , Xt+T) have the
same distribution. From figure 2, the log WTI oil price data
does not satisfy the definition of stationary data, mainly
because price is independent of time, still we perform a
rigorous non-stationary time series data test.
Stationarity canbeexamined byrunningDickeyโ€“ Fuller
test[8] whose null hypothesis is time series data being non-
stationary. We set the critical p-value to be 0.05, meaning if
the test p-value is greater than 0.05, we will accept the
Dickey-Fuller null hypothesis which states that data is
stationary. In this case the test p-value is 0.275 proving that
the WTI oil price is non stationary.
As shown in figure 4, wee further decompose log oil
price data into trend, seasonality andresidualsusingmoving
average by setting the seasonality frequency to 360 days.
After taking trend and seasonality, the residuals shows
characteristics of the stationarity, further validated by
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 07 Issue: 03 | Mar 2020 www.irjet.net p-ISSN: 2395-0072
ยฉ 2020, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 5287
conducting Dickey- Fuller test with result p-value smaller
than 0.05. As the residual term shows to be stationaryaftera
single decomposition, we can conclude that number of
nonseasonal difference d required in the ARIMA model is 1.
Figure 4. Trend, seasonality and residuals decomposition
of log price data
4. ARIMA RESULT
In section 3, we determined the order d to be 1 and instead
of performing autocorrelation and partial autocorrelation to
determine the order p and q by grid search and determined
p=0 and q=4 for the log transformed crudeoil pricedata.The
forecast result for the test period is shown in fiure 5. The
mean_Squared value is 1.606.
Figure 5: Arima forcast results on test data period
CONCLUSIONS
Crude oil is one of the most important chemical and energy
resources. The crude oil and itspriceaffectthe economicand
social activities, therefore crude effective crude oil forecast
can help stabilize economic development and prevent
energy crisis. The WTI crude oil data fromtheperiodof1987
to 2020 were analyzed and showed the non stationarity of
data. We conducted data analysis and preprocessing
prepared for ARIMA.
In future, we will explore several otherdifferentmodels and
will apply the techniques explored in thisstudytoothertime
series problems including Stock price prediction.
ACKNOWLEDGEMENT
This work would not be possible without the
support from my parents, husbandโ€™s family, tutors and HOD
of IES Engineering College and my friends. I am grateful for
my parents and my husband, Mr. Mohammed Ganeesh, for
their financial support in providing necessary hardware in
this research. I would specially thank Dr. Kiruthiga who
guided me through the whole project.
REFERENCES
[1] International Monetary Fund(IMF), The impact of
Higher oil prices on the global economy, A report
prepared by the research department of IMF, 2000
[2] E. Panas, & V. Ninmi, โ€œAre oil markets chaotic? A non-
linear dynamic analysis,โ€ Energy economics,22(5),549-
568, 2000.
[3] Taiyong Li, Zhenda Hu, Yanchi Jia , Jiang Wu and Yingrui
Zhou , โ€œForecasting Crude Oil Prices Using Ensemble
Empirical Mode Decomposition and Sparse Bayesian
Learning,โ€ article published in energirs on 19 july 2018.
[4] Junhui Guo. โ€œOil price forecast using depp learning and
ARIMAโ€, Shanghai American School, in International
Conference on MachineLearning,BigData andBuisiness
Intelligence, 2019
[5] W. Xie, L Yu, S. Xu & S. Wang, โ€œ A new method for crude
oil price forecasting based on supportvectormachines,โ€
In Internationa conference on Computational Science
(pp. 444-451). Springer Berlin, Heidelberg, May 2006
[6] A. Lanza, M. Manera & M. Giovannini, โ€œModeling and
forecasting cointegrated relationships among heavy oil
and product pricesโ€, Energy Economics,27(6),831-848,
2005.
[7] Chiroma, Haruna, et al. โ€œA review on artificial
intelligence methodologies for the forecasting of crude
oil price.โ€ Intelligent Automation & Soft Computing
22.3(2016):449-462.
[8] X. FRANCIS, โ€œ On the power of Dickey- Fuller tests
against fractional alternatives,โ€ Business Cycles:
Durations, Dynamics and Forecasting, p.258, 1999

More Related Content

Similar to IRJET - Crude Oil Price Forecasting using ARIMA Model

Forecasting Crude Oil Prices by using Deep Learning Based Model
Forecasting Crude Oil Prices by using Deep Learning Based ModelForecasting Crude Oil Prices by using Deep Learning Based Model
Forecasting Crude Oil Prices by using Deep Learning Based ModelIRJET Journal
ย 
Control Strategy of Flow Properties of Waxy Crude oil from Hegleig to Khartou...
Control Strategy of Flow Properties of Waxy Crude oil from Hegleig to Khartou...Control Strategy of Flow Properties of Waxy Crude oil from Hegleig to Khartou...
Control Strategy of Flow Properties of Waxy Crude oil from Hegleig to Khartou...IRJET Journal
ย 
IRJET- A Comparative Forecasting Analysis of ARIMA Model Vs Random Forest Alg...
IRJET- A Comparative Forecasting Analysis of ARIMA Model Vs Random Forest Alg...IRJET- A Comparative Forecasting Analysis of ARIMA Model Vs Random Forest Alg...
IRJET- A Comparative Forecasting Analysis of ARIMA Model Vs Random Forest Alg...IRJET Journal
ย 
IRJET- Data Visualization and Stock Market and Prediction
IRJET- Data Visualization and Stock Market and PredictionIRJET- Data Visualization and Stock Market and Prediction
IRJET- Data Visualization and Stock Market and PredictionIRJET Journal
ย 
IRJET- Failure Mode and Effect Analysis (FMEA) โ€“ A Case Study in Manufacturin...
IRJET- Failure Mode and Effect Analysis (FMEA) โ€“ A Case Study in Manufacturin...IRJET- Failure Mode and Effect Analysis (FMEA) โ€“ A Case Study in Manufacturin...
IRJET- Failure Mode and Effect Analysis (FMEA) โ€“ A Case Study in Manufacturin...IRJET Journal
ย 
Analysis of Foundry defects and Quality improvement of Sand casting
Analysis of Foundry defects and Quality improvement of Sand castingAnalysis of Foundry defects and Quality improvement of Sand casting
Analysis of Foundry defects and Quality improvement of Sand castingIRJET Journal
ย 
Visualizing and Forecasting Stocks Using Machine Learning
Visualizing and Forecasting Stocks Using Machine LearningVisualizing and Forecasting Stocks Using Machine Learning
Visualizing and Forecasting Stocks Using Machine LearningIRJET Journal
ย 
IRJET- Investigation of Mechanical Properties of Poly Lactic Acid Embedded Na...
IRJET- Investigation of Mechanical Properties of Poly Lactic Acid Embedded Na...IRJET- Investigation of Mechanical Properties of Poly Lactic Acid Embedded Na...
IRJET- Investigation of Mechanical Properties of Poly Lactic Acid Embedded Na...IRJET Journal
ย 
IPC_project final
IPC_project finalIPC_project final
IPC_project finalRatul Das
ย 
Presentation
PresentationPresentation
PresentationSrinivas KNS
ย 
IRJET- A Study on Algorithms for FFT Computations
IRJET- A Study on Algorithms for FFT ComputationsIRJET- A Study on Algorithms for FFT Computations
IRJET- A Study on Algorithms for FFT ComputationsIRJET Journal
ย 
IRJET- Rejection Analysis in Fuel Equipment
IRJET- Rejection Analysis in Fuel EquipmentIRJET- Rejection Analysis in Fuel Equipment
IRJET- Rejection Analysis in Fuel EquipmentIRJET Journal
ย 
IRJET- Titanic Survival Analysis using Logistic Regression
IRJET-  	  Titanic Survival Analysis using Logistic RegressionIRJET-  	  Titanic Survival Analysis using Logistic Regression
IRJET- Titanic Survival Analysis using Logistic RegressionIRJET Journal
ย 
IRJET- A Case Study Approach of Quality Tools in Manufacturing Industry
IRJET- A Case Study Approach of Quality Tools in Manufacturing IndustryIRJET- A Case Study Approach of Quality Tools in Manufacturing Industry
IRJET- A Case Study Approach of Quality Tools in Manufacturing IndustryIRJET Journal
ย 
IRJET- Analysis of Well Head Pressure Sensor Data for Anomaly Detection in Oi...
IRJET- Analysis of Well Head Pressure Sensor Data for Anomaly Detection in Oi...IRJET- Analysis of Well Head Pressure Sensor Data for Anomaly Detection in Oi...
IRJET- Analysis of Well Head Pressure Sensor Data for Anomaly Detection in Oi...IRJET Journal
ย 
Stock market Prediction & Analysis
Stock market Prediction & AnalysisStock market Prediction & Analysis
Stock market Prediction & AnalysisIRJET Journal
ย 
Cascade networks model to predict the crude oil prices in Iraq
Cascade networks model to predict the crude oil prices in IraqCascade networks model to predict the crude oil prices in Iraq
Cascade networks model to predict the crude oil prices in IraqIJECEIAES
ย 
IRJET- Effect and Optimization of Laser Beam Machining Parameters using Taguc...
IRJET- Effect and Optimization of Laser Beam Machining Parameters using Taguc...IRJET- Effect and Optimization of Laser Beam Machining Parameters using Taguc...
IRJET- Effect and Optimization of Laser Beam Machining Parameters using Taguc...IRJET Journal
ย 
IRJET-Parametric Optimisation of Gas Metal Arc Welding Process with the Help ...
IRJET-Parametric Optimisation of Gas Metal Arc Welding Process with the Help ...IRJET-Parametric Optimisation of Gas Metal Arc Welding Process with the Help ...
IRJET-Parametric Optimisation of Gas Metal Arc Welding Process with the Help ...IRJET Journal
ย 

Similar to IRJET - Crude Oil Price Forecasting using ARIMA Model (20)

Forecasting Crude Oil Prices by using Deep Learning Based Model
Forecasting Crude Oil Prices by using Deep Learning Based ModelForecasting Crude Oil Prices by using Deep Learning Based Model
Forecasting Crude Oil Prices by using Deep Learning Based Model
ย 
Control Strategy of Flow Properties of Waxy Crude oil from Hegleig to Khartou...
Control Strategy of Flow Properties of Waxy Crude oil from Hegleig to Khartou...Control Strategy of Flow Properties of Waxy Crude oil from Hegleig to Khartou...
Control Strategy of Flow Properties of Waxy Crude oil from Hegleig to Khartou...
ย 
IRJET- A Comparative Forecasting Analysis of ARIMA Model Vs Random Forest Alg...
IRJET- A Comparative Forecasting Analysis of ARIMA Model Vs Random Forest Alg...IRJET- A Comparative Forecasting Analysis of ARIMA Model Vs Random Forest Alg...
IRJET- A Comparative Forecasting Analysis of ARIMA Model Vs Random Forest Alg...
ย 
IRJET- Data Visualization and Stock Market and Prediction
IRJET- Data Visualization and Stock Market and PredictionIRJET- Data Visualization and Stock Market and Prediction
IRJET- Data Visualization and Stock Market and Prediction
ย 
IRJET- Failure Mode and Effect Analysis (FMEA) โ€“ A Case Study in Manufacturin...
IRJET- Failure Mode and Effect Analysis (FMEA) โ€“ A Case Study in Manufacturin...IRJET- Failure Mode and Effect Analysis (FMEA) โ€“ A Case Study in Manufacturin...
IRJET- Failure Mode and Effect Analysis (FMEA) โ€“ A Case Study in Manufacturin...
ย 
Analysis of Foundry defects and Quality improvement of Sand casting
Analysis of Foundry defects and Quality improvement of Sand castingAnalysis of Foundry defects and Quality improvement of Sand casting
Analysis of Foundry defects and Quality improvement of Sand casting
ย 
Visualizing and Forecasting Stocks Using Machine Learning
Visualizing and Forecasting Stocks Using Machine LearningVisualizing and Forecasting Stocks Using Machine Learning
Visualizing and Forecasting Stocks Using Machine Learning
ย 
IRJET- Investigation of Mechanical Properties of Poly Lactic Acid Embedded Na...
IRJET- Investigation of Mechanical Properties of Poly Lactic Acid Embedded Na...IRJET- Investigation of Mechanical Properties of Poly Lactic Acid Embedded Na...
IRJET- Investigation of Mechanical Properties of Poly Lactic Acid Embedded Na...
ย 
20120140503019
2012014050301920120140503019
20120140503019
ย 
IPC_project final
IPC_project finalIPC_project final
IPC_project final
ย 
Presentation
PresentationPresentation
Presentation
ย 
IRJET- A Study on Algorithms for FFT Computations
IRJET- A Study on Algorithms for FFT ComputationsIRJET- A Study on Algorithms for FFT Computations
IRJET- A Study on Algorithms for FFT Computations
ย 
IRJET- Rejection Analysis in Fuel Equipment
IRJET- Rejection Analysis in Fuel EquipmentIRJET- Rejection Analysis in Fuel Equipment
IRJET- Rejection Analysis in Fuel Equipment
ย 
IRJET- Titanic Survival Analysis using Logistic Regression
IRJET-  	  Titanic Survival Analysis using Logistic RegressionIRJET-  	  Titanic Survival Analysis using Logistic Regression
IRJET- Titanic Survival Analysis using Logistic Regression
ย 
IRJET- A Case Study Approach of Quality Tools in Manufacturing Industry
IRJET- A Case Study Approach of Quality Tools in Manufacturing IndustryIRJET- A Case Study Approach of Quality Tools in Manufacturing Industry
IRJET- A Case Study Approach of Quality Tools in Manufacturing Industry
ย 
IRJET- Analysis of Well Head Pressure Sensor Data for Anomaly Detection in Oi...
IRJET- Analysis of Well Head Pressure Sensor Data for Anomaly Detection in Oi...IRJET- Analysis of Well Head Pressure Sensor Data for Anomaly Detection in Oi...
IRJET- Analysis of Well Head Pressure Sensor Data for Anomaly Detection in Oi...
ย 
Stock market Prediction & Analysis
Stock market Prediction & AnalysisStock market Prediction & Analysis
Stock market Prediction & Analysis
ย 
Cascade networks model to predict the crude oil prices in Iraq
Cascade networks model to predict the crude oil prices in IraqCascade networks model to predict the crude oil prices in Iraq
Cascade networks model to predict the crude oil prices in Iraq
ย 
IRJET- Effect and Optimization of Laser Beam Machining Parameters using Taguc...
IRJET- Effect and Optimization of Laser Beam Machining Parameters using Taguc...IRJET- Effect and Optimization of Laser Beam Machining Parameters using Taguc...
IRJET- Effect and Optimization of Laser Beam Machining Parameters using Taguc...
ย 
IRJET-Parametric Optimisation of Gas Metal Arc Welding Process with the Help ...
IRJET-Parametric Optimisation of Gas Metal Arc Welding Process with the Help ...IRJET-Parametric Optimisation of Gas Metal Arc Welding Process with the Help ...
IRJET-Parametric Optimisation of Gas Metal Arc Welding Process with the Help ...
ย 

More from IRJET Journal

TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...IRJET Journal
ย 
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURESTUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTUREIRJET Journal
ย 
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...IRJET Journal
ย 
Effect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil CharacteristicsEffect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil CharacteristicsIRJET Journal
ย 
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...IRJET Journal
ย 
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...IRJET Journal
ย 
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...IRJET Journal
ย 
A Review of โ€œSeismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of โ€œSeismic Response of RC Structures Having Plan and Vertical Irreg...A Review of โ€œSeismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of โ€œSeismic Response of RC Structures Having Plan and Vertical Irreg...IRJET Journal
ย 
A REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADASA REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADASIRJET Journal
ย 
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...IRJET Journal
ย 
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD ProP.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD ProIRJET Journal
ย 
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...IRJET Journal
ย 
Survey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare SystemSurvey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare SystemIRJET Journal
ย 
Review on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridgesReview on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridgesIRJET Journal
ย 
React based fullstack edtech web application
React based fullstack edtech web applicationReact based fullstack edtech web application
React based fullstack edtech web applicationIRJET Journal
ย 
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...IRJET Journal
ย 
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.IRJET Journal
ย 
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...IRJET Journal
ย 
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic DesignMultistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic DesignIRJET Journal
ย 
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...IRJET Journal
ย 

More from IRJET Journal (20)

TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
ย 
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURESTUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
ย 
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
ย 
Effect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil CharacteristicsEffect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil Characteristics
ย 
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
ย 
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
ย 
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
ย 
A Review of โ€œSeismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of โ€œSeismic Response of RC Structures Having Plan and Vertical Irreg...A Review of โ€œSeismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of โ€œSeismic Response of RC Structures Having Plan and Vertical Irreg...
ย 
A REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADASA REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADAS
ย 
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
ย 
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD ProP.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
ย 
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
ย 
Survey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare SystemSurvey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare System
ย 
Review on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridgesReview on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridges
ย 
React based fullstack edtech web application
React based fullstack edtech web applicationReact based fullstack edtech web application
React based fullstack edtech web application
ย 
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
ย 
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
ย 
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
ย 
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic DesignMultistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
ย 
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
ย 

Recently uploaded

BSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptx
BSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptxBSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptx
BSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptxfenichawla
ย 
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...ranjana rawat
ย 
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...roncy bisnoi
ย 
data_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdfdata_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdfJiananWang21
ย 
Call Girls in Ramesh Nagar Delhi ๐Ÿ’ฏ Call Us ๐Ÿ”9953056974 ๐Ÿ” Escort Service
Call Girls in Ramesh Nagar Delhi ๐Ÿ’ฏ Call Us ๐Ÿ”9953056974 ๐Ÿ” Escort ServiceCall Girls in Ramesh Nagar Delhi ๐Ÿ’ฏ Call Us ๐Ÿ”9953056974 ๐Ÿ” Escort Service
Call Girls in Ramesh Nagar Delhi ๐Ÿ’ฏ Call Us ๐Ÿ”9953056974 ๐Ÿ” Escort Service9953056974 Low Rate Call Girls In Saket, Delhi NCR
ย 
Online banking management system project.pdf
Online banking management system project.pdfOnline banking management system project.pdf
Online banking management system project.pdfKamal Acharya
ย 
ONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdf
ONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdfONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdf
ONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdfKamal Acharya
ย 
Thermal Engineering Unit - I & II . ppt
Thermal Engineering  Unit - I & II . pptThermal Engineering  Unit - I & II . ppt
Thermal Engineering Unit - I & II . pptDineshKumar4165
ย 
Generative AI or GenAI technology based PPT
Generative AI or GenAI technology based PPTGenerative AI or GenAI technology based PPT
Generative AI or GenAI technology based PPTbhaskargani46
ย 
PVC VS. FIBERGLASS (FRP) GRAVITY SEWER - UNI BELL
PVC VS. FIBERGLASS (FRP) GRAVITY SEWER - UNI BELLPVC VS. FIBERGLASS (FRP) GRAVITY SEWER - UNI BELL
PVC VS. FIBERGLASS (FRP) GRAVITY SEWER - UNI BELLManishPatel169454
ย 
Booking open Available Pune Call Girls Pargaon 6297143586 Call Hot Indian Gi...
Booking open Available Pune Call Girls Pargaon  6297143586 Call Hot Indian Gi...Booking open Available Pune Call Girls Pargaon  6297143586 Call Hot Indian Gi...
Booking open Available Pune Call Girls Pargaon 6297143586 Call Hot Indian Gi...Call Girls in Nagpur High Profile
ย 
Call Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance BookingCall Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance Bookingroncy bisnoi
ย 
Thermal Engineering -unit - III & IV.ppt
Thermal Engineering -unit - III & IV.pptThermal Engineering -unit - III & IV.ppt
Thermal Engineering -unit - III & IV.pptDineshKumar4165
ย 
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...SUHANI PANDEY
ย 
Bhosari ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready For ...
Bhosari ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready For ...Bhosari ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready For ...
Bhosari ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready For ...tanu pandey
ย 
Double Revolving field theory-how the rotor develops torque
Double Revolving field theory-how the rotor develops torqueDouble Revolving field theory-how the rotor develops torque
Double Revolving field theory-how the rotor develops torqueBhangaleSonal
ย 
notes on Evolution Of Analytic Scalability.ppt
notes on Evolution Of Analytic Scalability.pptnotes on Evolution Of Analytic Scalability.ppt
notes on Evolution Of Analytic Scalability.pptMsecMca
ย 
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Christo Ananth
ย 
Call for Papers - International Journal of Intelligent Systems and Applicatio...
Call for Papers - International Journal of Intelligent Systems and Applicatio...Call for Papers - International Journal of Intelligent Systems and Applicatio...
Call for Papers - International Journal of Intelligent Systems and Applicatio...Christo Ananth
ย 
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXssuser89054b
ย 

Recently uploaded (20)

BSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptx
BSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptxBSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptx
BSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptx
ย 
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
ย 
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
ย 
data_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdfdata_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdf
ย 
Call Girls in Ramesh Nagar Delhi ๐Ÿ’ฏ Call Us ๐Ÿ”9953056974 ๐Ÿ” Escort Service
Call Girls in Ramesh Nagar Delhi ๐Ÿ’ฏ Call Us ๐Ÿ”9953056974 ๐Ÿ” Escort ServiceCall Girls in Ramesh Nagar Delhi ๐Ÿ’ฏ Call Us ๐Ÿ”9953056974 ๐Ÿ” Escort Service
Call Girls in Ramesh Nagar Delhi ๐Ÿ’ฏ Call Us ๐Ÿ”9953056974 ๐Ÿ” Escort Service
ย 
Online banking management system project.pdf
Online banking management system project.pdfOnline banking management system project.pdf
Online banking management system project.pdf
ย 
ONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdf
ONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdfONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdf
ONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdf
ย 
Thermal Engineering Unit - I & II . ppt
Thermal Engineering  Unit - I & II . pptThermal Engineering  Unit - I & II . ppt
Thermal Engineering Unit - I & II . ppt
ย 
Generative AI or GenAI technology based PPT
Generative AI or GenAI technology based PPTGenerative AI or GenAI technology based PPT
Generative AI or GenAI technology based PPT
ย 
PVC VS. FIBERGLASS (FRP) GRAVITY SEWER - UNI BELL
PVC VS. FIBERGLASS (FRP) GRAVITY SEWER - UNI BELLPVC VS. FIBERGLASS (FRP) GRAVITY SEWER - UNI BELL
PVC VS. FIBERGLASS (FRP) GRAVITY SEWER - UNI BELL
ย 
Booking open Available Pune Call Girls Pargaon 6297143586 Call Hot Indian Gi...
Booking open Available Pune Call Girls Pargaon  6297143586 Call Hot Indian Gi...Booking open Available Pune Call Girls Pargaon  6297143586 Call Hot Indian Gi...
Booking open Available Pune Call Girls Pargaon 6297143586 Call Hot Indian Gi...
ย 
Call Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance BookingCall Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance Booking
ย 
Thermal Engineering -unit - III & IV.ppt
Thermal Engineering -unit - III & IV.pptThermal Engineering -unit - III & IV.ppt
Thermal Engineering -unit - III & IV.ppt
ย 
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
ย 
Bhosari ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready For ...
Bhosari ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready For ...Bhosari ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready For ...
Bhosari ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready For ...
ย 
Double Revolving field theory-how the rotor develops torque
Double Revolving field theory-how the rotor develops torqueDouble Revolving field theory-how the rotor develops torque
Double Revolving field theory-how the rotor develops torque
ย 
notes on Evolution Of Analytic Scalability.ppt
notes on Evolution Of Analytic Scalability.pptnotes on Evolution Of Analytic Scalability.ppt
notes on Evolution Of Analytic Scalability.ppt
ย 
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
ย 
Call for Papers - International Journal of Intelligent Systems and Applicatio...
Call for Papers - International Journal of Intelligent Systems and Applicatio...Call for Papers - International Journal of Intelligent Systems and Applicatio...
Call for Papers - International Journal of Intelligent Systems and Applicatio...
ย 
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
ย 

IRJET - Crude Oil Price Forecasting using ARIMA Model

  • 1. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 07 Issue: 03 | Mar 2020 www.irjet.net p-ISSN: 2395-0072 ยฉ 2020, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 5285 Crude Oil Price Forecasting using ARIMA model Jessin Shah P A1, Dr. G Kiruthiga2 1Department of Computer Science & Engineering, IES College of Engineering and Technology, Chittilappilly 2 HOD, Dept. of Computer Science & Engineering, IES College of Engineering and Technology, Chittilappilly ---------------------------------------------------------------------***---------------------------------------------------------------------- Abstract โ€“ Oil plays a vital role in the production of many items that we use in regular basis. The increase and decrease of the price of oil influence many sectors oftheeconomy.There are many methods to model and forecast time series data. In this paper, we examine the time series and non-linear feature of oil price, and use ARIMA model to make prediction. The results show that ARIMA model yields best performance. Key Words: oil price forecast, Time โ€“series, AR, MA, ARIMA model. 1. INTRODUCTION Crude oil is an unprocessed thick liquid fuel source extracted directly from the oil reservoirs. Oil is used for transportation, petroleum products and plastics. Oil is the base for over 6000 items. There are different types of oil. West Texas Intermediate crude oil is of very high quality. It is the major benchmark of crude oil in the Americas. Brent Blend is a combination of crude oil from fifteen different oil fields in North Sea and is the primary benchmark for crude oils in Europe and Africa. Oil is one of the primary sources of enegy consumption, therefore the price of oil affect the world economy. Accounting for a large part of exports for some countries, a sudden changes of crude oil price can bring significant economic consequences, with crashes of crude oil prices bringing about slower economic activity[1] and booms of crude oil prices causing significant inflation as well. The crude oil prices are affected by supply anddemand and also depends economic activity, politics and more[2]. Accurate forecasting is important for both government and industries to make decision in economic strategy. But dueto its chaotic and unpredictable nature it is difficult to predict. Crude oil price prediction is a challenging research topic. Different machine learning models have been applied to address this problem including EEMD-SBL-ADD[3],neural network model, ARIMA model[4], support vector machines(SVM)[5] and error correction models(ECM)[6], etc.. Xie et al. compared the performance of SVM with other popular time series forecasting models, and concluded that SVM outperforms other tested models. Though Lanza At el. (2005) utilized ECMs to investigate crude oil prices, due to the irregular nature of crude oil market, method often proved to be inefficient. In[3] a novel model integrating EEMD(Ensemble Emperical Mode Decomposition), SBL(Sparse Bayesian Learning) and addition for forecasting crude oil prices were proposed and concluded that EEMD- SBL-ADD outperforms any other competitive models in terms of the evaluation criteria. A literature reviewoncrude oil price prediction showed that for making predictions, most existing work relied on ARIMA, fully connected neural networks and recurrent neural networks[7]. Although many factors effect the price of oil, in practiceit is hard to consider all the contributing factors. Therefore in this work we consider oil as a pure timeseriesproblem.SVM and ARIMA model is considered in this research and compare to figure out a best fit for this prediction. In the following part of this paper, we will first introduce arima model which we apply in this study, next to fit time series data into models, then perform data processing. Next section contain results and comparisons. Then we conclude our study about oil price forecasting. 2. ARIMA MODEL In time series analysis, an autoregressive integrated moving average (ARIMA) model is a generalization of an autoregressive moving average (ARMA) model. Both these models are used in time series data to understand data or to predict the future points in series that is to forecast. ARIMA model is the combination of autoregression(AR)andmoving average(MA).ARusesthedependentrelationshipbetweenan observation and some number of lagged observations. integrated is the use of differencing of raw observations in order to make the time series stationary. MA is a model that uses the dependency between an observation and a residual error from a moving average model applied to lagged observations. Standard notation used for ARIMA model is ARIMA(p, d, q) where p is the lag order that is order of AR, d is the degree of differencing to make the time series stationary, q is the size of moving average window thatโ€™s the order of MA. The parameters take integer values. ARIMA model is applied to the time series data with non- stationarity property by applying differencing on raw observations to make the time series data stationary. After differencing the ARIMA model for a serially correlated data can be expressed in the form of yt=ยต+๏€ ๏ฆ1 yt-1 +โ€ฆ.+๏€ ๏ฆp yt-p -๏ฑ1et-1 โ€ฆ.. -๏ฑqet-q(1) where yt is the value at time t, et random error and the mean of the series. ๏ฆt(t=1, 2, โ€ฆ ,p) and ๏ฑt(t=1, 2, โ€ฆ, q) are model parameters that needs to be determined from data. p and q define orders of the model.
  • 2. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 07 Issue: 03 | Mar 2020 www.irjet.net p-ISSN: 2395-0072 ยฉ 2020, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 5286 3. PREPARE THE DATA 3.1 Data Selection To value the commodity, threecrudeoil benchmarksare set, they are Brent, West Texas Intermediate(WTI) and Dubai/Oman oil benchmarks. WTI crudeoil pricedata refers to crude oil extracted in the U.S. is used in this study. WTI oil price from July 1987 to March 2020 is collected for the study. We can observe, the oil price increases in the period between 2000 and 2013 and thendroppedsharply as shown in figure1. The drastic variations make it difficult for either traditional ARIMA models orSVMmodelstobeableto capture those changes. Figure 1: WTI price from 1987 to 2020 3.2 Preliminary Processing of Collected Data Oil price have a large difference when considering the highest and lowest. To reduce the variation of original WTI data, we take log of the original data so that data can be better fit into the model. The processed log data is shown in figure 2. After taking the log , we can observe that the processed data keeps an overall increasing trend while the difference in price between early years and recent years are reduced significantly, which can facilitate data analysis and model training. Following data analysis will be based on the log data. The whole dataset is split into training and testing set. Training set accounts for 80% of the whole data and testing set accounts for 20% of the whole data set, to verify the model accuracy. This is shown in Figure 3. Figure 2. Log value of WTI oil price from 1987 to 2020 Figure 3. Train and Test Data 3.3 Data preprocessing for ARIMA Model Standard time series requires the analysis of the stationarity of the data. The distributionofourinterestvalue Xt=, in this study is the log oil price is independent of time t. We claim that a time series data is stationary if given any T period and time t, (X0, X1, โ€ฆ. , XT) and (Xt, Xt+1, โ€ฆ. , Xt+T) have the same distribution. From figure 2, the log WTI oil price data does not satisfy the definition of stationary data, mainly because price is independent of time, still we perform a rigorous non-stationary time series data test. Stationarity canbeexamined byrunningDickeyโ€“ Fuller test[8] whose null hypothesis is time series data being non- stationary. We set the critical p-value to be 0.05, meaning if the test p-value is greater than 0.05, we will accept the Dickey-Fuller null hypothesis which states that data is stationary. In this case the test p-value is 0.275 proving that the WTI oil price is non stationary. As shown in figure 4, wee further decompose log oil price data into trend, seasonality andresidualsusingmoving average by setting the seasonality frequency to 360 days. After taking trend and seasonality, the residuals shows characteristics of the stationarity, further validated by
  • 3. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 07 Issue: 03 | Mar 2020 www.irjet.net p-ISSN: 2395-0072 ยฉ 2020, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 5287 conducting Dickey- Fuller test with result p-value smaller than 0.05. As the residual term shows to be stationaryaftera single decomposition, we can conclude that number of nonseasonal difference d required in the ARIMA model is 1. Figure 4. Trend, seasonality and residuals decomposition of log price data 4. ARIMA RESULT In section 3, we determined the order d to be 1 and instead of performing autocorrelation and partial autocorrelation to determine the order p and q by grid search and determined p=0 and q=4 for the log transformed crudeoil pricedata.The forecast result for the test period is shown in fiure 5. The mean_Squared value is 1.606. Figure 5: Arima forcast results on test data period CONCLUSIONS Crude oil is one of the most important chemical and energy resources. The crude oil and itspriceaffectthe economicand social activities, therefore crude effective crude oil forecast can help stabilize economic development and prevent energy crisis. The WTI crude oil data fromtheperiodof1987 to 2020 were analyzed and showed the non stationarity of data. We conducted data analysis and preprocessing prepared for ARIMA. In future, we will explore several otherdifferentmodels and will apply the techniques explored in thisstudytoothertime series problems including Stock price prediction. ACKNOWLEDGEMENT This work would not be possible without the support from my parents, husbandโ€™s family, tutors and HOD of IES Engineering College and my friends. I am grateful for my parents and my husband, Mr. Mohammed Ganeesh, for their financial support in providing necessary hardware in this research. I would specially thank Dr. Kiruthiga who guided me through the whole project. REFERENCES [1] International Monetary Fund(IMF), The impact of Higher oil prices on the global economy, A report prepared by the research department of IMF, 2000 [2] E. Panas, & V. Ninmi, โ€œAre oil markets chaotic? A non- linear dynamic analysis,โ€ Energy economics,22(5),549- 568, 2000. [3] Taiyong Li, Zhenda Hu, Yanchi Jia , Jiang Wu and Yingrui Zhou , โ€œForecasting Crude Oil Prices Using Ensemble Empirical Mode Decomposition and Sparse Bayesian Learning,โ€ article published in energirs on 19 july 2018. [4] Junhui Guo. โ€œOil price forecast using depp learning and ARIMAโ€, Shanghai American School, in International Conference on MachineLearning,BigData andBuisiness Intelligence, 2019 [5] W. Xie, L Yu, S. Xu & S. Wang, โ€œ A new method for crude oil price forecasting based on supportvectormachines,โ€ In Internationa conference on Computational Science (pp. 444-451). Springer Berlin, Heidelberg, May 2006 [6] A. Lanza, M. Manera & M. Giovannini, โ€œModeling and forecasting cointegrated relationships among heavy oil and product pricesโ€, Energy Economics,27(6),831-848, 2005. [7] Chiroma, Haruna, et al. โ€œA review on artificial intelligence methodologies for the forecasting of crude oil price.โ€ Intelligent Automation & Soft Computing 22.3(2016):449-462. [8] X. FRANCIS, โ€œ On the power of Dickey- Fuller tests against fractional alternatives,โ€ Business Cycles: Durations, Dynamics and Forecasting, p.258, 1999