How Is It Possible To Check Is A Candle Pattern Was True..

 

Example: If Bullish Engulf Was True.. and another Bullish Engulf Becomes True Back To Back.

I'm Trying Disable the new Bullish Engulf. Signal from Showing Up again. 

 
Basically I Am Checking If A Signal Was True that is the problem
 
q.import:

Basically I Am Checking If A Signal Was True that is the problem

hi

you can use CCandlePatterns class

 
mohsen_bhr:

hi

you can use CCandlePatterns class

I Am I want to check If The Previous Signal Is True thats the  problem. 

If Previous Signal = True

 then Disable Signal 

else New Signal 

 
Thanks to everyone that helped and looked at the question its solved
 
q.import:

I Am I want to check If The Previous Signal Is True thats the  problem. 

If Previous Signal = True

 then Disable Signal 

else New Signal 

q.import also ask this question in mql4.com and the possible answer is this ...

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

q.import also ask this question in mql4.com and the possible answer is the

yesterday signal is correct. thanks for signal

 

 
effi8:
Its A More Complicated Pattern Than That But What He Said Was Right In A Certain Context
Reason: