A positive integer. The number of Monte Carlo simulations.
minw
A positive integer. The minimum window size, which defaults to
\((0.01 + 1.8/\sqrt(T))*T\).
opt_badf
Options for badf critical value calculation. "fixed" corresponds
to log(log(n*s))/100 rule, "asymptotic" to asymptotic critical values and
simulated to the monte carlo simulations.
opt_bsadf
Options for bsadf critical value calculation. "conventional"
corresponds to the max of the quantile of the simulated distribution, while
"conservative" corresponds to the quantile of the max which is more conservative
in nature, thus the name.
Value
A list that contains the critical values for ADF, BADF, BSADF and GSADF
t-statistics.
See Also
wb_cv for Wild Bootstrapped critical values and
sb_cv for Sieve Bootstrapped critical values
# NOT RUN {# Default minimum windowmc <- mc_cv(n = 100)
# Change the minimum window and the number of simulationsmc <- mc_cv(n = 100, nrep = 2500, minw = 20)
# }