Moving averages daily
Forums › ProRealTime English forum › ProScreener support › Moving averages daily
- This topic has 6 replies, 2 voices, and was last updated 1 year ago by robertogozzi.
Viewing 7 posts - 1 through 7 (of 7 total)
-
-
05/10/2023 at 9:42 AM #214451Hello,I would like to see all the assets that meet the following requirements (daily timeframe)Stoch RSI 14 needs to be above 70The SMA5, SMA10, EMA20 need to be green (going up)The current price candle needs to cross over the SMA20Daily average volume above 1 millionPrice needs to be above 10Thanksgr Marco05/10/2023 at 9:59 AM #214452
There you go:
1234567891011121314151617181920TimeFrame(Daily)lengthRSI = 14 //RSI periodlengthStoch = 14 //Stochastic periodmyRSI = RSI[lengthRSI](close)MinRSI = lowest[lengthStoch](myrsi)MaxRSI = highest[lengthStoch](myrsi)StochRSI = ((myRSI-MinRSI) / (MaxRSI-MinRSI))*100Sma5 = average[5,0](close)Sma10 = average[10,0](close)Sma20 = average[20,0](close)VolSMA = average[100,0](volume)c1 = StochRSI > 70c2 = Sma5 > Sma5[1]c3 = Sma10 > Sma10[1]c4 = Sma20 > Sma20[1]c5 = close CROSSES OVER Sma20c6 = Volsma > 1000000c7 = close > 10Cond = c1 AND c2 AND c3 AND c4 AND c5 AND c6 AND c7SCREENER[Cond]I tested it on a daily chart, selecting ALL the available indices and markets. Only 3-4 signals were returned, due to strict conditions, which you can modify whenever you need to.
05/10/2023 at 11:31 AM #21445505/10/2023 at 11:36 AM #21445705/10/2023 at 3:04 PM #214473My fault, I misread that line.
There you go:
123456789101112131415161718192021TimeFrame(Daily)lengthRSI = 14 //RSI periodlengthStoch = 14 //Stochastic periodmyRSI = RSI[lengthRSI](close)MinRSI = lowest[lengthStoch](myrsi)MaxRSI = highest[lengthStoch](myrsi)StochRSI = ((myRSI-MinRSI) / (MaxRSI-MinRSI))*100Sma5 = average[5,0](close)Sma10 = average[10,0](close)Sma20 = average[20,0](close)Ema20 = average[20,1](close)VolSMA = average[100,0](volume)c1 = StochRSI > 70c2 = Sma5 > Sma5[1]c3 = Sma10 > Sma10[1]c4 = Ema20 > Ema20[1]c5 = close CROSSES OVER Sma20c6 = Volsma > 1000000c7 = close > 10Cond = c1 AND c2 AND c3 AND c4 AND c5 AND c6 AND c7SCREENER[Cond]05/24/2023 at 10:05 AM #21511205/24/2023 at 11:26 AM #215114I added line 20:
12345678910111213141516171819202122TimeFrame(Daily)lengthRSI = 14 //RSI periodlengthStoch = 14 //Stochastic periodmyRSI = RSI[lengthRSI](close)MinRSI = lowest[lengthStoch](myrsi)MaxRSI = highest[lengthStoch](myrsi)StochRSI = ((myRSI-MinRSI) / (MaxRSI-MinRSI))*100Sma5 = average[5,0](close)Sma10 = average[10,0](close)Sma20 = average[20,0](close)Ema20 = average[20,1](close)VolSMA = average[100,0](volume)c1 = StochRSI > 70c2 = Sma5 > Sma5[1]c3 = Sma10 > Sma10[1]c4 = Ema20 > Ema20[1]c5 = close CROSSES OVER Sma20c6 = Volsma > 1000000c7 = close > 10c8 = BollingerBandWidth[20](close) >= 0.1Cond = c1 AND c2 AND c3 AND c4 AND c5 AND c6 AND c7 AND C8SCREENER[Cond] -
AuthorPosts
Viewing 7 posts - 1 through 7 (of 7 total)
Find exclusive trading pro-tools on
Similar topics: