@fabiobioware said in RSI condition about Value:
@roar just so I can see if I understand your entire sequence of screenshots, can you validate if what I say below is what your images say?
- Does the formula save the result of the difference between the current price and the previous price (ID1) in the case it means previous?
Yes. This sets up the desired slope. For example, rsi going from 55 to 60 will be enough for this system, because gap0 is 5. If RSI only goes to 57, the EA will do nothing as the slope is not big enough.
- The value saved by the formula in the variable (currentgap)> gap0 which has its value 5 means that if the value is 5x greater than itself, go to the next condition.
No, gap0 is the smallest acceptable gap (slope). It doesnt multiply anything.
- The value saved by the formula in the variable (currentgap)> lastgap, means that if the current value is greater than the last saved it goes to the next condition.
Yes. The EA will keep track of the gap changes. The first gap must be more than gap0, and every next gap must be more than before. This way we get the 5 (or more) consecutive up moves you wanted.
- combo> = (consec_rises) means that if all values are confirmed go to the next block?
Here we check that the gap has increased 5 times in a row. So, in order to pass to the buy block, the EA must have been running for at least 5 ticks, and them all must have been rising.
Sorry if I said something stupid, my friend, I am an apprentice close to you that I consider an expert in fxdreema.
Nothing to be sorry for. Stay curious!