Displaying 20 results from an estimated 7000 matches similar to: "fitting an AR-TAR-GARCH MODEL"
2006 May 19
0
how to estimate adding-regression GARCH Model
---------- Forwarded message ----------
From: ma yuchao <ma.yuchao@gmail.com>
Date: 2006-5-20 ÉÏÎç4:01
Subject: hello, everyone
To: R-help@stat.math.ethz.ch
Hello, R people:
I have a question in using fSeries package--the funciton garchFit and
garchOxFit
if adding a regression to the mean formula, how to estimate the model in
R? using garchFit or garchOxFit?
For example,
2007 Jun 16
1
fSeries - Ox - ver: 240.10068 - Steps to make it work
-Bugs and fixes reported to Diethelm Wuertz.
-In the interim. To make the Ox functions part of the fSeries package work please follow the following steps.
-------------------------------------------------
1. Install R-project.
2. Install fSeries.
3. Download: http://www.core.ucl.ac.be/~laurent/G@RCH/site/xbdcons/garch42.zip (G@RCH package for Ox)
4. Download:
2005 Dec 04
1
fSeries: garchOxFit - is really the example provided not runnig?
Dear R-helpers,
I have just loaded the fSeries package and I wanted to run the example provided in the documentation of garchOxFit but I got the following:
> library(fSeries)
> ?garchOxFit
> library(datasets)
> ?garchOxFit
> ## Not run:
> ## garchOxFit -
> # Load Benchmark Data Set:
> data(dem2gbp)
> x = dem2gbp[, 1]
>
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 =
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 =
2000 Nov 28
0
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>
Date: Mon, 27 Nov 2000 21:50:23 -0800
Dear Sir,
I know you are so busy and I would be highly appreciate you if you can
answer my question regarding to fitting of Garch Model.
Question:
How can I change the innovation in Garch fitting from
2004 Feb 03
2
How to build a AR(q)-GARCH(q) process ?
Hello all,
I would like how to modelized a time serie with AR-ARCH process.
It can be used arma and garch functions in tseries package for build
ar process or a garch process, but how can it be modelized a ar-garch
model ?
Thanks
[[alternative HTML version deleted]]
2013 Jan 31
1
I want to download "garchOxFit" function.
Dear R help.
Hello.
I want to fit the model of "FIGARCH" on TimeSeries data.
So I need to use the code of "garchOxFit".
I don't know how to estimate FIGARCH model.
Please let me know which package I need and
what is procedure of estimating FIGARCH by R.
I think I need this code!
> garchOxFit(formula.mean = arma(0, 0), formula.var = garch(1,1), series
=
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
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
2011 Jul 13
1
AR-GARCH with additional variable - estimation problem
Dear list members,
I am trying to estimate parameters of the AR(1)-GARCH(1,1) model. I have one
additional dummy variable for the AR(1) part.
First I wanted to do it using garchFit function (everything would be then
estimated in one step) however in the fGarch library I didn't find a way to
include an additional variable.
That would be the formula but, as said, I think it is impossible to add
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
2012 Mar 11
0
specify GARCH model, using garchFit()
Hello,
I’ve fitted a Garch(2,1) model with function 'garchFit()' from the package
'fGarch':
> m1 <- garchFit(formula = ~garch(2,1),data = X,trace = F)
* See 'summary(m1)' OUTPUT BELOW *
PROBLEM: My alpha1 term is not significant and I would like to make a NEW
model, say m2, that does not contain alpha1, but I am not sure how to
specify this with the garchFit()
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 Apr 29
1
arma model with garch errors
Dear R experts,
I am trying to estimate an ARMA 2,2 model with garch errors.
I used the following code on R 2.9.
#library
library(fGarch)
#data
data1<-ts(read.table("C:/Users/falcon/Desktop/Time
Series/exports/goods1.csv"), start=c(1992,1), frequency=12)
head(data1)
#garch
garchFit(formula.mean= ~arma(2,2),formula.var=~garch(1,1), data=data1)
but get this error:
>
2011 Jun 07
2
About DCC-garch model...
Hi, everyone,
I currently run into a problem about DCC-Garch model. I use the package
cc-garch and the function dcc.estimation. One of the output of this function
is DCC matrix, which shows conditional correlation matrix at every time
period you gives. However, I cannot figue out how the function calculate the
conditional correlation matrix at the first time period, since there is no
data to be
2009 Jun 19
1
using garchFit() to fit ARMA+GARCH model with exogeneous variables
Hello -
Here's what I'm trying to do. I want to fit a time series y with
ARMA(1,1) + GARCH(1,1), there are also an exogeneous variable x which I
wish to include, so the whole equation looks like:
y_t - \phi y_{t-1} = \sigma_t \epsilon_t + \theta \sigma_{t-1}
\epsilon_{t-1} + c x_t where \epsilon_t are i.i.d. random
variables
\sigma_t^2 = omega + \alpha \sigma_{t-1}^2 + \beta
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?
2011 Mar 27
2
Garchoxfit package
Dear List,
I'm now using Ubuntu 10.10 and I want to use the garchoxfit
function.It seems that I need to download the package.
While after installing the package,I still can't use the garchoxfit
function.What's the reason and how to fix that?
Thanks for your time!
Best,
Ning