How I make the EA with window's input as accessory? - page 2

 
WHRoeder:
asked and answered
sorry,I don't know how? shall I know more details or take a simple example?
 
DxdCn:

EA can set and use extern  variables , do not need use script.

use EA's extern  variables  directly.

 

how to use EA' extern to achieve the target that user can assign to variable values.

can you take a simple example?

thanks 

 
vx0532:

how to use EA' extern to achieve the target that user can assign to variable values.

can you take a simple example?

thanks


//Indicator extern's

extern bool CalculateOnBarClose    = true;
extern int  ZZDepth                = 12;
extern int  ZZDev                  = 5;

EA

iCustom(Symbol(),0,"FractalZigZagNoRepaint",CalculateOnBarClose,ZZDepth,ZZDev,0,0);

Ez pz
Reason: