Morse code like indicator

 
I've already asked you guys a while ago but is it possible to create an indicator like the following?


2001/01/01 from 12:00 to 13:00 parallel line to x-axis
2001/01/02 from 12:00 to 13:00 parallel line to x-axis
2001/01/03 from 12:00 to 13:00 parallel line to x-axis
and so on.....(hopefully hundreds more)
All indicators have same length(this case 1 hour) and same distance(1day)
in between so the indicator looks like Morse code like following
-- -- -- -- -- -- -- -- --
in the chart screen.

And I would like to change the length and cycle of indicator freely.

I am not sure if this kind of indicator is possible to create on MT4 as number of buffer is limited.

If any of you could give me any information, that will be greatly appreciated.

Thanks Experts I have to rely on you guys,
From Japan
OKAZ
 
you only need one buffer:

   if(TimeHour(Time[i])==12)
      ExtMapBuffer1[i]=extValue;
   else
      ExtMapBuffer1[i]=0; // this is empty value will not show on the chart
 
Thanks Irusho,
You are a star.

By the way, do you know any good website showing all available predifined buffer/Library functions like TimeHour or Time[i]?

Thanks ,

OKAZ
 
Hey, all documentation is right here. Just click on documentation above.
 
Thanks Irusho Master.
Age gets most of myself nowadays.

OKAZ