Quote:
|
Originally Posted by pip-gandalf
How can I join the output of an EA with other indicators - for example - if I have an EA that can give me a trend direction - and - this output would be delayed until another indicator gives me entry (to be taken upon the EA )? How can they be joined to one ea in Meta trader?
|
you could make the Ea's into separate functions of one EA. For example:
PHP Code:
if(OriginalEASignal()){
if(AdditionalCriteria()){
OpenOrder();
}
}