Screener for bullish stocks

Category: Screeners By: cristofer Created: July 6, 2020, 8:46 AM
July 6, 2020, 8:46 AM
Screeners
11 Comments

Simple and effective way to find bullish stocks.

It works perfect for Day Trading

Formula is:

Price > EMA(50) > EMA(100) > EMA(150)

Volume > 50% Previous Volume && Volume > SMA(20)

 

indicator1 = ExponentialAverage[50](close)
indicator2 = ExponentialAverage[100](close)
indicator3 = ExponentialAverage[150](close)
c1 = (indicator1 > indicator2)
c2 = (indicator2 > indicator3)

indicator5 = Volume
indicator6 = Average[20](Volume)

c3 = (indicator5 > indicator6)

indicator7 = Volume
c4 = (indicator5 > indicator7[1] * 1.5)

indicator8 = Close
c5 = indicator8 > indicator1

c6 = (indicator5 > 500.000)

c7 = (indicator8[1] > indicator1)

indicator9 = Open
c8 = (indicator8 > indicator9)

SCREENER[c1 AND c2 AND c3 AND c4 AND c5 AND c6 AND c7 AND c8] ((close/DClose(1)-1)*100 AS "%cgh yesterday")

 

Download
Filename: Screener-for-bullish-stocks.itf
Downloads: 422
cristofer Average
This author is like an anonymous function, present but not directly identifiable. More details on this code architect as soon as they exit 'incognito' mode.
Author’s Profile

Comments

Logo Logo
Loading...