Psi(L) is defined to be (P(L)-P(1))/(1-L), P(L)=Theta(L)/Phi(L), Thetas are MA coefficients and Phis are AR coefficients.
C_t=Psi(L)e_t
Spe(C_t)=|PSI(L)|^2Sig_e^2/2PI
I tried to draw Spectrum of C_t and delta(C_t)
The latter seems to be
Code: Select all
equation(noconstant,coeffs=||-%beta(4), -%beta(5),-%beta(2), -%beta(3)||) arma22 y 2 2
* %beta() is from Boxjenk function, I switch the order of AR and MA coefficients in order to get Theta(z)/Phi(z) directly
frequency 2 512
trfunc(equation=arma22) 1
cset 2 = %z(t,1)-%z(1,1)
cmult(scale=(2*%pi)/scale) 2 2
ctor 1 256
# 2
# ab
set bn_spect 1 256 = ab
Code: Select all
* continue from previous case
cset 1= 2/(1-%zlag(t,1)
cmult(scale=(2*%pi)/scale) 1 1
I end up with C_t's spectrum at zero frequency extremely high which is consistent with deltaCt's zero spectrum at zero frequency.
Is there a way that I use spectrum at some smal positive frequency to guess this zero frequency?