Bug with fractals indicator
-
I was working with the fractals indicator and I found a bug in the 'Fractal down' option. Please look at block 6:
https://fxdreema.com/shared/jR6nFzald
This project is supposed to identify the last active fractal and then open a trade if price crosses it. It works correctly for 'Fractal up' option. However, 'Fractal down' is incorrectly identified every single time.
-
@l-andorrà fractal indicator has a value for every candle, even if there is no arrow visible. That value will be 0, and naturally 0 is always below candle high.
This is why the correct way to use fractal is simply with condition:
fractal up/down != 0 -
I didn't know that. I was sure it was an object generator indicator. Now everything makes sense. Thank you very much!

-
moreover, fractal repaints
sometimes you have to catch the signal on the third candle
Pipholic SR indicator is based on it -
I knew that about fractals. I already considered to take the 3rd candle.
