screener for trend in birth
Forums › ProRealTime English forum › ProScreener support › screener for trend in birth
- This topic has 9 replies, 3 voices, and was last updated 6 years ago by Racine.
Viewing 10 posts - 1 through 10 (of 10 total)
-
-
07/27/2018 at 6:00 PM #76917
good evening to all, I come to ask for help creating a screener to look for trends in birth that I think must have these conditions:
1) prices above the 200 period moving average2) RSI (21) lower than line 50 (RSI (21) <50) and passes over line 50 (RSI (21)> 50)3) the candle that exceeds the 50 line of the RSI upwards must also pass the KIJUN SEN line of the ICHIMOKU indicator from the bottom true high4) It may be good that it is in progress, closing for 1 or 2 or 3 days.NB: this is for the uptrend if possible also for the contrary, both for the bearish trend.I also added a file to see a little betterWaiting for a auito thank you all07/28/2018 at 10:14 AM #76942What do you mean at point 4) ?
07/28/2018 at 5:42 PM #76985hello Roberto thanks for the thought, at 4) I want to say that the screener shows me too the actions that have responded to these conditions today, yesterday or two days ago (I do not know if it is so in terms of coding [0], [1 ] ,[2] )
thanks again in advance
07/31/2018 at 10:03 AM #77152There you go
1234567891011121314151617181920212223242526272829// Ichimoku settings////Tenkansen = (highest[9](high) + lowest[9](low)) / 2 //Fast avgKijunsen = (highest[26](high) + lowest[26](low)) / 2 //Slow avg//SpanA = (tenkansen[26] + kijunsen[26]) / 2//SpanB = (highest[52](high[26]) + lowest[52](low[26])) / 2//Chikou = close[26]// Longb1 = close > average[200,0](close)b2 = Rsi[21](close) CROSSES OVER 50b3 = close CROSSES OVER Kijunsenbx = summation[3](b1 AND b2 AND b3) //conditions met within the last 3 bars// Shorts1 = close < average[200,0](close)s2 = Rsi[21](close) CROSSES UNDER 50s3 = close CROSSES UNDER Kijunsensx = summation[3](s1 AND s2 AND s3) //conditions met within the last 3 barsx = 0IF bx THENx = 1 //1 = longELSIF sx THENx = 2 //2 = shortENDIFSCREENER [x] (x AS "Signal")07/31/2018 at 3:22 PM #7719908/01/2018 at 11:44 AM #7728708/01/2018 at 11:49 AM #7728908/01/2018 at 12:11 PM #7729608/01/2018 at 12:27 PM #77299You just need to duplicate the screener and rename them differently, then removing the code not pertaining to each one:
LONG only1234567891011121314151617181920// Ichimoku settings////Tenkansen = (highest[9](high) + lowest[9](low)) / 2 //Fast avgKijunsen = (highest[26](high) + lowest[26](low)) / 2 //Slow avg//SpanA = (tenkansen[26] + kijunsen[26]) / 2//SpanB = (highest[52](high[26]) + lowest[52](low[26])) / 2//Chikou = close[26]// Longb1 = close > average[200,0](close)b2 = Rsi[21](close) CROSSES OVER 50b3 = close CROSSES OVER Kijunsenbx = summation[3](b1 AND b2 AND b3) //conditions met within the last 3 barsx = 0IF bx THENx = 1ENDIFSCREENER [x] (x AS "Signal")SHORT only1234567891011121314151617181920// Ichimoku settings////Tenkansen = (highest[9](high) + lowest[9](low)) / 2 //Fast avgKijunsen = (highest[26](high) + lowest[26](low)) / 2 //Slow avg//SpanA = (tenkansen[26] + kijunsen[26]) / 2//SpanB = (highest[52](high[26]) + lowest[52](low[26])) / 2//Chikou = close[26]// Shorts1 = close < average[200,0](close)s2 = Rsi[21](close) CROSSES UNDER 50s3 = close CROSSES UNDER Kijunsensx = summation[3](s1 AND s2 AND s3) //conditions met within the last 3 barsx = 0IF sx THENx = 1ENDIFSCREENER [x] (x AS "Signal")1 user thanked author for this post.
08/01/2018 at 9:17 PM #77372 -
AuthorPosts
Viewing 10 posts - 1 through 10 (of 10 total)
Find exclusive trading pro-tools on
Similar topics: