Display texts at a specific time every day?

 

I am trying to display texts at 09:00 (server time) every day but I don't know how to define time and price.

About price I want it to plot on the low of the bar at 09:00, how can I get that?

ObjectCreate(0,"Number",OBJ_TEXT,0,time????,price????);
ObjectSetString(0,"Number",OBJPROP_TEXT,"Low of first bar"); 
ObjectSetString(0,"Number",OBJPROP_FONT,"Verdana"); 
ObjectSetInteger(0,"Number",OBJPROP_FONTSIZE,8); 
ObjectSetDouble(0,"Number",OBJPROP_ANGLE,0.0); 
ObjectSetInteger(0,"Number",OBJPROP_ANCHOR,ANCHOR_UPPER); 
ObjectSetInteger(0,"Number",OBJPROP_COLOR,clrRed);

Also, how to create a sequence of numbers like this (in the image)? We use array, right?

Files:
EURUSDM5.png  22 kb
 

time and price are the coordinate of your text.

time would be Time[0]

price would be Low[0]

you need to check whether the current time is 9:00 with a "if" before you plot the texts.

 
galecopper:

time and price are the coordinate of your text.

time would be Time[0]

price would be Low[0]

you need to check whether the current time is 9:00 with a "if" before you plot the texts.

How can I check with "if"? Could you give me a sample code?

Reason: