Piston that runs on 4th Thursday in November


#1

1) Give a description of the problem
How can I set a piston to trigger on a specific weekday in a specific week of the month? For example, a piston that triggers on the 4th Thursday in November?

2) What is the expected behavior?
The piston triggers on the 4th Thursday in November.


#2

Maybe one trigger and two conditions?

Every Thursday at Noon
do
   IF $month is 11
      and
      $day is between 22 and 28
   Then
      Do cool stuff
   END IF
END EVERY