On Thu, 4 Aug 2011, Henrique Andrade wrote:
Please take a look at my script:
<hansl>
open australia.gdt
smpl ; 1989:4
var 4 E PAU PUS --quiet
fcast --out-of-sample
series E_hat = $fcast[,1]
smpl --full
print E_hat --byobs
</hansl>
You need to move the "smpl --full" before the saving of the
series E_hat. As your script stands, the valid values in
$fcast lie beyond the end of the sample range at the point
when you create E_hat, so you get an empty series.
Allin Cottrell