Inside Week Scan
Forums › ProRealTime English forum › ProScreener support › Inside Week Scan
- This topic has 10 replies, 2 voices, and was last updated 3 years ago by
dkotecha1.
-
-
04/01/2022 at 2:50 PM #190985
Hi Guys,
I am currently using the below scans to find Inside Candles on Weekly and Monthly timeframes
c1= high[0] < high[1]
c2= low[0] > low[1]
insidebar = c1 and c2
screener[insidebar]
This provides inside candles for the prior week , however if want to run the scan on the weekend for the current week is there a way to modify this ?
Any help would be appreciated
04/01/2022 at 4:45 PM #190993This will only work on Mondays:
1234567891011121314timeframe(Daily)IF DayOfWeek < DayOfWeek[1] THENPreviousHigh = high[1]PreviousLow = low[1]ENDIFc1 = 0c2 = 0IF DayOfWeek = 1 OR (DayOfWeek > 1 AND DayOfWeek < DayOfWeek[1]) THENc1 = high[0] < PreviousHighc2 = low[0] > PreviousLowENDIFtimeframe(default)insidebar = (c1 and c2)screener[insidebar]04/05/2022 at 6:40 PM #19126604/06/2022 at 9:19 AM #191312Try this one:
1234567891011121314timeframe(Daily)IF OpenDayOfWeek = 5 THENPreviousHigh = highPreviousLow = lowENDIFc1 = 0c2 = 0IF DayOfWeek > 5 OR DayOfWeek = 0 THENc1 = high < PreviousHighc2 = low > PreviousLowENDIFtimeframe(default)insidebar = (c1 and c2)screener[insidebar]04/10/2022 at 6:50 PM #19153504/10/2022 at 10:05 PM #191544You’ll have to apply it to instruments/assets being traded on Saturday and Sunday.
04/11/2022 at 10:57 AM #19156004/11/2022 at 11:43 AM #191562You can scan anytime, but when the market is closed, you will be reported conditions at closing time (till it opens again).
04/11/2022 at 12:14 PM #191573not sure I follow, are you saying that on a weekend the weekly candle has not closed ? Therefore I need to wait till monday ? and there is no way to screen based on the week having closed on last trading day which would be friday ?
04/11/2022 at 2:15 PM #191583Screeners scan live markets, how could they scan price movements when markets are closed?
04/11/2022 at 3:46 PM #191588 -
AuthorPosts
Find exclusive trading pro-tools on