Compile as One

 

Hello, does anybody knows or have any idea how to..

compile indicator and EA as one

compile(indicator.ex4+EA.ex4)=newEA.ex4

OR

compile(indicator.ex5+EA.ex5)=newEA.ex5

Thanks


:)

 

Add indicator as resource

#resource "\\Indicators\\indicator.exX"

// MT5
int handle = iCustom(_Symbol,_Period,"::Indicators\\indicator.exX");

// MT4
double var = iCustom(_Symbol,_Period,"::Indicators\\indicator.exX",...);
 
Enrique Dangeroux:

Add indicator as resource

did not work for the first time when i did that earlier..


i retried and it works

Thanks for your time ...

:)

Reason: