Displaying 20 results from an estimated 300 matches similar to: "code a family of garch"
2005 Jul 02
1
how to call sas in R
Hello all,
I would like to know how to call sas code in R. Since I simulate data in
R and I need to use sas code (garch-t,egarch and gjr) to estimate it. I
need to simulate 500 times with 2000 obs. How I can call that code in
R.Also, how I can keep the parameters from the estimate.
j=1:500
i=1:2000
sas code
keep parameters.
Best Appreciate,
Luck
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
2006 Apr 16
1
solve matrix
Hi R-users,
I try to use "solve" to find the answer of this linear equation
a=x*b where a is 2*1 matrix and b is 2*2 matrix.I would like to get x so
I call y<-solve(a,b) but this one happen "a is 2*1 matrix" so what I should do .
Thanks
Luck
2009 Jul 15
1
Is it possible to use EGARCH and GJR in R?
Hi,
Could you please help me with EGARCH and GJR?
Is it possible to use EGARCH and GJR in R? I have used below mentioned
code
for GARCH in R, but I never used EGARCH and GJR in R.
Thank you in advance!
daten<-read.table("H://Daten//Zeitreihen//dax_1.csv", sep=";", header=T)
DAX.kurs<-daten
DAX.kurs<-ts(DAX.kurs,names="DAX-Kurs")
2006 Mar 05
1
error function
hi all,
Does anyone know which command to use for error function(erf)?
Thanks
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
2005 Jul 01
0
how to code garch-t(1,1),egarch(1,1) and gjr(1,1)
hi,
I try to code garch-t(1,1),egach(1,1) and gjr(1,1) to estimate my data.
How I can code these model with my data (e.g. garch code is
y<-garch(x,order=c(1,1))
best regards,
luck
2008 Nov 22
1
Need some help in R programming code
Dear R guru,
I am Saikat Sarkar working as a researcher of Economics in Tampere
University, Finland. I am trying to estimate some Garch related tests with
Bayesian analysis by R programme.
I am not good in R but trying to survive.
Anyway I have the coding but not working properly. I have tried to find the
problem but failed. I am writing to all R gurus to help me out.
Could you please look at
2013 Nov 16
1
r documentation rugarch egarch
Hi,
I`m about to switch from STATA to R and have serious troubles to find proper
documentations on the internet.
Right now I try to find a proper documentation of the eGARCH model being
part of the rugarch package.
Neither here
http://cran.r-project.org/web/packages/rugarch/vignettes/Introduction_to_the_rugarch_package.pdf
nor here
http://cran.r-project.org/web/packages/rugarch/rugarch.pdf
could
2011 Aug 01
2
if function problems
Dear All,
Sorry to bother
I want to write a function in R using if
Say I have a dataset x,
if x[i]<0, then x[i]=x[i],
if x[i]>0, then x[i]=0
for example, x=-3:3,
then using the function, x becomes [-3,-2,-1,0,0,0,0]
I write the codes as follows,
gjr=function(x)
{lena=length(x)
for(i in 1:lenx)
if (x[i]<0) return (x[i])
if (x[i]>0) return (0)
x}
but then, doing
gjr(x?
it only
2002 Apr 15
2
Newbie problem with ox package
HI,
I need urgently garch and egarch models. After looking through the R mail
archives I found http://www.egss.ulg.ac.be/garch/default.htm which is an Ox
package. After downloading and installing it in R (Version 1.4.1 through the
windows dialog "Packages") I received the following warning:
install.packages("D:/benjamin/bartels/R/packages/garch22/garch_v22.zip",
2004 Aug 02
1
Estimating EGARCH processes with R
Hallo,
I am a student specializing statistics and econometrics in germany. I know there is a way to program EGARCH-processes (time series analyses) in R.
If you are ackquainted with statistics already you know that there is nothing but a theorethical use of GARCH-Package in R. Not only because the distribution is gaussian, but also because the skewdness and leptokurthosis are not quite good
2006 May 24
1
Does R have EGARCH modeling function?
I've downloaded fSeries, but looks like it just has an interface to OX(TM)
Garch Modeling Software,and that OX(TM) software package is not free.
So where can I find an EGARCH function that is truely usable?
Thanks a lot!
[[alternative HTML version deleted]]
2007 Apr 11
3
Fortran coding standards
I have some comments on the Fortran code in the
fseries package in file 4A-GarchModelling.f ,
especially the subroutine GARCHFIT and function
DSNORM.
I appended the code to the end of an earlier message,
but it was rejected by some rule. Let me first say
that I am grateful that packages for financial
econometrics exist in R.
Fortran 77 had PARAMETERs, and PARAMETERs equal to
99999 and 200 should
2010 Aug 06
1
R code for EGARCH
Hi,
Can we run EGARCH in R. If yes, I would be grateful if someone could tell me
the R codes for running EGARCH model.
Thanks.
[[alternative HTML version deleted]]
2012 Sep 05
1
run EGARCH package on REXCEl
Hi,
I have limited experience on R and recently started using REXcel. Although I have been able to run both simple functions (like mean etc) and some complex ones (like Principal Component analysis, PCA) using RExcel, I am facing some problems while running EGARCH model. For this I have downloaded the 'betategarch' package for R to run EGARCH with student t dist. Although the package has
2012 Oct 22
1
Egarch (1,1) with Student t distribution using rugarch
Hi
I was trying to implement Egarch (1,1) with Student t distribution using rugarch. But I was not getting any value.
Following were the commands that I was using:
library(rugarch)
spec=ugarchspec(variance.model=list(model="eGARCH", garchOrder=c(1,1)), mean.model=list(armaOrder=c(1,1), arfima=FALSE), distribution.model="std")
fit=ugarchfit(data=b,spec=spec)
sigma(fit)
May I
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:
2014 May 20
3
Curvas de densidad no parametricas
Estimados una consulta me encuentro graficando un histograma cuyos datos no
provienen de una distribución clásica como la normal exponenial, poisson,
etc, Lo que necesito es colocar una curva no paramétrica que permita
evidenciar el ajuste de los datos a esa curva ya que son muchos (alrededor
de 80000).
Muchas gracias
[[alternative HTML version deleted]]
2011 Sep 28
1
fGarch - Fitting and APARCH-Modell with fixed delta
Hi there,
I'm trying to fit a GJR-GARCH Model using fGarch. I wanted to try that by
fitting an APARCH model with a fixed delta of 2 and a non-fixed gamma. So I
was simply trying to use:
spec <- garchFit(~aparch(1,1),data=garchSim(),delta=2)
coef(spec)
And sometimes, it's working like a charm and delta is indeed exactly 2 in
the resulting coefficient vector.
Frequently, though, the