@Kunal K Thank you for reaching out to Microsoft Q&A, apologize for any inconvenience caused on this.
You can use the below CORN expression to run your timer trigger from Monday-Wednesday at 4PM IST.
0 0 16 * * Mon-Wed
If you want to run your function app in IST time zone then you need to add the application settings WEBSITE_TIME_ZONE
with value India Standard Time
.
Ideally, function app will run in UTC time zone if you want to keep function app running in time zone and you want your time trigger to get triggered at 4PM IST you need to change the CORN Expression.
0 30 10 * * Mon-Wed
You can make use this NCORN expression generator to review/evaluate your CORN expression
Feel free to reach back to me if you have any questions on this.