# Get Brent (BZ=F) and WTI (CL=F) crude oil prices and convert to tsibble
<- tq_get("BZ=F", from = "2021-01-01", to = Sys.Date(), get = "stock.prices") %>%
brent as_tsibble(index = date)
<- tq_get("CL=F", from = "2021-01-01", to = Sys.Date(), get = "stock.prices") %>%
wti as_tsibble(index = date)
# Merge Brent and WTI by date and compute daily returns
<- left_join(brent %>% select(date, adjusted) %>% rename(Brent = adjusted),
oil_data %>% select(date, adjusted) %>% rename(WTI = adjusted),
wti by = "date") %>%
mutate(dBrent = difference(Brent),
dWTI = difference(WTI)) %>%
drop_na() %>%
as_tsibble(index = date)
# Plot daily returns for Brent and WTI
%>%
oil_data autoplot(vars(dBrent, dWTI)) +
labs(title = "Daily Returns: Brent & WTI", x = "Date", y = "Return")
Activity15
Oil Prices Analysis: Brent, WTI & Impulse Response Function
Objective
Retrieve Brent and WTI crude oil prices, compute daily returns, and explore a basic VAR model.
VAR Models & Impulse Response Functions
A VAR (Vector Autoregression) model captures the dynamic relationships between multiple time series. In our case, each variable (dBrent
and dWTI
) is modeled as a function of its own past values and those of the other.
Impulse response functions (IRFs) trace the effect of a one-time shock to one variable (e.g., Brent returns) on the future values of another variable (e.g., WTI returns). The IRF output typically displays point estimates and confidence intervals for the response over a series of future periods.
VAR Lag Order Selection
# Convert to tibble for VAR analysis
<- oil_data %>%
oil_data_df as_tibble() %>%
select(dBrent, dWTI)
# Select optimal lag order for the VAR model
<- VARselect(oil_data_df, lag.max = 20, type = "const")
var_selection print(var_selection$selection)
AIC(n) HQ(n) SC(n) FPE(n)
18 2 1 18
Fitting a VAR Model and Computing its IRF
Here we fit a VAR model with a chosen lag order (e.g., p = 4) and compute its impulse response function.
<- VAR(oil_data_df, p = 4, type = "const") var_model_1
# Compute the IRF: show how a shock to Brent returns (dBrent) affects WTI returns (dWTI)
<- irf(var_model_1, impulse = "dBrent", response = "dWTI", boot = TRUE)
irf_1 plot(irf_1, main = "IRF Demo: Shock to Brent Returns and Response of WTI Returns")
In the IRF plot, we see:
- The horizontal axis representing the number of periods after the shock.
- The vertical axis showing the estimated change in WTI returns due to a unit shock in Brent returns.
- A solid line for the point estimates and dashed lines indicating the confidence intervals.
This output helps visualize both the magnitude and duration of the shock’s impact.
Lab Activity
Task: Using the oil_data_df
, fit VAR models with different lag orders (e.g., VAR(2) and VAR(3)) and analyze the impulse response functions (IRFs) to study how shocks in Brent returns affect WTI returns.
# VAR model with lag order 2
<- VAR(oil_data_df, p = 2, type = "const")
var_model_2 <- irf(var_model_2, impulse = "dBrent", response = "dWTI", boot = TRUE)
irf_2 plot(irf_2, main = "IRF: VAR(2) Model (Brent -> WTI)")
# VAR model with lag order 3
<- VAR(oil_data_df, p = 3, type = "const")
var_model_3 <- irf(var_model_3, impulse = "dBrent", response = "dWTI", boot = TRUE)
irf_3 plot(irf_3, main = "IRF: VAR(3) Model (Brent -> WTI)")