Hello
Is a multiframe screener possible?
In the next program, only the 5 minutes works.
I want to return actions when the macd goes from negative to positive within 2 timeframe.
Thank you for your help.
timeframe (5 minutes)
mymacd = MACD[12,26,9](close)
c1 = mymacd crosses over 0
timeframe (15 minutes)
c2 = mymacd crosses over 0
SCREENER [c1 and c2]
Does this work …
timeframe (5 minutes)
mymacd5 = MACD[12,26,9](close)
c1 = mymacd5 crosses over 0
timeframe (15 minutes)
mymacd15 = MACD[12,26,9](close)
c2 = mymacd15 crosses over 0
SCREENER [c1 and c2]
Of course, you had to define a different variable.
Good job, thank you Grahal.