Modeling Exchange Rate Using GARCH
Let's consider the following exchange rate : USD/JPY
For each sequence, we consider changes in the daily difference between the highest price and the open price of the underlying exchange rates.
Thus, if:
- $O(t)$ is the open price of the underlying exchange rate at time $t$, and
- $H(t)$ is the highest price of the underlying at time $t$,
we transform the sequence as follows:
$$ Y(t) = \log \frac{H(t)-O(t)}{H(t-1)-O(t-1)} $$
GARCH Model is frequently used to model changes in the variance of $Y(t)$, and I suggest to investigate in this way.
Is a common known that GARCH models are appropriate for modeling time series that exhibit a heavily-tailed distribution and display some degree of serial correlation.
So as a preliminary we must verify that the sequence $Y(t)$ is in fact heavy-tailed and does indeed exhibit serial correlation
Empirical Sequence
- I computed : skewness = 0.11 and kurtosis = 3.9. Test Ok
- I plotted ACF & PACF : evidence of serial correlation & long term dependence among sequence
GARCH model "OK"
GARCH Modelling
- I fit a GARCH(1,1) / GARCH(1,2) / GARCH(1,2) to sequence to obtain parameters.
- Ljung-Box : Only GARCH(1,1) & GARCH(1,2) succeed.
- I simulated on 1 $Y$ and compared simulated to original sequence.
- Result does not seems to capture salient features of the empirical sequence.
Do you see any improvement in the methodology to improve my results?
Thanks.