Stage Analysis Video Training Course

Code for Stock Scanners - Page 4

#25

Elder Impulse on Green & Close >+1ATR - Stockcharts

Code:
[type = stock]
and [country = US]
and [Daily SMA(200,Daily Volume) > 400000]
and [Daily Elder Bar Green = 1]
and [Yesterdays close <= Yesterdays Upper Kelt Chan(21,1,10)]
and [Todays close > Todays Upper Kelt Chan(21,1,10)]
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 [exchange != PINK]

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.
#26

Improving Relative Strength >=85 (+1 day change) - 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.
#27

Close Above 21 Day EMA (Pullback Buy) US - Stockcharts

Code:
[type = stock]
and [country = US]
and [Daily Close > Daily EMA(21,Daily Close)]
and [1 day ago Close < 1 day ago EMA(21,Daily Close)]
and [2 day ago Close > 2 day ago EMA(21,Daily Close)]
and [Daily Close > Daily SMA(50,Daily Close)]
and [Daily SMA(200,Daily Volume) > 400000]
and [Daily close > [[Daily high + Daily low] / 2]]
and [EMA(21) > SMA(50)]
and [Close > SMA(50)]
and [group is not ETF]
and [Close > 5]
and [exchange != PINK]

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.
#28

Cup & Handle Forming (Within 2%) - Stockcharts

Code:
[type = stock]
and [country is US]
and [SMA(50,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 > yesterdays Upper Price Chan(20) * 0.98]
and [close > yesterdays Upper Price Chan(50) * 0.98]
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.
#29

Double Top Breakout and Rising 150 Day MA - Stockcharts

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]
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.
#30

Undercut & Rally (U&R) / Wyckoff Spring Type Action - Stockcharts

This scan looks for Spring type action / Undercut and Rally type behaviour and is most effective on the days when the market has pulled back towards a logical area of support, as on that day it will produce a large amount of results (100+), compared to typical day when it will only produce between 5 to 30 results. So when it produces a large sample of over 100 results it can often signify a swing low attempt, and so I create a chartlist from the results, and then begin monitoring them in the following days to see if they spring strongly higher or if they go through a testing period that then forms a higher low in the coming days / weeks. If however, the majority quickly start making lower lows below the low of the spring attempt day, then you know that it failed and wasn't a swing low, but just a pause / reaction in the downtrend.

Code:
[type = stock]
and [country = US]
and [exchange != PINK]
and [Daily SMA(200,Daily Volume) > 400000]
and [low < Lower Price Chan(50)]
and [close > Lower Price Chan(50)]
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]

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.
#31

Volume Daily 2x Minimum - US Stocks 2020 - Stockcharts

Code:
[type is stock]
and [country = US]
and [Daily Close > Yesterdays Daily Close]
and [Daily SMA(10,Daily Close) > Yesterdays Daily SMA(10,Daily Close)]
and [volume > sma(200, volume) * 2]
and [exchange != PINK]
and [Daily SMA(200,Daily Volume) > 400000]
and [group is not ETF]
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.
#32

Pocket Pivot - Stockcharts

Code:
// Criteria to only scan leading stocks

[type = stock] and
[daily sma(40,daily volume) > 500000] and
[daily sma(40,daily close) > 10] and
[daily close > daily sma(200,daily close)] and

// Criteria to verify the day's volume should be larger than the highest down volume day over the prior 10 days
[daily volume > 1 days ago daily volume * 1 days ago ROC(1) /absval(1 days ago ROC(1))* -1] and
[daily volume > 2 days ago daily volume * 2 days ago ROC(1) /absval(2 days ago ROC(1))* -1] and
[daily volume > 3 days ago daily volume * 3 days ago ROC(1) /absval(3 days ago ROC(1))* -1] and
[daily volume > 4 days ago daily volume * 4 days ago ROC(1) /absval(4 days ago ROC(1))* -1] and
[daily volume > 5 days ago daily volume * 5 days ago ROC(1) /absval(5 days ago ROC(1))* -1] and
[daily volume > 6 days ago daily volume * 6 days ago ROC(1) /absval(6 days ago ROC(1))* -1] and
[daily volume > 7 days ago daily volume * 7 days ago ROC(1) /absval(7 days ago ROC(1))* -1] and
[daily volume > 8 days ago daily volume * 8 days ago ROC(1) /absval(8 days ago ROC(1))* -1] and
[daily volume > 9 days ago daily volume * 9 days ago ROC(1) /absval(9 days ago ROC(1))* -1] and
[daily volume > 10 days ago daily volume * 10 days ago ROC(1) /absval(10 days ago ROC(1))* -1] and

//Criteria to see jump through 10 or 50 d SMA
[[yesterday's daily close < yesterday's daily sma(10,daily close)] and [daily close > daily sma(10,daily close)]

or

[yesterday's daily close < yesterday's daily sma(50,daily close)] and [daily close > daily sma(50,daily close)]]

and [country = US]
and [Daily Close > Yesterdays Daily Close]
and [exchange != PINK]
and [group is not ETF]
and [Close > 3]

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)