Please Help For Indicator Modification

 

I found this indicator online, and like it for support/resistance. However, it puts text fields in that I do not need. They get in the way and are obstructive. I attached an image that shows the fields that I would like eliminated from this indicator. I also attached the mq4 file which I found online.

Could someone be so kind as to modify the code? I used to be a web designer (design...not programmer) and looked at the code and could not find out how to do it. I'm sure it's very easy to eliminate these text fields from being generated onto the chart.

Thanks,

Jeff

Files:
 

That's easy, open MetaEditor (press F4), open this CI, look for line that started with this

ObjectSetText ( ....

add '//' in front of it, so it will be like

//ObjectSetText

and press F5 to compile and see,

please report back the result

 
onewithzachy:

That's easy, open MetaEditor (press F4), open this CI, look for line that started with this

add '//' in front of it, so it will be like

and press F5 to compile and see,

please report back the result


It worked...wow...thanks. I forgot from my day's of html that you can use those. Excellent!!!!
 
jbozman:

It worked...wow...thanks. I forgot from my day's of html that you can use those. Excellent!!!!
You're welcome. MQL4 is pretty much like C.
Reason: