How do I make a page not visible at a certain time? [closed]

Take a look at this page https://codex.wordpress.org/Function_Reference/wp_update_post . There is an example of how to update the post.

All you need is the post ID that you want to update, and some code to change certain text in the post.You will want to get the post’s data (an array), then change the $post_content array item with some sort of process that searches for the price string you want to change and then adjusts it.

Once that is changed, set the $post_content array item to the new text (with your price change), and store the result. The example in the link above should get you pointed in the right direction.

Once you have the PHP file that does the process correctly (test it a lot!), then add that to the CRON.