Can someone help me with the code for a multiple timeframe screenter like this:
Hourly Stochastic (50,5) < 40 and daily Stochastic (50,5) > 60
Thank you for your help.
There you go:
Timeframe(1 Day)
DailyK = Stochastic[50,5](close)
//DailyD = Average[3](Stochastic[50,5](close))
Timeframe(1 Hour)
HourlyK = Stochastic[50,5](close)
//HouryD = Average[3](Stochastic[50,5](close))
Timeframe(default)
Cond = (DailyK > 60) AND (HourlyK < 40)
SCREENER[Cond]