Chengooi wrote:Can someone tell me how to stop a chore other than set it not active ?
The chore settings have parameter to run by/by day, hrs and min, for a chore that requires to run from 8 to 5 , there is no setting to tell it stop at 5 other than manual intervention to set the chore not active from "front door".
Is there any TI code that can stop the chore at specific time ( local time)?

No single line, but it's fairly easy to do; in the Prolog of the first process you simply get the current time (the NOW() rules function should do that), take the hour from that (try the TIMVAL function for that) then just use an IF function to determine whether the current hour is outside the ones that you want the chore to run. If it is, use a ChoreQuit function.
If any of those functions aren't in your version, there will still be other functions which will do the business for you, albeit with a couple more steps.