<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: How to compute &amp;quot;Preferred stock redemption value&amp;quot; from Compustat Global database in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/How-to-compute-quot-Preferred-stock-redemption-value-quot-from/m-p/397009#M66565</link>
    <description>&lt;P&gt;Your progam doesn't calculate the "difference &lt;EM&gt;&lt;STRONG&gt;between the current and lagged&lt;/STRONG&gt;&lt;/EM&gt; values".&amp;nbsp; You have the difference &lt;EM&gt;&lt;STRONG&gt;between the lagged and current&lt;/STRONG&gt; &lt;/EM&gt;values, i.e. the opposite sign of what is usually calculated in a time series. &amp;nbsp; Is that intentional?&amp;nbsp; I.e., is that how compustat defines redemption value of preferred stocks?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 19 Sep 2017 04:40:05 GMT</pubDate>
    <dc:creator>mkeintz</dc:creator>
    <dc:date>2017-09-19T04:40:05Z</dc:date>
    <item>
      <title>How to compute "Preferred stock redemption value" from Compustat Global database</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-compute-quot-Preferred-stock-redemption-value-quot-from/m-p/396303#M66538</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Compustat (North American) database provide redemption value of preferred stocks, but Compustat (Global) only have Total Preferred Stock/Redeemable Preferred Stock/Non-Redeemable Prefer Stock data.&lt;/P&gt;&lt;P&gt;I tried to calculate Preferred stocks Redemption value (Reduction in value of preferred stock) by subtracting Total Preferred stock value from its Lagged value(last year).&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc expand data=us1 out=us2  method = none;
by gvkey;
	convert pstk = pstk;	convert pstk = lpstk / transformout=(lag 1);
	label lpstk=lag_pstk;run;

data Us3;
retain pstk lpstk pstk_n pstkrv;
set us2;
pstk_n=lpstk-pstk;run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;I use US data to compare my proxy variable with given "Redumption value of Preferred stock", but&amp;nbsp;my calculated value (diff between current and lagged) give completely different results.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Its not SAS code specific question but I will really appriciate any help, since its one of the most helpful community&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 15 Sep 2017 12:56:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-compute-quot-Preferred-stock-redemption-value-quot-from/m-p/396303#M66538</guid>
      <dc:creator>omer2020</dc:creator>
      <dc:date>2017-09-15T12:56:39Z</dc:date>
    </item>
    <item>
      <title>Re: How to compute "Preferred stock redemption value" from Compustat Global database</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-compute-quot-Preferred-stock-redemption-value-quot-from/m-p/397009#M66565</link>
      <description>&lt;P&gt;Your progam doesn't calculate the "difference &lt;EM&gt;&lt;STRONG&gt;between the current and lagged&lt;/STRONG&gt;&lt;/EM&gt; values".&amp;nbsp; You have the difference &lt;EM&gt;&lt;STRONG&gt;between the lagged and current&lt;/STRONG&gt; &lt;/EM&gt;values, i.e. the opposite sign of what is usually calculated in a time series. &amp;nbsp; Is that intentional?&amp;nbsp; I.e., is that how compustat defines redemption value of preferred stocks?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 19 Sep 2017 04:40:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-compute-quot-Preferred-stock-redemption-value-quot-from/m-p/397009#M66565</guid>
      <dc:creator>mkeintz</dc:creator>
      <dc:date>2017-09-19T04:40:05Z</dc:date>
    </item>
    <item>
      <title>Re: How to compute "Preferred stock redemption value" from Compustat Global database</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-compute-quot-Preferred-stock-redemption-value-quot-from/m-p/398060#M66579</link>
      <description>&lt;P&gt;thanks alot for replying. I need a value which represent "reduction in the value of preffered stocks"&lt;/P&gt;&lt;P&gt;To clear out, I am calculating firms payout ratio which include dividends and share repurchase. Share repurchase include both common share and preffered shares.&lt;/P&gt;&lt;P&gt;In order to represent a clear picture, part of preffered shares, which have been redeemed (mature / bought back due to underlying date) should not be added (Because firm are not&amp;nbsp;buying them voluntary).&amp;nbsp;This "Preffered Stock Redemption" value is missing in&amp;nbsp;Compustat Global data).&lt;/P&gt;&lt;P&gt;I believe that"Preffered Stock Redemption" value&amp;nbsp;might be captured by reduction in "Total value of Preffered stocks , PSTK"&amp;nbsp;over a year. (yearly difference). For this purpose, I come up with proxy variable which represent "reduction in the value of preffered stocks" as difference between lagged and current "Total value of Preffered Stocks"&lt;/P&gt;&lt;P&gt;[&amp;nbsp;lpstk-pstk] which&amp;nbsp;is intentional, eg,&lt;/P&gt;&lt;P&gt;2001 &amp;gt; PSTK=250&lt;/P&gt;&lt;P&gt;2002 &amp;gt; PSTK=200&lt;/P&gt;&lt;P&gt;PSTK(2001)-PSTK(2002) = 250 - 200 = 50&lt;/P&gt;&lt;P&gt;Theoratically, this is "reduction in the value of preffered stocks" over a year. But unluckily, when I compared&amp;nbsp;this in Compustat American data (where Preffered stock redemption value is given), my created variable yield completely different values.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any suggestion or ideas are welcomed. I am sorry&amp;nbsp;if my question is not directly relevant to SAS. I am not aware of any particular forum related to Accounting or Finance with active participation&amp;nbsp;(similar to this SAS forum). I&amp;nbsp;will greatly appriciate if someone can reffer me to any such forum.&lt;/P&gt;</description>
      <pubDate>Fri, 22 Sep 2017 11:41:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-compute-quot-Preferred-stock-redemption-value-quot-from/m-p/398060#M66579</guid>
      <dc:creator>omer2020</dc:creator>
      <dc:date>2017-09-22T11:41:57Z</dc:date>
    </item>
  </channel>
</rss>

