Hi,
I´m searching for a screener that can detect on given markets bullish and bearish stochastic crosses. So far I have not found anything.
Any one could pls help by sharing the code or indicating me were I can buy it ?
Thanks
Mariano
There you go:
myStochastic = Stochastic[14,3](close)
mySignal = average[6,0](myStochastic)
Result = 0
IF myStochastic CROSSES OVER mySignal THEN
Result = 1
ELSIF myStochastic CROSSES UNDER mySignal THEN
Result = 2
ENDIF
SCREENER[Result AND (high <> low)](Result AS "1=Up,2=Down")