<?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: include only Week Dates in Event Study in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/include-only-Weekdays-trading-days-amp-exclude-weekends-amp/m-p/522372#M141798</link>
    <description>&lt;P&gt;Post&amp;nbsp; the sample data and the code you have tried .&lt;/P&gt;</description>
    <pubDate>Tue, 18 Dec 2018 22:52:49 GMT</pubDate>
    <dc:creator>r_behata</dc:creator>
    <dc:date>2018-12-18T22:52:49Z</dc:date>
    <item>
      <title>include only Weekdays (trading days) &amp; exclude weekends &amp; holidays in Event Study</title>
      <link>https://communities.sas.com/t5/SAS-Programming/include-only-Weekdays-trading-days-amp-exclude-weekends-amp/m-p/522368#M141796</link>
      <description>&lt;P&gt;Hello SAS gurus,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am calculating the cumulative abnormal return for an event study. I used the event window of (-180, +1). My concern is how I can include only weekdays/trading days for my event window (that means excluding weekend and holidays). For example, some announcement (0, the event) will take place on Friday, so the +1 day will be Monday, NOT Saturday. Similarly, some announcement (0, the event) will take place on Monday, and I only want to include 180 trading days (weekdays) before the event day without weekends and holidays.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The code I used is&amp;nbsp;provided by&amp;nbsp;&lt;SPAN class="login-bold"&gt;&lt;A href="https://communities.sas.com/t5/user/viewprofilepage/user-id/11562" target="_self"&gt;KurtBremser&lt;/A&gt;'s code in this post "&lt;A href="https://communities.sas.com/t5/SAS-Programming/Dates-for-Event-Study/td-p/258778" target="_self"&gt;Dates for Event Study&lt;/A&gt;&lt;SPAN&gt;"&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data Event_intermediate;
	format date EventDate yymmddn8.;
	set stock.events (keep=EventDate Ticker);
	do Date = EventDate - 180 to EventDate + 1;
		output;
	end;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;SPAN class="login-bold"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please help me with the code!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;</description>
      <pubDate>Tue, 18 Dec 2018 23:51:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/include-only-Weekdays-trading-days-amp-exclude-weekends-amp/m-p/522368#M141796</guid>
      <dc:creator>LucyDang</dc:creator>
      <dc:date>2018-12-18T23:51:42Z</dc:date>
    </item>
    <item>
      <title>Re: include only Week Dates in Event Study</title>
      <link>https://communities.sas.com/t5/SAS-Programming/include-only-Weekdays-trading-days-amp-exclude-weekends-amp/m-p/522372#M141798</link>
      <description>&lt;P&gt;Post&amp;nbsp; the sample data and the code you have tried .&lt;/P&gt;</description>
      <pubDate>Tue, 18 Dec 2018 22:52:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/include-only-Weekdays-trading-days-amp-exclude-weekends-amp/m-p/522372#M141798</guid>
      <dc:creator>r_behata</dc:creator>
      <dc:date>2018-12-18T22:52:49Z</dc:date>
    </item>
    <item>
      <title>Re: include only Week Dates in Event Study</title>
      <link>https://communities.sas.com/t5/SAS-Programming/include-only-Weekdays-trading-days-amp-exclude-weekends-amp/m-p/522377#M141800</link>
      <description>&lt;P&gt;Hi r_behata, I have updated the post! Thank you!&lt;/P&gt;</description>
      <pubDate>Tue, 18 Dec 2018 23:13:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/include-only-Weekdays-trading-days-amp-exclude-weekends-amp/m-p/522377#M141800</guid>
      <dc:creator>LucyDang</dc:creator>
      <dc:date>2018-12-18T23:13:42Z</dc:date>
    </item>
    <item>
      <title>Re: include only Weekdays (trading days) in Event Study</title>
      <link>https://communities.sas.com/t5/SAS-Programming/include-only-Weekdays-trading-days-amp-exclude-weekends-amp/m-p/522379#M141802</link>
      <description>&lt;P&gt;Use INTNX with the WEEKDAY option, but this doesn't include holidays.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you need to factor in holidays you need a different approach.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;dateLater = intnx('weekday', eventDate, 180);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Or you can test each day with the WEEKDAY() function. Saturday is 7 and Sunday is 1.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/227617"&gt;@LucyDang&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hello SAS gurus,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am calculating the cumulative abnormal return for an event study. I used the event window of (-180, +1). My concern is how I can include only weekdays for my event window. For example, some announcement (0, the event) will take place on Friday, so the +1 day will be Monday, NOT Saturday. Similarly, some announcement (0, the event) will take place on Monday, and I only want to include 180 trading days (weekdays) before the event day.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The code I used is&amp;nbsp;provided by&amp;nbsp;&lt;SPAN class="login-bold"&gt;&lt;A href="https://communities.sas.com/t5/user/viewprofilepage/user-id/11562" target="_self"&gt;KurtBremser&lt;/A&gt;'s code in this post "&lt;A href="https://communities.sas.com/t5/SAS-Programming/Dates-for-Event-Study/td-p/258778" target="_self"&gt;Dates for Event Study&lt;/A&gt;&lt;SPAN&gt;"&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data Event_intermediate;
	format date EventDate yymmddn8.;
	set stock.events (keep=EventDate Ticker);
	do Date = EventDate - 180 to EventDate + 1;
		output;
	end;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;SPAN class="login-bold"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please help me with the code!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you!&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 18 Dec 2018 23:20:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/include-only-Weekdays-trading-days-amp-exclude-weekends-amp/m-p/522379#M141802</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-12-18T23:20:06Z</dc:date>
    </item>
    <item>
      <title>Re: include only Weekdays (trading days) in Event Study</title>
      <link>https://communities.sas.com/t5/SAS-Programming/include-only-Weekdays-trading-days-amp-exclude-weekends-amp/m-p/522387#M141808</link>
      <description>Hi Reeza, thank you. I have one more question: "how can I exclude the holidays in the (-180, +1) window period?"</description>
      <pubDate>Tue, 18 Dec 2018 23:49:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/include-only-Weekdays-trading-days-amp-exclude-weekends-amp/m-p/522387#M141808</guid>
      <dc:creator>LucyDang</dc:creator>
      <dc:date>2018-12-18T23:49:29Z</dc:date>
    </item>
    <item>
      <title>Re: include only Weekdays (trading days) in Event Study</title>
      <link>https://communities.sas.com/t5/SAS-Programming/include-only-Weekdays-trading-days-amp-exclude-weekends-amp/m-p/522389#M141809</link>
      <description>That's a lot harder because the holidays can vary. You need to create your own custom table of dates with the dates you want to include then and use that within INTNX. That's a lot more complicated of a problem. &lt;BR /&gt;Holidays vary from company to company and/or country to country. You may need to consider that as well. &lt;BR /&gt;&lt;BR /&gt;Here's an example of how to solve this type of situation. &lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.sascommunity.org/wiki/Generating_Holiday_Lists" target="_blank"&gt;http://www.sascommunity.org/wiki/Generating_Holiday_Lists&lt;/A&gt;</description>
      <pubDate>Tue, 18 Dec 2018 23:58:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/include-only-Weekdays-trading-days-amp-exclude-weekends-amp/m-p/522389#M141809</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-12-18T23:58:32Z</dc:date>
    </item>
    <item>
      <title>Re: include only Weekdays (trading days) &amp; exclude weekends &amp; holidays in Event Study</title>
      <link>https://communities.sas.com/t5/SAS-Programming/include-only-Weekdays-trading-days-amp-exclude-weekends-amp/m-p/522394#M141811</link>
      <description>&lt;P&gt;Is it something lie this...&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data Event_intermediate;
   eventdate='18Jan2019'd;
	format date EventDate yymmddn8.;
	do Date = EventDate - 180 to EventDate + 1;
		output;
	end;
run;

data want;
  set Event_intermediate;
  where weekday(date) not in (1, 7);
  wkday=weekday(date);
run;

data holidays;
  infile datalines;
  input
  holiday date9.;
datalines;
31dec2018
01jan2019
;
run;

proc sql;
  delete from want
  where date in (select holiday from holidays);
quit;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 19 Dec 2018 00:23:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/include-only-Weekdays-trading-days-amp-exclude-weekends-amp/m-p/522394#M141811</guid>
      <dc:creator>ShiroAmada</dc:creator>
      <dc:date>2018-12-19T00:23:21Z</dc:date>
    </item>
    <item>
      <title>Re: include only Weekdays (trading days) &amp; exclude weekends &amp; holidays in Event Study</title>
      <link>https://communities.sas.com/t5/SAS-Programming/include-only-Weekdays-trading-days-amp-exclude-weekends-amp/m-p/523232#M142153</link>
      <description>&lt;P&gt;Unfortunately, I still do not have the answer to this problem.&lt;/P&gt;&lt;P&gt;Please see the example datalines below. In this file, I have some variables for one stock: date, eventdate, ticker $, mrkReturn (return of the market), return (of this stock), before (#of days before/after the event date), and wday (check the weekday of each date, from 2=monday to 6=friday).&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data now;
input date eventdate ticker $ mrkReturn return before wday;
datalines;
20120830 20120831 AA -0.007806 -0.01171 -1 5
20120831 20120831 AA 0.005073 0.014218 0 6
20120904 20120831 AA -0.001166 -0.01635 4 3
;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Normally, if the event date fall in (2,5), that's fine because the +1 day I want to use to calculate the abnormal return will be the following day (3,6 respectively). However, if the event day falls in wday=6 (Friday), I need to calculate the abnormal return on Monday (skip Sat, Sunday, and in this case, it even skipped Monday (2012/09/03) because it is not a trading day), in this file the variable before = 4. I need to make the variable "before" = 1 for later calculation.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How I make a program that&amp;nbsp;automatically recognizes the following trading day as a +1 day of the event and sets value of "before"=1?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is that likely that I can create a code and assign "if EventDate = Friday, then retain &amp;amp; write the next row (which record data for a trading day) to output table &amp;amp; set "before" = 1"?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;</description>
      <pubDate>Sat, 22 Dec 2018 06:55:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/include-only-Weekdays-trading-days-amp-exclude-weekends-amp/m-p/523232#M142153</guid>
      <dc:creator>LucyDang</dc:creator>
      <dc:date>2018-12-22T06:55:04Z</dc:date>
    </item>
    <item>
      <title>Re: include only Weekdays (trading days) &amp; exclude weekends &amp; holidays in Event Study</title>
      <link>https://communities.sas.com/t5/SAS-Programming/include-only-Weekdays-trading-days-amp-exclude-weekends-amp/m-p/523285#M142169</link>
      <description>The easiest way to do this is with the customized calendar approach I mentioned in my previous reply. Did you try that? If so, post the code you've tried and I'll take a look.</description>
      <pubDate>Sat, 22 Dec 2018 17:28:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/include-only-Weekdays-trading-days-amp-exclude-weekends-amp/m-p/523285#M142169</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-12-22T17:28:29Z</dc:date>
    </item>
    <item>
      <title>Re: include only Weekdays (trading days) &amp; exclude weekends &amp; holidays in Event Study</title>
      <link>https://communities.sas.com/t5/SAS-Programming/include-only-Weekdays-trading-days-amp-exclude-weekends-amp/m-p/523308#M142173</link>
      <description>&lt;P&gt;Skipping weekends will be relatively easy.&amp;nbsp;&amp;nbsp; But what about holidays and other market-closures? Sep 11, 2001 was a Tuesday - the market didn't re-open until the following Monday, or the recent market closure in honor of George HW Bush.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You probably have daily stock trading file.&amp;nbsp; If so, you could use the date variables to generate a stock trading day calendar.&amp;nbsp; Then you could use it toe generate the (-180,1) trading day range for the event study.&amp;nbsp; In the unlikely event&amp;nbsp;you don't have such a dataset, you can generate one from publically available S&amp;amp;P500 data.&amp;nbsp; I found such a source at&amp;nbsp; &lt;A href="https://www.investing.com/indices/us-spx-500-historical-data" target="_self"&gt;https://www.investing.com/indices/us-spx-500-historical-data&lt;/A&gt;, which goes back to January 2006.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 23 Dec 2018 00:53:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/include-only-Weekdays-trading-days-amp-exclude-weekends-amp/m-p/523308#M142173</guid>
      <dc:creator>mkeintz</dc:creator>
      <dc:date>2018-12-23T00:53:42Z</dc:date>
    </item>
    <item>
      <title>Re: include only Weekdays (trading days) &amp; exclude weekends &amp; holidays in Event Study</title>
      <link>https://communities.sas.com/t5/SAS-Programming/include-only-Weekdays-trading-days-amp-exclude-weekends-amp/m-p/523449#M142204</link>
      <description>&lt;P&gt;Hi Reeza, I used a very dumb way to fix the problem. I don't think think that my approach will be helpful for the future. Since I am very new to SAS (just study SAS for several weeks), it's very difficult for me to understand what you said that why I think of doing like following.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I just keep everything as is in the Event data (include all holidays &amp;amp; weekends) but .with longer time period (-200, +4) to cover for the weekends &amp;amp; holidays). Then I merged the event data with the daily stock return data. Since daily stock return data was from CRPS database, it only includes trading days, when I merged, the holidays &amp;amp; weekends automatically disappeared in the merged file.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I splited&amp;nbsp;this merged data into&amp;nbsp;"estper" table&amp;nbsp;including all&amp;nbsp;observation before&amp;nbsp;the event date and&amp;nbsp;into&amp;nbsp;"evntper" table including all observation after the event date. In table&amp;nbsp;"estper" I do some minor calculation for the abnormal return to have a table named "mmparam" and use this table to merge with the "eventper" to create "ar" tables.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In the table "evntper", variable "before"&amp;nbsp;that I mentioned in &lt;A href="https://communities.sas.com/t5/SAS-Studio/ERROR-No-valid-observations-are-found/td-p/352654" target="_self"&gt;a post related with this post&lt;/A&gt;, only includes a value of 0, 3 or 4. I then looked at the eventdate to see how many dates are on Friday and its following Mondays are holidays and&amp;nbsp;noted these specific dates, then I create&amp;nbsp;three tables. One table includes Friday-event date with normal working day on Monday. Second table includes Friday-event date with holiday on Monday.&amp;nbsp; Final table includes all other event dates. After that, I manually change the&amp;nbsp;value of "before" from 3 to 1 (Monday is the third day of the Event; Sat=1st and Sun=2nd were deleted when I merged 2 table).&amp;nbsp;For Friday-event date with Monday is a&amp;nbsp;holiday, I change the&amp;nbsp;value of "before" from 4 to 1 (Sat=1, Sun=2, Mon=3 are not working/trading day).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;After I successfully changed the value of the variable "before", I concatenated the 3 tables to have the final clean&amp;nbsp;table "arclean".&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Quite a long story =))&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;BTW, how to master my SAS skill? I feel it too difficult &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data Event_intermediate;
	format date EventDate yymmddn8.;
	set stock.events (keep=EventDate Ticker);
	do Date = EventDate - 200 to EventDate + 4;
		output;
end;
run;
proc sort data=Event_intermediate;
	by TICKER Date;
run;
data stock.want;
	merge
		Event_intermediate (in=a)
		stock.StockDayClean (in=b)
	;
	by TICKER Date;

	if a and b;
	before=Date-EventDate;
	Ewday=weekday(EventDate);
run;

proc sort data=stock.want;
	by TICKER EventDate Date;
run;

data stock.estper stock.evntper;
	set stock.want;
	if before&amp;lt;0 then output stock.estper;
	if before&amp;gt;=0 then output stock.evntper;
run;
proc reg data=stock.estper outest=mmparam (rename=(intercept=alpha MrkReturn=beta)
keep=TICKER EventDate Date intercept MrkReturn) noprint;
by TICKER EventDate;
model return = MrkReturn;
quit;
data ar;
merge stock.evntper mmparam;
by TICKER EventDate;
ar = return - alpha - beta*MrkReturn;
run;
data arED6H arED6WK arEDR;
set ar;
if EventDate in ('31AUG2012'd, '12FEB2016'd) then output arED6H;
else if Ewday=6 then output arED6WK;
else output arEDR;
run;
data arED6Hclean;
set arED6H;
if WdayStock=3 then before=1;
run;
data arED6WKclean;
set arED6WK;
where before&amp;lt;4;
if WdayStock=2 then before=1;
run;
data arEDRclean;
set arEDR;
where before&amp;lt;2;
run;
data stock.arclean;
set arEDRclean arED6WKclean arED6Hclean;
run;
proc sort data=stock.arclean;
by ticker EventDate;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 25 Dec 2018 02:23:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/include-only-Weekdays-trading-days-amp-exclude-weekends-amp/m-p/523449#M142204</guid>
      <dc:creator>LucyDang</dc:creator>
      <dc:date>2018-12-25T02:23:11Z</dc:date>
    </item>
    <item>
      <title>Re: include only Weekdays (trading days) &amp; exclude weekends &amp; holidays in Event Study</title>
      <link>https://communities.sas.com/t5/SAS-Programming/include-only-Weekdays-trading-days-amp-exclude-weekends-amp/m-p/523450#M142205</link>
      <description>&lt;P&gt;Hi mkeintz,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How can I do as what you said:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;P&gt;&lt;SPAN&gt;If so, you could use the date variables to generate a stock trading day calendar.&amp;nbsp; Then you could use it toe generate the (-180,1) trading day range for the event study.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I do have trading data for daily stock return.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thank you so much!&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 25 Dec 2018 02:26:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/include-only-Weekdays-trading-days-amp-exclude-weekends-amp/m-p/523450#M142205</guid>
      <dc:creator>LucyDang</dc:creator>
      <dc:date>2018-12-25T02:26:16Z</dc:date>
    </item>
  </channel>
</rss>

