similar to: GARCH:: False Convergence

Displaying 20 results from an estimated 1100 matches similar to: "GARCH:: False Convergence"

2010 Jun 04
5
R Newbie, please help!
Hello Everyone, I just started a new job & it requires heavy use of R to analyze datasets. I have a data.table that looks like this. It is sorted by ID & Date, there are about 150 different IDs & the dataset spans 3 million rows. The main columns of concern are ID, date, and totret. What I need to do is to derive daily returns for each ID from totret, which is simply totret at time
2009 Jul 22
0
Attended transfer and 'pbx-invalid' - 1.4.26
Hi, I've created a tiny dialplan to test the return of a call on transfers, like this: (I had to use the DEVSTATE backport here) [phones] exten => _12XX,1,Dial(SIP/${EXTEN},6,tT) exten => _12XX,n,GotoIf($[ "x${BLINDTRANSFER}" = "x" ]?noBT) exten => _12XX,n,Set(DIALRET=${CUT(BLINDTRANSFER,-,1)}); exten => _12XX,n,Goto(dRet) exten => _12XX,n(noBT),GotoIf($[
2006 Feb 02
2
Error building with Fedora packaging
A recent post suggested using the Fedora packaging to get the separate RPMs to build for Redhat. I gave that a try but am getting the following error when doing so on a Redhat 9 system: make[1]: Leaving directory `/usr/src/redhat/BUILD/samba-3.0.21b/source' rm -f /usr/src/redhat/BUILD/samba-3.0.21b/source/include/includes.h.gch gcc -I. -I/usr/src/redhat/BUILD/samba-3.0.21b/source -O2 -g
2007 Feb 28
2
Building Samba 4 - Includes.c missing?
Hello all, I've been peacefully using Samba 3 for about 3 years now, and it has done a wonderful job in my little world as domain member servers for file and print serving. Much bettetrver farms that some of my peers in the company are using. So I want to try Samba 4 and see if I can play with making it my PDC. The only problem is that when I go to make, I receive the following error: ...
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.
2006 Apr 20
1
Extract AIC, BIC
Hi All, How can extract AIC,BIC from a fitted Garch model? -- SUMANTA BASAK. [[alternative HTML version deleted]]
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 =
2008 May 23
1
GARCH-like
I need to change the code of Garch to the FCGARCH (a non-linear multi-regime GARCH). I don't know nothing about R. I'd like to know how can I get the code of the garch in order to change it and make the fit for the FC-GARCH. Any non-linear code will be helpfull because if doesn't help in the programming it helps in getting familiar with R. Thank you Renato -- PhD Student Renato
2005 May 19
3
Simultaneous estimation of mean and garch eq'n
Is it possible to simultaneously estimate mean and GARCH parameters in R? In other words, I would like to estimate the normal regression equation Y = b X + u and simultaneously do a garch process on the u's to correct the standard errors. I was thinking maybe something with systemfit(), but I can't quite come up with it. Thanks, Tobias --
2004 Nov 10
2
fSeries
Good morning everyone, I use for the first time the package fSeries and i try to run the example given by Diethelm Würtz. But when i run its example which is the following # # Example: # Model a GARCH time series process # # Description: # PART I: Estimate GARCH models of the following type ARCH(2) # and GARCH(1,1) with normal conditional distribution functions. # PART II: Simulate
2003 Nov 27
2
would like to know how to simulated a GARCH(1,2)
Follow the example in tseries, we can simulated a GARCH(0,2), n <- 1100 a <- c(0.1, 0.5, 0.2) # ARCH(2) coefficients e <- rnorm(n) x <- double(n) x[1:2] <- rnorm(2, sd = sqrt(a[1]/(1.0-a[2]-a[3]))) for(i in 3:n) # Generate ARCH(2) process { x[i] <- e[i]*sqrt(a[1]+a[2]*x[i-1]^2+a[3]*x[i-2]^2) } x <- ts(x[101:1100]) and x is a GARCH(0,2). But, I would like to know how
2005 Nov 21
2
garch function in R
I'm using R 2.1.1 and just successfully installed packages tseries, fseries. I try to run example http://www.maths.lth.se/help/R/.R/library/tseries/html/garch.html But it shows > x.arch <- garch(x, order = c(0,2)) # Fit ARCH(2) Error: couldn't find function "garch" Then I run command > help.search("garch") it shows the R information.
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]]
2005 Dec 13
1
fSeries
I'm trying to use garchFit from fSeries, with Student or Skewed Student conditionnal distribution. Let's say that eps (vector) is my series of daily log-returns: data(EuStockMarkets) eps = diff(log(EuStockMarkets[,"CAC"])) library(fSeries) g = garchFit(series = eps, formula.var = ~garch(2,2), cond.dist = "dstd") s = g at fit$series All the coefficients are ok
2006 Jun 20
1
GARCH
Dear all R-users, I have a GARCH related query. Suppose I fit a GARCH(1,1) model on a dataframe dat >garch1 = garch(dat) >summary(garch1) Call: garch(x = dat) Model: GARCH(1,1) Residuals: Min 1Q Median 3Q Max -4.7278 -0.3240 0.0000 0.3107 12.3981 Coefficient(s): Estimate Std. Error t value Pr(>|t|) a0 1.212e-04 2.053e-06 59.05 <2e-16 *** a1
2006 Jun 20
1
GARCH
Dear all R-users, I have a GARCH related query. Suppose I fit a GARCH(1,1) model on a dataframe dat >garch1 = garch(dat) >summary(garch1) Call: garch(x = dat) Model: GARCH(1,1) Residuals: Min 1Q Median 3Q Max -4.7278 -0.3240 0.0000 0.3107 12.3981 Coefficient(s): Estimate Std. Error t value Pr(>|t|) a0 1.212e-04 2.053e-06 59.05 <2e-16 *** a1
2006 Nov 20
1
how to forecast the GARCH volatility?
Dear All, I have loaded package(tseries), but when I run predict.garch(...) R tells me could not find function "predict.garch", however ?predict.garch shows me something. I am confused about this. How can I forecast garch volatility? I have tried: predict(...,n.ahead=...),give me fitted value predict(...,n),give me NA,NA
2006 Nov 07
1
Comparison between GARCH and ARMA
Dear all R user, Please forgive me if my problem is too simple. Actually my problem is basically Statistical rather directly R related. Suppose I have return series ret with mean zero. And I want to fit a Garch(1,1) on this. my is r[t] = h[i]*z[t] h[t] = w + alpha*r[t-1]^2 + beta*h[t-1] I want to estimate the three parameters here; the R syntax is as follows: #
2011 May 15
4
DCC-GARCH model
Hello, I have a few questions concerning the DCC-GARCH model and its programming in R. So here is what I want to do: I take quotes of two indices - S&P500 and DJ. And the 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 = "^gspc",start = "2005-01-07",end =
2005 Feb 22
1
Does R has the function for garch-t, gjr-garch, qgarch and egarch
Dear all, I would like to know that R has the function for garch-t,gjr- garch,qgarch and egarch. Best Regards, Luck