From 9539b5efb5ccf665a1cc4b8e814e96460b22e0ab Mon Sep 17 00:00:00 2001 From: Abhinav Dronamraju Date: Tue, 28 Nov 2017 14:53:58 +0530 Subject: New functions and help files generated --- help/en_US/arch_test.xml | 73 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 73 insertions(+) create mode 100644 help/en_US/arch_test.xml (limited to 'help/en_US/arch_test.xml') diff --git a/help/en_US/arch_test.xml b/help/en_US/arch_test.xml new file mode 100644 index 0000000..aa57ff0 --- /dev/null +++ b/help/en_US/arch_test.xml @@ -0,0 +1,73 @@ + + + + + + + + arch_test + perform a Lagrange Multiplier (LM) test of thenull hypothesis of no conditional heteroscedascity against the alternative of CH(P) + + + + + Calling Sequence + + arch_test(Y,X,P) + PVAL = arch_test(Y,X,P) + [PVAL, LM]= arch_test(Y,X,P) + + + + + Parameters + + P: + Degrees of freedom + PVAL: + PVAL is the p-value (1 minus the CDF of this distribution at LM) of the test + + + + + Description + +perform a Lagrange Multiplier (LM) test of thenull hypothesis of no conditional heteroscedascity against the alternative of CH(P). + + +I.e., the model is + + +y(t) = b(1) * x(t,1) + ... + b(k) * x(t,k) + e(t), + + +given Y up to t-1 and X up to t, e(t) is N(0, h(t)) with + + +h(t) = v + a(1) * e(t-1)^2 + ... + a(p) *e(t-p)^2, and the null is a(1) == ... == a(p) == 0. + + +If the second argument is a scalar integer, k,perform the sametest in a linear autoregression model of orderk, i.e., with + + +[1, y(t-1), ..., y(t-K)] as the t-th row of X. + + +Under the null, LM approximatel has a chisquare distribution with P degrees of freedom and PVAL is the p-value (1 minus the CDF of this distribution at LM) of the test. + + +If no output argument is given, the p-value is displayed. + + + -- cgit