Questions about programming

 

How to delete data from buffers in window of indicator?

(mql5,mql4) 

 

 

Without code it's hard (impossible) to help.

My guess is the IndicatorShortName()??

 
gooly:

Without code it's hard (impossible) to help.

My guess is the IndicatorShortName()??

What code?

Attach any ind with separate window and you will see. 

 
eevviill:

What code?

Attach any ind with separate window and you will see. 

The code of the indi you show! I don't know Voli_5.5
 
Anyone knows how to delete buffers data from indicator(any) in separate window?
 
mt4 can't get rid (free memory) of any indicator and its buffers called.
 
gooly:
mt4 can't get rid (free memory) of any indicator and its buffers called.
Why are you flooding?
 
eevviill: Attach any ind with separate window and you will see.
  1. I attach my indicator and see nothing.
  2. The problem is your indicator's code.
    int OnInit(){
       :
       IndicatorShortName(StringFormat("MmaBBch(%i,%g%s%s)", Mma_Length, 
                          Deviations_Multiplier, ap, ks));//--- indicator buffers mapping
       SetIndexBuffer(0,abHigh);     SetIndexLabel(0,NULL);
       :
    If you don't want the buffer values to show, on the line and in the data window set the label to NULL.
 
WHRoeder:
  1. I attach my indicator and see nothing.
  2. The problem is your code.

/

 

 

And I do not want SetIndexLabel(0,NULL);

I want to see name of buffers in window data(ctrl+D) 

 

eevviill:

And I do not want SetIndexLabel(0,NULL);

I want to see name of buffers in window data(ctrl+D) 

This isn't Burger King, you can't have it your way.
 
WHRoeder:
This isn't Burger King, you can't have it your way.

What way?

Is there any other way to hide buffers data in separate window exept SetIndexLabel(0,NULL)

No. Than you need to ask developers to create thing like this. To see data of ctrl+D and to not see buffers data in separate window. It will be usefull. 

Reason: