Indicator short name - page 2

 
I'm not sure if that's the case, but if you have multiple buffers, the indicator also shows the values for them. Is it possible that both your buffers are -2?

(Btw, I see that your indicator says it has 4 buffers, but actually only initializes two of them).


Markus
 
About the 4 buffers i fiexed it.
but see, the 2 that are shoing in value -2, is because i dont know how to make them dissapear.
the windows min and max is 1 -1
the value is -2 and 2,
if you will bigger the windows they will be shown.
I dont wanna show them or their value.
But dont know how ...

Haim



I'm not sure if that's the case, but if you have multiple buffers, the indicator also shows the values for them. Is it possible that both your buffers are -2?

(Btw, I see that your indicator says it has 4 buffers, but actually only initializes two of them).


Markus
 
About the 4 buffers i fiexed it.
but see, the 2 that are shoing in value -2, is because i dont know how to make them dissapear.
the windows min and max is 1 -1
the value is -2 and 2,
if you will bigger the windows they will be shown.
I dont wanna show them or their value.
But dont know how ...


In that case set:
#property indicator_buffers 2
IndicatorBuffers(2);
 
Hi Guys,
This didnt help either,
But i pkayed with the lines there,
Because all of the things you said,

so i deleted this 2 lines:
AlertLongBuffer[i]=-2;
AlertShortBuffer[i]=-2;

and now it is working.
Thanks a lot again

Haim

About the 4 buffers i fiexed it.
but see, the 2 that are shoing in value -2, is because i dont know how to make them dissapear.
the windows min and max is 1 -1
the value is -2 and 2,
if you will bigger the windows they will be shown.
I dont wanna show them or their value.
But dont know how ...


In that case set:
#property indicator_buffers 2
IndicatorBuffers(2);