0 indicator (zero) to open blank basement window

 

Hey, guys!

does anybody have "0" (zero) indicator to open empty basement window

just stupid trick to avoid those long value digits coming with the ind. name in the top corner of separate window (see (on pict.) what i mean...)

to use malfunctioned idi 4 that purpose (as i did) to drop indi(s) there probably not a very good idea ...

PS maybe other solutions exist?

Files:
0_ind.gif  21 kb
 

?

You can alter the code to eliminate labels. I'm not a programmer, but usually with enough experimentation I can hack my way to success. Just recompile after each change...

 

nope, doesn't work

lables might be gone, but values (numbers) stay's there

buffer values... may be get reed of buffers??? .. or values

 

"0" indicator

Hi,

I'm not really sure why you need an empty indicator window but here's code to create one.

//+------------------------------------------------------------------+

//| 0.mq4 |

//+------------------------------------------------------------------+

#property indicator_separate_window

#property indicator_buffers 0

int init()

{

IndicatorShortName("");

IndicatorBuffers(0);

return(0);

}

int start()

{

return(0);

}

BR,

Aki

 

[QUOTE=akiruis // 0.mq4 |

perfect

thank you, Akiruis

see, what i mean: second sep. window - alligator over "0" -no text which covers indicator

thanks again

Files:
0_ind1.gif  13 kb