Displaying 20 results from an estimated 11000 matches similar to: "Fitting of Garch Model in R [forwarded]"
2000 Nov 29
0
Re: R-help Digest V2 #275
R-help Digest wrote:
>
> Date: Tue, 28 Nov 2000 08:20:43 +0100
> From: "Muhammad Rashid Ahmed" <rahmed at julian.uwo.ca>
> Subject: [R] Fitting of Garch Model in R [forwarded]
>
> This accidentally (;-) didn't go to the R-help mailing list ..
>
> - ----
> -- start of forwarded message -------
>
> To: <maechler at stat.math.ethz.ch>
>
2008 Mar 29
0
fitting an AR-TAR-GARCH MODEL
I am trying to fit the model above.
I know how to do for an AR-GARCH , but I do not know how to use the TAR
function , I do not know if it is possible to use a TAR-GARCH formula for
the variance in the garchOxFit command.
With many thanks,
Adela Popescu.
--
View this message in context: http://www.nabble.com/fitting-an-AR-TAR-GARCH-MODEL-tp16376527p16376527.html
Sent from the R help mailing list
2007 Jul 19
1
Questions regarding R and fitting GARCH models
Dear all,
I've recently switched from EViews to R with RMetrics/fSeries (newest
version of july 10) for my analysis because of the much bigger
flexibility it offers. So far my experiences had been great -prior I
had already worked extensively with S-Plus so was already kind of
familiar with the language- until I got to the fSeries package.
My problem with the documentation of fSeries is that
2010 Aug 23
1
Fitting a GARCH model in R
Hi,
I want to fit a mean and variance model jointly.
For example I might want to fit an AR(2)-GARCH(1,1) model i.e.
r_t = constant_term1 + b*r_t-1 + c*r_t-2 + a_t
where a_t = sigma_t*epsilon_t
where sigma^2_t = constant_term2 + p*sigma^2_t-1 + q*a^2_t-1
i.e. R estimates a constant_term1, b, c, constant_term2, p, q
TIA
Aditya
2008 Oct 14
0
nlm return wrong function value - garch fitting
I am using nlm to maximize a likelihood function. When I call the likelihood
function (garchLLH) via nlm however, nlm returns the wrong value of the
function.
When I test the likelihood function manually I get the correct answer. I'm
probably doing something really stupid, maybe someone can point it out for
me.
###############this is the function i am trying to minimize ############
2007 Oct 17
1
Time Series - Function to fit ARIMA and GARCH components
I'm searching for a function to fit a conditional mean structure (ARIMA) and
a conditional variance structure (GARCH) to a data set for one model.
Particularly, I'm trying to fit an IMA(1,1)+GARCH(1,1) model to a data set.
However, I can't seem to find a function that will let me specify both the
ARIMA and GARCH components.
Any help would be appreciated!
--
View this message in
2011 Jun 04
0
[R-SIG-Finance] Measure quality of fit for MA(q), ARMA(p, q) and GARCH(p, q)
Thank you so much all for your invaluable inputs.
On Sat, Jun 4, 2011 at 3:36 AM, Patrick Burns <patrick at burns-stat.com> wrote:
> A common thing to do is the Ljung-Box
> test on the residuals. ?For garch it
> would be the residuals squared.
>
> Actually for garch it should be the
> rank of the squared residuals -- see
>
2009 Feb 14
0
How to fit GARCH(1,1) with targeted unconditional variance?
Hello,
I have a univariate data set, and the unconditional variance is 1. I would
like to fit a GARCH(1,1) model to the data set with a constraint: \omega
(the constant parameter in GARCH(1,1)) is equal to 1-\alpha-\beta. So the
unconditional variance can be controled to be \omega /(1-\alpha-\beta) = 1.
I was using garchFit (fGARCH package) but did not find the way to control.
Any help?
2017 Jun 07
0
Getting forecast values using DCC GARCH fit
Hi,
I am trying to fit a multivariate time series model using DCC GARCH model
and forecast it.
The data looks like this:
> head(datax)
x vibration_x Speed
1 2017-05-16 17:53:00 -0.132 421.4189
2 2017-05-16 17:54:00 -0.296 1296.8882
3 2017-05-16 17:55:00 -0.572 0.0000
4 2017-05-16 17:56:00 -0.736 1254.2695
5 2017-05-16 17:57:00 0.000
2017 Jun 07
0
Getting forecast values using DCC GARCH fit
Hi,
I am completely new to GARCH models and trying to fit a multivariate time
series model using DCC GARCH model and forecast it.
The data looks like this:
> head(datax)
x vibration_x Speed
1 2017-05-16 17:53:00 -0.132 421.4189
2 2017-05-16 17:54:00 -0.296 1296.8882
3 2017-05-16 17:55:00 -0.572 0.0000
4 2017-05-16 17:56:00 -0.736 1254.2695
5
2011 May 10
0
DCC-GARCH model and AR(1)-GARCH(1, 1) regression model - help needed..
Hello,
I have a rather complex problem... I will have to explain everything in
detail because I cannot solve it by myself...i just ran out of ideas. So
here is what I want to do:
I take quotes of two indices - S&P500 and DJ. And my first aim is to
estimate coefficients of the DCC-GARCH model for them. This is how I do it:
library(tseries)
p1 = get.hist.quote(instrument =
2006 Feb 18
0
question about GARCH - newbie question
hello,
I have been looking at multiple websites on GARCH and
have looked at some books and I am getting
contradictory models given for GARCH.
If I use the GARCH function to fit my model, I am
confused as to what the coefficents given refer to.
For example if I fit a GARCH(1,1) model, GARCH will
give me three coefficients Ao, Ai, and Bi
I know Ao refers to the constant of the model.
But what
2005 Jun 03
0
RE: GARCH (1 , 1), Hill estimator of alpha, Pareto estimator]
Ukech U. Kidi wrote:
> dax<- diff(log(DAX_CAC$DAX[1:1865]))
> m1<- garch(dax)
> Error: couldn't find function "garch"
> m1<- garch(dax[1:1865])
> Error: couldn't find function "garch"
> m1<- garch(dax[1:1865])
I am sorry, but I forgot to change the addres to r-help in the reply.
Well, I am not sure, wheere do you want to get
2011 May 12
2
DCC-GARCH model and AR(1)-GARCH(1,1) regression model
Hello,
I have a rather complex problem... I will have to explain everything in
detail because I cannot solve it by myself...i just ran out of ideas. So
here is what I want to do:
I take quotes of two indices - S&P500 and DJ. And my first aim is to
estimate coefficients of the DCC-GARCH model for them. This is how I do it:
library(tseries)
p1 = get.hist.quote(instrument =
2013 Apr 08
0
Maximum likelihood estimation of ARMA(1,1)-GARCH(1,1)
Hello
Following some standard textbooks on ARMA(1,1)-GARCH(1,1) (e.g. Ruey
Tsay's Analysis of Financial Time Series), I try to write an R program
to estimate the key parameters of an ARMA(1,1)-GARCH(1,1) model for
Intel's stock returns. For some random reason, I cannot decipher what
is wrong with my R program. The R package fGarch already gives me the
answer, but my customized function
2005 Feb 01
0
GARCH, installing tserise package
Hi, there,
First of all, I am not familar with the GARCH concept as well as R interface.
I have three questions regarding GARCH (1,1).
First, I got tseries package from CRAN. Where exactly am I supposed to
install it?
In my case, I copies it to C:\Program Files\R\rw2001\library. What do
I need to do in order to actually install it?
Second, I am not sure if I've installed it properly, but
2011 Nov 24
1
CAPM-GARCH - Regression analysis with heteroskedasticity
Hey Guys,
i want to do a CAPM-GARCH model. I didn?t find anything posted online.
(If there is something - shame on me - i didn?t find it.)
My Problem: What is the difference if I let the residuals ?e? follow a
garch process ?
How do I do my regression analysis now? I began reading about regression
analyis with heteroscedasticity, but didn?t get it.
So i started programming.
First
2005 Jun 03
1
GARCH (1 , 1), Hill estimator of alpha, Pareto estimator
Dear R users,
Could you please help me out. I am in trouble as I am unable to model graphs
to explain the GARCH (1 , 1) model, the Hill estimator (of alpha), and the
Pareto estimator.
I just got introduce to R. I am working on a paper which must be worked from
R.
You look at the difficulty I had from the text below.
[1] "DAX" "DAX_CAC" "DAX_CAC40"
2006 May 08
3
GARCH SIMULATION
Hi All,
I,m trying to do a GARCH simulation in R 2.3.0 release
in Windows XP. I've seen garchsim function but that is
for garch (1,1) and ?garch gives an example for ARCH
simulation. Can anyone help me how can i extend the
help shown in ?garch to GARCH simulation? Please help
me in this regard.
Thanks,
Sumanta Basak.
2012 May 02
1
calibration of Garch models to historical data
I have done the usual estimation of GARCH models, applied to my historical
dataset (commodities futures) with a maximum likelihood function and
selected the best model on the basis of information criteria such as Akaike
and Bayes.
Can somebody explain me please the calibration scheme for a GARCH model?
I was not able to find a paper, dealing with exactly this algorithm for my
case. I only