EOD price reversal scan

Need help creating a EOD scanner for reversal in trend in either direction, can anybody help?

I can help , which language ?

I don’t have any knowledge of coding, maybe you can help with what parameters I need to use in Streak Scanner.

You need to write to [email protected] with a screenshot of the pattern with the other details for this.

zerodha pi scanner (the code given below works only between 3:15 to 3:30 pm EOD).

You need to set chart interval as Hourly and 1H

t = 0.75
r = 0.75
(((REF(MAX(HIGH, 6), 1) - REF(OPEN, 6)) > t * (REF(MAX(HIGH, 6), 1) - REF(MIN(LOW, 6), 1))) AND
((REF(MAX(HIGH, 6), 1) - LAST) > r * (REF(MAX(HIGH, 6), 1) - REF(MIN(LOW, 6), 1)))) OR
(((REF(OPEN, 6) - REF(MIN(LOW, 6), 1)) > t * (REF(MAX(HIGH, 6), 1) - REF(MIN(LOW, 6), 1))) AND
((LAST - REF(MIN(LOW, 6), 1)) > r * (REF(MAX(HIGH, 6), 1) - REF(MIN(LOW, 6), 1))))