Indicator moves within limits
-
Completely new to this program.. All I need to know if a stochastic * is overbought or oversold. Looking at the code it looks like Indicator moves within limits only returns true false where true can be returned if stochastic is either OB or OS when I need to know which one it is.
Help?
-
This block is to check if the indicator is above/below some limits for more than one candle. To check the current indicator value or it's value for older candle, use Condition. Blocks does not return something, they just pass if what they are supposed to do is true. By "pass" I mean that the orange output is active and next block(s) is executed right after this one, which in MQL language means that the function of one block calls the function of the next block

-
Ok think I get it now.. I needed condition block for stochastic and change right side to value for comparison it looks like.
Thanks!