<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	
	>
<channel>
	<title>
	Comments on: How to Interpret Cointegration Test Results	</title>
	<atom:link href="https://www.aptech.com/blog/how-to-interpret-cointegration-test-results/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.aptech.com/blog/how-to-interpret-cointegration-test-results/</link>
	<description>GAUSS Software - Fastest Platform for Data Analytics</description>
	<lastBuildDate>Mon, 12 Jul 2021 17:01:28 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>
		By: Erica		</title>
		<link>https://www.aptech.com/blog/how-to-interpret-cointegration-test-results/#comment-2328</link>

		<dc:creator><![CDATA[Erica]]></dc:creator>
		<pubDate>Mon, 12 Jul 2021 17:01:28 +0000</pubDate>
		<guid isPermaLink="false">https://www.aptech.com/?p=22067#comment-2328</guid>

					<description><![CDATA[Hello Jamel,

Thank you for your comment! I&#039;ve updated the blog to reflect this. 

Also, it should be noted that since the last update of TSPDLIB, the &lt;code&gt;bwl&lt;/code&gt;, &lt;code&gt;ic&lt;/code&gt;, &lt;code&gt;pmax&lt;/code&gt;, &lt;code&gt;varm&lt;/code&gt;, and &lt;code&gt;trimm&lt;/code&gt; arguments are all optional arguments. This allows you to call &lt;code&gt;coint_ghansen&lt;/code&gt; using internal defaults for these parameters:


&lt;pre&gt;
&lt;code&gt;// Set fname to name of dataset
fname = &quot;nelsonplosser.dta&quot;;

// Load three variables from the dataset
// and remove rows with missing values
coint_data = packr(loadd(fname, &quot;sp500 + m + bnd&quot;));

// Define y and x matrix
y = coint_data[., 1];
x = coint_data[., 2 3];

// Regime and trend shift
model = 4; 

// Perform cointegration test
{ ADF_min_gh, TBadf_gh, Zt_min_gh, TBzt_gh, Za_min_gh, TBza_gh, cvADFZt_gh, cvZa_gh } =
    coint_ghansen(y, x, model);&lt;/code&gt;
&lt;/pre&gt;-

More information about the default values can be in the &lt;a href=&quot;https://docs.aptech.com/gauss/tspdlib/docs/index.html&quot; rel=&quot;nofollow ugc&quot;&gt;TSPDLIB documentation&lt;/a&gt;. 

Best,
Erica

]]></description>
			<content:encoded><![CDATA[<p>Hello Jamel,</p>
<p>Thank you for your comment! I've updated the blog to reflect this. </p>
<p>Also, it should be noted that since the last update of TSPDLIB, the <code>bwl</code>, <code>ic</code>, <code>pmax</code>, <code>varm</code>, and <code>trimm</code> arguments are all optional arguments. This allows you to call <code>coint_ghansen</code> using internal defaults for these parameters:</p>
<pre>
<code>// Set fname to name of dataset
fname = "nelsonplosser.dta";

// Load three variables from the dataset
// and remove rows with missing values
coint_data = packr(loadd(fname, "sp500 + m + bnd"));

// Define y and x matrix
y = coint_data[., 1];
x = coint_data[., 2 3];

// Regime and trend shift
model = 4; 

// Perform cointegration test
{ ADF_min_gh, TBadf_gh, Zt_min_gh, TBzt_gh, Za_min_gh, TBza_gh, cvADFZt_gh, cvZa_gh } =
    coint_ghansen(y, x, model);</code>
</pre>
<p>-</p>
<p>More information about the default values can be in the <a href="https://docs.aptech.com/gauss/tspdlib/docs/index.html" rel="nofollow ugc">TSPDLIB documentation</a>. </p>
<p>Best,<br />
Erica</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: jamels		</title>
		<link>https://www.aptech.com/blog/how-to-interpret-cointegration-test-results/#comment-2325</link>

		<dc:creator><![CDATA[jamels]]></dc:creator>
		<pubDate>Fri, 09 Jul 2021 08:34:08 +0000</pubDate>
		<guid isPermaLink="false">https://www.aptech.com/?p=22067#comment-2325</guid>

					<description><![CDATA[Nice post, very pedagogical, these three parameters need to be specified:

// To be specified
bwl=1;

trimm=0.1;

varm=1;

Best,
JS]]></description>
			<content:encoded><![CDATA[<p>Nice post, very pedagogical, these three parameters need to be specified:</p>
<p>// To be specified<br />
bwl=1;</p>
<p>trimm=0.1;</p>
<p>varm=1;</p>
<p>Best,<br />
JS</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
