When attempting to use the GARCH-MIDAS model, I encountered an error message stating 'unused argument (k = 2)

Load the readxl package

library(readxl)

Load rmgarch

library(rmgarch)
library(mfGARCH)

Read data from an Excel file

data1 <- read_excel("C:/Users/illuion_wqy/Desktop/bit.xlsx")

fit_mfgarch(data=data1, y="return", x="EPU", low.freq="year_month",k=2)

#Error in fit_mfgarch(data = data1, y = "return", x = "EPU", low.freq = "year_month", :
unused argument (k = 2)

I have never used that function, but looking at the documentation, there is no parameter named k but there is one named K. Try using an upper case K.

1 Like

This topic was automatically closed 7 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.