Hi all,
I am trying to exclude the 3rd Friday of each month. I use the function "dow" to generate week days (Friday==5). I do not know how to exclude ONLY the 3rd Friday of the month without dropping other Friday. Here is the code I have so far:
gen dow = dow(date)
gen year = year(date)
gen month = month(date)
Would you be able to help me? Thanks a lot!
I am trying to exclude the 3rd Friday of each month. I use the function "dow" to generate week days (Friday==5). I do not know how to exclude ONLY the 3rd Friday of the month without dropping other Friday. Here is the code I have so far:
gen dow = dow(date)
gen year = year(date)
gen month = month(date)
Would you be able to help me? Thanks a lot!
Comment