I am using the VWMA indicator. I would like to detect abrupt parabolic changes of direction like this one:
The entry would be trigger at the red arrow. So let's say that the green line was 5 bars before the red arrow.. I thought of verifying:
Close[0] < Close[5]
Close[1] < Close[4]
Close[2] < Close[3]
But that looks a bit sketchy. Is there a better solution?

Comment