View Single Post
  #2 (permalink)  
Old 03-27-2006, 07:35 PM
Nicholishen's Avatar
Nicholishen Nicholishen is offline
Senior Member
 
Join Date: Dec 2005
Posts: 531
Nicholishen is on a distinguished road
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();
   }

__________________
"Anyone who has never made a mistake has never tried anything new." -Albert Einstein
Reply With Quote