How do I get properties of indicator with calling iCustom?

 

I can get indicator buffers with calling iCustom:

int indicator_handle=iCustom(NULL,0,"Indicator_name");

double Label1Buffer[];

int copy=CopyBuffer(indicator_handle,0,0,10,Label1Buffer);

I got hendle with iCustom() but I can't figure out how do I get properties of indicator with this hendle?

 
I got hendle with iCustom() but I can't figure out how do I get properties of indicator with this hendle?

Is this what you want?

https://www.mql5.com/en/docs/series/indicatorparameters

 
Anthony Garot:

Is this what you want?

https://www.mql5.com/en/docs/series/indicatorparameters

If I understand it, it's only for input properties. Can I get properties without "input" somehow?

Reason: