Hi all,
I would like to know if it would be possible to screen on a daily chart, where my Momentum Indicator is 13 and greater than 0, for a weekly Momentum(9) >= 0?
I hope I can explain it with a piece of code:
MomDaily = Momentum[13](close)
MomWeekly = Momentum[9](close)
// Scan for Momentum in the weekly timeframe on a daily Chart?
c1 = MomDaily > 0.1
c2 = MomWeekly >0.1
SCREENER[c1 AND c2 ]
Best regards
Mario
To test a condition into a specific timeframe in ProScreener, you can use the keyword “timeframe“. You’ll find an example in the documentation page of this keyword: https://www.prorealcode.com/documentation/timeframe/