Missing value where True/False needed

I'm trying to execute the following code in R:
uspec = ugarchspec(mean.model = list(armaOrder = c(0.0)), variance.model = list(garchOrder = c(1.1), model = "sGARCH"), distribution.model = "norm")
But I'm getting an error:
Error in if (model[i] > 0) { : missing value where TRUE/FALSE needed
How can i solve this problem. Thank you

Looks like some of your parens are not in the right places (after garchOrder = c(1.1)), and you need some commas instead of periods inside the c().

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.