Stage Analysis Video Training Course

Code for Stock Scanners - Page

#53

Stockcharts - Mike Webster's Power Trend 21 Day EMA Rebound

This scan looks for a rebound off of the 21 day EMA of a stock that's in a Power Trend.

A power trend starts when these four things take place simultaneously on a major index:

  1. The low is above the 21-day exponential moving average (EMA) for at least 10 days.
  2. The 21-day EMA is above the 50-day simple moving average for at least five days.
  3. The 50-day line is in an uptrend (one day is sufficient).
  4. The market closes up for the day.
A power trend typically ends when the 21-day crosses back below the 50-day.

Code:
[type is stock]
and [country is US]
and [daily sma(50,daily close) > 1 days ago daily sma(50,daily close) ]
and [ Daily Close > Daily Open ]
and [Daily Low > Daily EMA(21,Daily Close)]
and [1 days ago Daily Low < 1 days ago Daily EMA(21,Daily Close)]
and [2 days ago Daily Low > 2 days ago Daily EMA(21,Daily Close)]
and [3 days ago Daily Low > 3 days ago Daily EMA(21,Daily Close)]
and [4 days ago Daily Low > 4 days ago Daily EMA(21,Daily Close)]
and [5 days ago Daily Low > 5 days ago Daily EMA(21,Daily Close)]
and [6 days ago Daily Low > 6 days ago Daily EMA(21,Daily Close)]
and [7 days ago Daily Low > 7 days ago Daily EMA(21,Daily Close)]
and [8 days ago Daily Low > 8 days ago Daily EMA(21,Daily Close)]
and [9 days ago Daily Low > 9 days ago Daily EMA(21,Daily Close)]
and [Daily EMA(21,Daily Close) > Daily SMA(50,Daily Close)]
and [1 days ago Daily EMA(21,Daily Close) > 1 days ago Daily SMA(50,Daily Close) ]
and [2 days ago Daily EMA(21,Daily Close) > 2 days ago Daily SMA(50,Daily Close) ]
and [3 days ago Daily EMA(21,Daily Close) > 3 days ago Daily SMA(50,Daily Close) ]
and [4 days ago Daily EMA(21,Daily Close) > 4 days ago Daily SMA(50,Daily Close) ]

// Quality Filters – Added to cut down unnecessary results
and [exchange != PINK]
and [group is not ETF]
and [Close > 5]
and [Daily SMA(200,Daily Volume) > 400000]

The scan could be edited to remove or edit the quality filters. i.e to see ETFs. Just comment out the line:

Code:
and [group is not ETF]

Or if you have volume requirements then edit the volume line number:

Code:
and [Daily SMA(200,Daily Volume) > 400000]

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.
Reply


Messages In This Thread
Code for Stock Scanners - by isatrader - 2014-04-21, 11:41 PM
2x Volume Scan - by isatrader - 2014-04-21, 11:45 PM
Ichimoku scan - by isatrader - 2014-04-21, 11:53 PM
Touch of 10 Week MA Scan - by isatrader - 2014-04-21, 11:58 PM
RE: Code for Stock Scanners - by Tryst - 2014-05-29, 11:42 PM
Strong Technical Attributes Scan - by isatrader - 2014-04-22, 12:05 AM
RE: Code for Stock Scanners - by isatrader - 2014-04-22, 12:22 AM
Buyable Gap Breakout - by isatrader - 2014-07-31, 09:41 PM
RE: Code for Stock Scanners - by Hiswealthy - 2016-08-28, 11:24 PM
RE: Code for Stock Scanners - by isatrader - 2016-08-28, 11:40 PM
RE: Code for Stock Scanners - by Hiswealthy - 2016-08-29, 10:04 PM
RE: Code for Stock Scanners - by ct197475 - 2018-07-27, 04:54 PM
RE: Code for Stock Scanners - by pcabc - 2018-07-27, 09:01 PM
RE: Code for Stock Scanners - by ct197475 - 2018-07-30, 10:09 AM
RE: Code for Stock Scanners - by keithbin - 2018-09-03, 03:09 PM
Stockcharts - Elder Impulse Scan - by isatrader - 2020-05-07, 10:27 AM
Improving Relative Strength >= 85 - by isatrader - 2020-05-24, 12:59 PM
Shakeout +3 - stockcharts scan - by isatrader - 2020-09-24, 10:22 AM
RE: Code for Stock Scanners - by collotennis - 2021-07-31, 08:21 AM
RE: Code for Stock Scanners - by CryptoNedley - 2022-04-18, 07:42 AM
RE: Code for Stock Scanners - by isatrader - 2022-04-18, 10:14 AM
RE: Code for Stock Scanners - by ferran - 2022-09-18, 12:07 AM
RE: Code for Stock Scanners - by isatrader - 2022-09-18, 12:26 AM
RE: Code for Stock Scanners - by stanhao138 - 2023-05-01, 02:58 PM
RE: Code for Stock Scanners - by pcabc - 2023-05-04, 02:24 PM
RE: Code for Stock Scanners - by isatrader - 2023-05-04, 11:22 PM
Pocket Pivot - Stockcharts - by isatrader - 2021-09-04, 03:30 PM
Stockcharts - Mike Webster's Power Trend 21 Day EMA Rebound - by isatrader - 2022-11-20, 01:38 AM
Significant Bar - by isatrader - 2021-09-29, 04:14 PM
RE: Custom Scans - by jv_investments - 2022-01-31, 06:54 PM
RE: Custom Scans - by jv_investments - 2022-01-31, 08:45 PM
RE: Custom Scans - by jv_investments - 2022-01-31, 09:14 PM
RE: Custom Scans - by isatrader - 2022-01-31, 09:36 PM

Forum Jump:


Users browsing this thread: 1 Guest(s)
//