Sequenced RSI Take Profit

 

Is there a way to take profit from the RSI on the second hit of a level. for example; hits 70 upward direction then hits 70 downward direction to take the profit on the downward direction.

the if statement needs to be in sequence. 

Thanks.

if(RSI>70 && next RSI<70)
 Log confirmation
 Wait for second hit
 
 
OTC:

Is there a way to take profit from the RSI on the second hit of a level. for example; hits 70 upward direction then hits 70 downward direction to take the profit on the downward direction.

the if statement needs to be in sequence. 

Thanks.

try here

How to check when RSI cross some level for the first time after it came from level 50?
How to check when RSI cross some level for the first time after it came from level 50?
  • 2022.03.16
  • www.mql5.com
Hi everyone, i want to check when RSI cross some level (let say 20) for the first time after it came down from level 50, the second cross to same l...
 
Daniel Cioca #:

try here

thanks Daniel, this was really helpful. not only with RSI but with sequencing.