Stage Analysis Video Training Course

Code for Stock Scanners - Page 3

#17

Stockcharts - Elder Impulse Scan

The following will scan find stocks that are turning from Elder Impulse Red or Elder Impulse Blue to Elder Impulse Green, and also crossing over the +1 ATR level in the Keltner Channel at the same time. Plus a bunch of other filters which you should be able to see in the code below like a rising 150 day moving average etc.

The purpose of this scan is to find stocks at an earlier point than the breakout, for either short term trading opportunities or to find stocks for your watchlist for future breakouts.

Code:
[type = stock]
and [country = US]
and [Daily SMA(200,Daily Volume) > 400000]
and [Daily Elder Bar Green = 1]
and [Yesterdays Daily Elder Bar Green = 0]
and [Yesterdays close <= Yesterdays Upper Kelt Chan(22,1,10)]
and [Todays close > Todays Upper Kelt Chan(22,1,10)]
and [SMA(150) > yesterdays SMA(150)]
and [SMA(200) > yesterdays SMA(200)]
and [SMA(150) > SMA(200)]
and [group is not ETF]

To tweak the scan to only target particular groups you need to add another line with the stockcharts group name which you can find by clicking the SECTORS & INDUSTRIES dropdown and then clicking the Add button. For example if you only wanted to run the scan on the Gold Miners sector then you would add the following:

Code:
and [group is GoldMining]

if you add a specific group it will return 0 results on most days, but when the stocks in the sector are in the right position it will return results.

isatrader

Fate does not always let you fix the tuition fee. She delivers the educational wallop and presents her own bill - Reminiscences of a Stock Operator.
#18

Stockcharts - P&F Double Top Breakout and Rising 150 Day MA

This stockcharts scan looks for stocks making a P&F Double Top Breakout and that have a Rising 150 Day Moving Average.

Code:
[daily double top is true]
and [yesterdays daily double top is false]
and [country is US]
and [market cap > 1]
and [exchange != PINK]
and [type is stock]
and [Daily SMA(200,Daily Volume) > 400000]
and [SMA(150) > yesterdays SMA(150)]
and [SMA(200) > yesterdays SMA(200)]
and [SMA(150) > SMA(200)]
and [group is not ETF]

isatrader

Fate does not always let you fix the tuition fee. She delivers the educational wallop and presents her own bill - Reminiscences of a Stock Operator.
#19

Stockcharts - Cup and Handle Breakout Scan

This stockcharts scan is an attempt to look for stocks making breakouts after a consolidation of at least 10 days, and are an attempt to find cup and handle or VCP patterns.

Code:
[type = stock]
and [country is US]
and [SMA(200,volume) > 400,000]
and [exchange != PINK]
and [group IS NOT ETFNOUI]
and [close > Upper Price Chan(20)]
and [close > Upper Price Chan(50)]
and [Upper Price Chan(20) = 5 days ago Upper Price Chan(20)]
and [SMA(150) > 10 days ago SMA(150)]

isatrader

Fate does not always let you fix the tuition fee. She delivers the educational wallop and presents her own bill - Reminiscences of a Stock Operator.
#20

Stockcharts - Cup and Handle Forming Scan

This stockcharts scan is an attempt to look for stocks making a consolidation of at least 5 days within 5% of their 20 and 50 day highs, and is an attempt to find cup and handle or VCP patterns before the breakout.

Code:
[type = stock]
and [country is US]
and [SMA(200,volume) > 400,000]
and [exchange != PINK]
and [group IS NOT ETFNOUI]
and [close < Upper Price Chan(20)]
and [close < Upper Price Chan(50)]
and [Upper Price Chan(20) = 5 days ago Upper Price Chan(20)]
and [SMA(150) > yesterdays SMA(150)]
and [close > yesterdays Upper Price Chan(20) * 0.95]
and [close > yesterdays Upper Price Chan(50) * 0.95]

isatrader

Fate does not always let you fix the tuition fee. She delivers the educational wallop and presents her own bill - Reminiscences of a Stock Operator.
#21

Improving Relative Strength >= 85

This stockcharts scan is an attempt to look for stocks with improving relative strength that's changed +1% from as score of 85% or greater today. This can be obviously be tweaked to suit different preferences. But will catch every strong RS stock that's improving in Relative Strength as long as it has an SCTR rating in stockcharts.

Code:
[SCTR >= 85]
and [today's SCTR  > [yesterday's SCTR + 1]]
and [country is US]
and [exchange != PINK]
and [type is stock]
and [Daily SMA(200,Daily Volume) > 400000]
and [SMA(150) > yesterdays SMA(150)]
and [SMA(200) > yesterdays SMA(200)]
and [SMA(150) > SMA(200)]
and [group is not ETF]
and [Close > SMA(50)]
and [Close > SMA(150)]
and [Close > SMA(200)]
and [Close > 5]

isatrader

Fate does not always let you fix the tuition fee. She delivers the educational wallop and presents her own bill - Reminiscences of a Stock Operator.
#22

Shakeout +3 - stockcharts scan

This stockcharts scan is an attempt to look for stocks making the Jesse Livermore early entry point known as the Shakeout +3.

To do this I'm taking advantage of stockcharts ability to use P&F charts in the scans, as the Shakeout + 3 pattern can be most easily spotted by finding the P&F Bear Trap signal. This code in the scan can be tweaked to suit different preferences. But the additional parameters make sure that it only targets stocks that are already in an uptrend and are pulling back.

Code:
[country is US]
and [exchange != PINK]
and [type is stock]
and [Daily SMA(200,Daily Volume) > 400000]
and [SMA(150) > yesterdays SMA(150)]
and [SMA(200) > yesterdays SMA(200)]
and [SMA(150) > SMA(200)]
and [group is not ETF]
and [Close > 5]
and [Daily PnF Bear Trap is true]
and [Yesterdays PnF Bear Trap is FALSE]

isatrader

Fate does not always let you fix the tuition fee. She delivers the educational wallop and presents her own bill - Reminiscences of a Stock Operator.
#23

RE: Code for Stock Scanners

Thought this was the appropriate thread for this-

I just came across this stage analysis screener, wondering if you're familiar with it?

cheers

#24

Cup and Handle Breakout - Stockcharts

Code:
[type = stock]
and [country is US]
and [SMA(200,volume) > 400,000]
and [exchange != PINK]
and [group IS NOT ETF]
and [close > Upper Price Chan(20)]
and [close > Upper Price Chan(50)]
and [Upper Price Chan(20) = 5 days ago Upper Price Chan(20)]
and [SMA(150) > yesterdays SMA(150)]
and [Close > 5]

isatrader

Fate does not always let you fix the tuition fee. She delivers the educational wallop and presents her own bill - Reminiscences of a Stock Operator.


Forum Jump:


Users browsing this thread: 1 Guest(s)