Disable Candle Stick Patterns That Happen Back To Back

 

I've been working on a program for while now and its quite successful manually and turning it into an EA is what I've been doing for almost 7 months now and it all comes down to disabling Patterns that have already triggered

Example: if a bearish engulf on the daily chart pops up and the next day if pops up again i want to disable the new engulf from showing or registering as a trigger

 
And your question about your code (that your don't show) is?
 

q.import also asked that in mql5.com https://www.mql5.com/en/forum/9024

q_import 2012.11.27 05:27 

I've been working on a program for while now and its quite successful manually and turning it into an EA is what I've been doing for almost 7 months now and it all comes down to disabling Patterns that have already triggered

Example: if a bearish engulf on the daily chart pops up and the next day if pops up again i want to disable the new engulf from showing or registering as a trigger

Maybe something like ...,

Just maybe ... 

if (bearish_engulf == true)
   {
   if (time_bearish_engulf < Time [0] && time_bearish_engulf != 0)
      {
      Signal = false;
      }
      else
      {
      Signal = true;
      }
   time_bearish_engulf = Time [0];
   }
 

Thank You So Much...

 
phi.nuts:

q.import also asked that in mql5.com https://www.mql5.com/en/forum/9024

Maybe something like ...,

Just maybe ... 

WHRoeder:
And your question about your code (that your don't show) is?

Thank You For You Interest In My Question Phi.Nuts Answered It.. A Thank You Goes  Out To Everyone That Help and Looked At The Question..