Best buy stocks for intraday

Category: Screeners By: Nicolas Created: January 16, 2018, 12:22 AM
January 16, 2018, 12:22 AM
Screeners
3 Comments

This screener is a simple compilation of several conditions to identify the actions rising during the current day, based on detections of candle size (the most recent being larger than the last 7) and breakouts of the weekly levels and monthly.
A trend filter based on exponential moving averages is also present.

I came across this strategy by browsing the internet the other day, you will find below the corresponding screener code:

if DayOfWeek<DayOfWeek[1] then
 weeklyopen = open[0]
endif
If Month<>Month[1] then
 monthlyOpen = open[0]
endif
myrange = range
count=0
for i = 1 to 7 do
 if myrange>range[i] then
  count=count+1
 else
  break
 endif
next
c1 = count=7
c2 = close>open
c3 = close>close[1]
c4 = close[0]>weeklyopen
c5 = close[0]>monthlyopen
c6 = Volume[1]>10000
c7 = exponentialaverage[13]>exponentialaverage[26]
c8 = exponentialaverage[20]>exponentialaverage[50]

test = c1 and c2 and c3 and c4 and c5 and c6 and c7 and c8

screener[test]

 

Download
Filename: PRC_Best-Buy-Stocks-intraday.itf
Downloads: 938
Nicolas Master
I created ProRealCode because I believe in the power of shared knowledge. I spend my time coding new tools and helping members solve complex problems. If you are stuck on a code or need a fresh perspective on a strategy, I am always willing to help. Welcome to the community!
Author’s Profile

Comments

Logo Logo
Loading...