Hello, I want to build a screener which looks at chande momentum – i want to see how many times it has stayed above value 15 in the past 90 days 50% of the time. So it would return any stock that has been above 15 45 days out of 90 in this instance. any help is appreciated with this.
There you go:
ChandeMom = Chandle[20](close) > 15
Result = summation[90](ChandeMom)
SCREENER[Result >= 45](Result AS "Periods")
Thankyou Roberto, may i ask does chandle [20] refer to the moving average of the osc?
Yes, it does, as from attached pic.
Actually this is the only datum that Chande Oscillator returns.