<?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: Event study in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Event-study/m-p/781922#M249228</link>
    <description>&lt;P&gt;Another solution using a hash object:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data work.Enhanced;
   set work.have;

   obsnum = _n_;
run;

data 
   work.want(keep= Company_ID Reporting_Date Before_Event_Date At_Event_Date After_Event_Date)
   work.NotEnoughData(keep= Company_ID Reporting_Date)
;
   set work.Enhanced;
   where not missing(Reporting_Date);

   length 
      Average Reporting_Return 8
      Before_Event_Date At_Event_Date After_Event_Date 8
   ;


   if _n_ = 1 then do;
      declare hash h(dataset: 'work.enhanced');
      h.defineKey('obsnum', 'company_id');
      h.defineData('Return');
      h.defineDone();
   end;

   reporting_return = return;
   average = 0;

   /* check if data for the estimation windows is available */
   start_before = obsnum - 8;
   end_before = obsnum - 4;
   before_ok = (h.check(key: start_before, key: company_id) = 0) 
         and (h.check(key: end_before, key: company_id) = 0);

   start_after = obsnum + 4;
   end_after = obsnum + 8;
   after_ok = (h.check(key: start_after, key: company_id) = 0) 
         and (h.check(key: end_after, key: company_id) = 0); 

   if before_ok and after_ok then do;
      do i = start_before to end_before;
         rc = h.find(key: i, key: company_id);
         average = average + return;
      end;

      do i = start_after to end_after;
         rc = h.find(key: i, key: company_id);
         average = average + return;
      end;

      average = average / 10;

      At_Event_Date = reporting_return / average;

      rc = h.find(key: obsnum-1, key: company_id);
      Before_Event_Date = Return / average;

      rc = h.find(key: obsnum+1, key: company_id);
      After_Event_Date = Return / average;

      output work.want;
   end;
   else do;
      output work.NotEnoughData;
   end;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Tue, 23 Nov 2021 12:32:37 GMT</pubDate>
    <dc:creator>andreas_lds</dc:creator>
    <dc:date>2021-11-23T12:32:37Z</dc:date>
    <item>
      <title>Event study</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Event-study/m-p/781824#M249183</link>
      <description>&lt;P&gt;Hello,&amp;nbsp;&lt;BR /&gt;I am trying to perform an event study.&lt;BR /&gt;I have a time-series data which contains the return of stocks from all the companies from 01-Jan-2021 to 31-Dec-2021.&lt;BR /&gt;I have put a small sample of my data and the my expected output below for your kind consideration. The dataset is attached at the end.&lt;BR /&gt;Here is my sample data:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Company_ID Date Return Reporting_Date Event_Window Gap Estimation_Window&lt;BR /&gt;1001 01JAN2021 0.01&lt;BR /&gt;1001 04JAN2021 0.02&lt;BR /&gt;1001 05JAN2021 0.03&lt;BR /&gt;1001 06JAN2021 0.09&lt;BR /&gt;1001 07JAN2021 0.05&lt;BR /&gt;1001 08JAN2021 0.06&lt;BR /&gt;1001 11JAN2021 0.07&lt;BR /&gt;1001 12JAN2021 0.08&lt;BR /&gt;1001 13JAN2021 0.09&lt;BR /&gt;1001 14JAN2021 0.1 14JAN2021 3 2 5&lt;BR /&gt;1001 15JAN2021 0.11&lt;BR /&gt;1001 18JAN2021 0.12&lt;BR /&gt;1001 19JAN2021 0.13&lt;BR /&gt;1001 20JAN2021 0.14&lt;BR /&gt;1001 21JAN2021 0.15&lt;BR /&gt;1001 22JAN2021 0.16&lt;BR /&gt;1001 25JAN2021 0.17&lt;BR /&gt;1001 26JAN2021 0.18&lt;BR /&gt;1001 27JAN2021 0.19&lt;BR /&gt;1001 28JAN2021 0.2&lt;BR /&gt;1001 29JAN2021 0.21&lt;BR /&gt;1001 01FEB2021 0.22&lt;BR /&gt;1001 02FEB2021 0.23&lt;BR /&gt;1001 03FEB2021 0.24&lt;BR /&gt;1001 04FEB2021 0.25&lt;BR /&gt;1001 05FEB2021 0.26&lt;BR /&gt;1001 08FEB2021 0.27&lt;BR /&gt;1001 09FEB2021 0.26 09FEB2021 3 2 5&lt;BR /&gt;1001 10FEB2021 0.29&lt;BR /&gt;1001 11FEB2021 0.3&lt;BR /&gt;1001 12FEB2021 0.31&lt;BR /&gt;1001 15FEB2021 0.32&lt;BR /&gt;1001 16FEB2021 0.33&lt;BR /&gt;1001 17FEB2021 0.34&lt;BR /&gt;1001 18FEB2021 0.35&lt;BR /&gt;1001 19FEB2021 0.36&lt;BR /&gt;1001 22FEB2021 0.37&lt;BR /&gt;1001 23FEB2021 0.38&lt;BR /&gt;1001 24FEB2021 0.39&lt;BR /&gt;1001 25FEB2021 0.4&lt;BR /&gt;1001 26FEB2021 0.41&lt;BR /&gt;1002 01JAN2021 0.22&lt;BR /&gt;1002 04JAN2021 0.23&lt;BR /&gt;1002 05JAN2021 0.24&lt;BR /&gt;1002 06JAN2021 0.25&lt;BR /&gt;1002 07JAN2021 0.26&lt;BR /&gt;1002 08JAN2021 0.27&lt;BR /&gt;1002 11JAN2021 0.28&lt;BR /&gt;1002 12JAN2021 0.29&lt;BR /&gt;1002 13JAN2021 0.3&lt;BR /&gt;1002 14JAN2021 0.31&lt;BR /&gt;1002 15JAN2021 0.32&lt;BR /&gt;1002 18JAN2021 0.39 18JAN2021 3 2 5&lt;BR /&gt;1002 19JAN2021 0.34&lt;BR /&gt;1002 20JAN2021 0.35&lt;BR /&gt;1002 21JAN2021 0.36&lt;BR /&gt;1002 22JAN2021 0.37&lt;BR /&gt;1002 25JAN2021 0.38&lt;BR /&gt;1002 26JAN2021 0.39&lt;BR /&gt;1002 27JAN2021 0.4&lt;BR /&gt;1002 28JAN2021 0.41&lt;BR /&gt;1002 29JAN2021 0.42&lt;BR /&gt;1003 01JAN2021 0.43&lt;BR /&gt;1003 04JAN2021 0.44&lt;BR /&gt;1003 05JAN2021 0.45&lt;BR /&gt;1003 06JAN2021 0.46&lt;BR /&gt;1003 07JAN2021 0.47 07JAN2021 3 2 5&lt;BR /&gt;1003 08JAN2021 0.48&lt;BR /&gt;1003 11JAN2021 0.49&lt;BR /&gt;1003 12JAN2021 0.5&lt;BR /&gt;1003 13JAN2021 0.51&lt;BR /&gt;1003 14JAN2021 0.52&lt;BR /&gt;1003 15JAN2021 0.53&lt;BR /&gt;1003 18JAN2021 0.54&lt;BR /&gt;1003 19JAN2021 0.55&lt;BR /&gt;1003 20JAN2021 0.56&lt;BR /&gt;1003 21JAN2021 0.57&lt;BR /&gt;1004 01JAN2021 0.03&lt;BR /&gt;1004 04JAN2021 0.06 04JAN2021 3 2 5&lt;BR /&gt;1004 05JAN2021 0.09&lt;BR /&gt;1004 06JAN2021 0.12&lt;BR /&gt;1004 07JAN2021 0.15&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;As you can see, every company has just 1 (one) reporting date in each month. That is, all the other fields in the column "Reporting_Date" are blank.&amp;nbsp;&lt;BR /&gt;I want to perform the event study around the Reporting date of a company.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Essentially, I am taking&lt;BR /&gt;1. "Event_Window" of 3 days around the "Reporting_Date"&lt;/P&gt;&lt;P&gt;2. A "Gap" of 2 days both before and after the Event_Window, which I do not want to include in my calculation (total 4 days)&lt;BR /&gt;3. And an "Estimation_Window" of 5 days both before and after the Gap days (total 10 days)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For instance, for the company_ID 1001:&lt;/P&gt;&lt;P&gt;Event days are: Event_Date_-1(13JAN2021), Event_Date_0(14JAN2021), Event_Date_+1(15JAN2021)&lt;/P&gt;&lt;P&gt;Gap days are&amp;nbsp;11JAN2021,&amp;nbsp;12JAN2021,&amp;nbsp;18JAN2021,&amp;nbsp;19JAN2021&lt;/P&gt;&lt;P&gt;Estimation_Windows are 04, 05, 06, 07, 08, 20, 21, 22, 25, 26 JAN2021&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="k.PNG" style="width: 806px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/66027i2CCBEF13E727C806/image-size/large?v=v2&amp;amp;px=999" role="button" title="k.PNG" alt="k.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For every Event_Date, first I need to Average the Return during the 10 days of the Estimation_Window, and then divide the Return by this Average.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;For Instance, for Company_ID 1001 and Reporting_Date&amp;nbsp;2021-01-14:&lt;/P&gt;&lt;P&gt;Average of the Estimation window is (0.02+0.03+0.9+0.05+0.06+0.14+0.15+0.16+0.17+0.18)/10 = 0.105&lt;/P&gt;&lt;P&gt;The values that I want is:&lt;BR /&gt;Event_Date_-1:&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 0.09/0.105 =&amp;nbsp;0.857142857142857&lt;/P&gt;&lt;P&gt;Event_Date_0:&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;0.1/0.105 =&amp;nbsp;0.952380952380952&lt;/P&gt;&lt;P&gt;Event_Date_+1:&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;0.11/0.105 =&amp;nbsp;1.04761904761905&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My output for the sample data that I have provided should be:&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Company ID&lt;/TD&gt;&lt;TD&gt;Date&lt;/TD&gt;&lt;TD&gt;Event_Date_-1&lt;/TD&gt;&lt;TD&gt;Event_Date_0&lt;/TD&gt;&lt;TD&gt;Event_Date_+1&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;FONT color="#FF0000"&gt;1001&lt;/FONT&gt;&lt;/TD&gt;&lt;TD&gt;&lt;FONT color="#FF0000"&gt;2021-01-14&lt;/FONT&gt;&lt;/TD&gt;&lt;TD&gt;&lt;FONT color="#FF0000"&gt;0.857142857&lt;/FONT&gt;&lt;/TD&gt;&lt;TD&gt;&lt;FONT color="#FF0000"&gt;0.952&lt;/FONT&gt;&lt;/TD&gt;&lt;TD&gt;&lt;FONT color="#FF0000"&gt;1.047619048&lt;/FONT&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1001&lt;/TD&gt;&lt;TD&gt;2021-02-09&lt;/TD&gt;&lt;TD&gt;0.964285714&lt;/TD&gt;&lt;TD&gt;0.929&lt;/TD&gt;&lt;TD&gt;1.035714286&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1002&lt;/TD&gt;&lt;TD&gt;2021-01-18&lt;/TD&gt;&lt;TD&gt;0.96969697&lt;/TD&gt;&lt;TD&gt;1.181818182&lt;/TD&gt;&lt;TD&gt;1.03030303&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;As you can see, in total, I need at least the data for 17 days around the Reporting_Date to perform my analysis. So, for instance, for the Company_ID 1003 and 1004, there is not enough dates (only 14 days instead of the needed 17 days for Company_ID 1003 and&amp;nbsp;only 05 days instead of the needed 17 days for Company_ID 1004). Therefore, I want to drop this observation from my analysis and create a separate list of dropped observations, containing the Company_ID and Reporting_Date as column heads as follows:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Company_ID&lt;/TD&gt;&lt;TD&gt;Reporting_Date&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1003&lt;/TD&gt;&lt;TD&gt;2021-01-07&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1004&lt;/TD&gt;&lt;TD&gt;2021-01-04&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please note that the days in the Estimation_Window and Gap &lt;STRONG&gt;cannot&lt;/STRONG&gt; be simply calculated by considering them as continuous calendar days. As you will notice, these are &lt;STRONG&gt;trading days&lt;/STRONG&gt; and the holidays are not included in the table.&lt;BR /&gt;&lt;BR /&gt;Thank you so much for your time!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 23 Nov 2021 01:23:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Event-study/m-p/781824#M249183</guid>
      <dc:creator>mmh</dc:creator>
      <dc:date>2021-11-23T01:23:44Z</dc:date>
    </item>
    <item>
      <title>Re: Event study</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Event-study/m-p/781900#M249217</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;this should do the trick:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;LIBNAME in "C:\Temp" access=readonly;

DATA h01;
   length month 8;
   SET in.have;
   month=month(date);
RUN;

PROC SORT data=h01 out=h02; BY company_id month date; RUN;
LIBNAME in CLEAR;

*Add row number;
data h03;
   length id 8;
   set h02;
   BY company_id month date;
   if first.month then id=0;
   id+1;
run;

PROC SQL;
   *Merge reporting_date to all rows by company and month;
   CREATE TABLE h04 AS
      SELECT a.id,b.id as bid,a.company_id,month(a.date) as month, a.date,a.return
      ,b.reporting_date,b.event_window,b.gap,b.estimation_window,b.date as date0
      FROM h03 a
      LEFT JOIN h03(where=(not missing(reporting_date))) b
      ON a.company_id eq b.company_id
      AND month(a.date) eq month(b.date)

      ORDER BY a.company_id,calculated month,a.date
   ;
   *Check single assignment of reporting_date by company and month;
   CREATE TABLE check0 AS
      SELECT DISTINCT company_id,month,reporting_date
      FROM h04
      ORDER BY company_id,month,reporting_date
   ;
QUIT;

DATA _NULL_;
   set check0;
   BY company_id month reporting_date;
   if not first.month and last.month then put 'E' 'RROR: several reporting dates by company and month found' company_id= month= reporting_date=;
RUN;

*clean up;
PROC DATASETS lib=work nolist; delete check0; RUN;QUIT;


PROC FORMAT;
   value period
   1='Estimation window'
   2='Gap'
   3.1='Event date -1'
   3.2='Event date'
   3.3='Event date +1'
   ;
RUN;

DATA h05;
   SET h04;
   length period rangelo rangehi 8;

   *Determine period for Estimation window;
   rangelo=bid-1-gap-estimation_window;
   rangehi=bid+1+gap+estimation_window;
   if rangelo&amp;lt;=id&amp;lt;=rangehi then period=1;

   *Determine period for Gap;
   rangelo=bid-1-gap;
   rangehi=bid+1+gap;
   if rangelo&amp;lt;=id&amp;lt;=rangehi then period=2;

   *Determine period for Event;
   rangelo=bid-1;
   rangehi=bid+1;
   if rangelo=id then period=3.1;
   else if id=bid then period=3.2;
   else if rangehi=id then period=3.3;
   
   drop range:;
   format period period.;
RUN;

PROC SQL;
   *Calculate avg;
   CREATE TABLE h06_avg_ew AS
      SELECT company_id,month,period,avg(return) as avg_ew
      FROM h05
      WHERE period eq 1
      GROUP BY company_id,month,period
   ;
   *Merge avg to corresponding event period;
   CREATE TABLE h07 AS
      SELECT a.*,b.avg_ew
      FROM h05 a
      LEFT JOIN h06_avg_ew b
      ON a.company_id eq b.company_id 
      AND a.month eq b.month
      AND floor(a.period) eq 3
      ORDER BY company_id,month,date
   ;
QUIT;

*Calculate results;
DATA h08;
   set h07;
   where floor(period) eq 3;
   by company_id month date;
   length result 8 periodc $50;
   if not missing(avg_ew) then result=return/avg_ew;
   periodc=vvalue(period);
   keep company_id month date0 period: result;
RUN;

*Transpose name and label variables;
PROC TRANSPOSE data=h08 out=h09(drop=_name_) prefix=period ;
   by company_id month date0 ;
   var result;
   id period;
   idlabel periodc;
   format period best.;
RUN;

DATA want;
   set h09;
   rename date0=date;
   keep company_id date0 period:;
RUN;

PROC DATASETS lib=work nolist; delete h0:; RUN;QUIT;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 23 Nov 2021 10:50:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Event-study/m-p/781900#M249217</guid>
      <dc:creator>Oligolas</dc:creator>
      <dc:date>2021-11-23T10:50:00Z</dc:date>
    </item>
    <item>
      <title>Re: Event study</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Event-study/m-p/781922#M249228</link>
      <description>&lt;P&gt;Another solution using a hash object:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data work.Enhanced;
   set work.have;

   obsnum = _n_;
run;

data 
   work.want(keep= Company_ID Reporting_Date Before_Event_Date At_Event_Date After_Event_Date)
   work.NotEnoughData(keep= Company_ID Reporting_Date)
;
   set work.Enhanced;
   where not missing(Reporting_Date);

   length 
      Average Reporting_Return 8
      Before_Event_Date At_Event_Date After_Event_Date 8
   ;


   if _n_ = 1 then do;
      declare hash h(dataset: 'work.enhanced');
      h.defineKey('obsnum', 'company_id');
      h.defineData('Return');
      h.defineDone();
   end;

   reporting_return = return;
   average = 0;

   /* check if data for the estimation windows is available */
   start_before = obsnum - 8;
   end_before = obsnum - 4;
   before_ok = (h.check(key: start_before, key: company_id) = 0) 
         and (h.check(key: end_before, key: company_id) = 0);

   start_after = obsnum + 4;
   end_after = obsnum + 8;
   after_ok = (h.check(key: start_after, key: company_id) = 0) 
         and (h.check(key: end_after, key: company_id) = 0); 

   if before_ok and after_ok then do;
      do i = start_before to end_before;
         rc = h.find(key: i, key: company_id);
         average = average + return;
      end;

      do i = start_after to end_after;
         rc = h.find(key: i, key: company_id);
         average = average + return;
      end;

      average = average / 10;

      At_Event_Date = reporting_return / average;

      rc = h.find(key: obsnum-1, key: company_id);
      Before_Event_Date = Return / average;

      rc = h.find(key: obsnum+1, key: company_id);
      After_Event_Date = Return / average;

      output work.want;
   end;
   else do;
      output work.NotEnoughData;
   end;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 23 Nov 2021 12:32:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Event-study/m-p/781922#M249228</guid>
      <dc:creator>andreas_lds</dc:creator>
      <dc:date>2021-11-23T12:32:37Z</dc:date>
    </item>
    <item>
      <title>Re: Event study</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Event-study/m-p/782131#M249315</link>
      <description>&lt;P&gt;Hello Oligolas,&lt;BR /&gt;Thank you so much for your time and effort.&lt;BR /&gt;Unfortunately, when I am trying to run the program, I have receiving the following output:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.PNG" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/66070i73061FE807B4DF22/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Capture.PNG" alt="Capture.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;As you will notice, the result for Company_ID 1001 on 09FEB2021 is not as desired.&lt;BR /&gt;Also, we are receiving results for Company_ID 1003 and 1004 in our output.&lt;BR /&gt;Is there any way to further fix this issue?&lt;BR /&gt;&lt;BR /&gt;I thank you again for your kind support!&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;</description>
      <pubDate>Wed, 24 Nov 2021 04:22:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Event-study/m-p/782131#M249315</guid>
      <dc:creator>mmh</dc:creator>
      <dc:date>2021-11-24T04:22:08Z</dc:date>
    </item>
    <item>
      <title>Re: Event study</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Event-study/m-p/782135#M249317</link>
      <description>Hello Andreas,&lt;BR /&gt;I do not know how to thank you!&lt;BR /&gt;The solution works perfectly fine &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;BR /&gt;Do you mind if I send you a quick text if sometimes later I try to modify my event estimations and run in to any problems?&lt;BR /&gt;Again, I am really grateful for your kind support!&lt;BR /&gt;All the best!</description>
      <pubDate>Wed, 24 Nov 2021 06:11:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Event-study/m-p/782135#M249317</guid>
      <dc:creator>mmh</dc:creator>
      <dc:date>2021-11-24T06:11:53Z</dc:date>
    </item>
    <item>
      <title>Re: Event study</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Event-study/m-p/782136#M249318</link>
      <description>Hello Oligolas,&lt;BR /&gt;I have got the code for my problem, thanks to Andreas.&lt;BR /&gt;But I would like to thank you again for your time and effort.&lt;BR /&gt;Really appreciate your work!</description>
      <pubDate>Wed, 24 Nov 2021 06:14:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Event-study/m-p/782136#M249318</guid>
      <dc:creator>mmh</dc:creator>
      <dc:date>2021-11-24T06:14:44Z</dc:date>
    </item>
    <item>
      <title>Re: Event study</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Event-study/m-p/782167#M249337</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/406845"&gt;@mmh&lt;/a&gt;&amp;nbsp;oh yes, I see in february you also take dates from January in order to determine the average of the estimation window, whereas I consider only the values in each month.&lt;/P&gt;</description>
      <pubDate>Wed, 24 Nov 2021 09:04:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Event-study/m-p/782167#M249337</guid>
      <dc:creator>Oligolas</dc:creator>
      <dc:date>2021-11-24T09:04:11Z</dc:date>
    </item>
    <item>
      <title>Re: Event study</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Event-study/m-p/782169#M249338</link>
      <description>Now I understand.&lt;BR /&gt;And this might come in handy for me in the future.&lt;BR /&gt;Thanks again!</description>
      <pubDate>Wed, 24 Nov 2021 09:48:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Event-study/m-p/782169#M249338</guid>
      <dc:creator>mmh</dc:creator>
      <dc:date>2021-11-24T09:48:28Z</dc:date>
    </item>
  </channel>
</rss>

