Swings
the stock must be experiencing a minor decline/pullback
within the context of a uptrend
or
the stock must be experiencing a minor rally as part of a downtrend
Title: |
REVIVAL LONG (Track1) |
We use this scan to search for stock that has been in an uptrend but has been trading sideways for several days. With this scan we try to detect stocks for potential long swing trades. |
|
Code: |
MAV20 >=500000 AND | we stay away from stocks that trade less than 500,000 shares of the 20-day Volume Average to ensure liquidity (sometimes we use 250,000 instead, depending on market conditions) | |
| CLOSE>12 AND | to be sure we do not trade cheap stocks (sometimes we use 7$ instead, depending on market conditions) | ||
| CLOSE > SMAC15 AND CLOSE > SMAC50 AND |
to be sure the stock is still in an uptrend | ||
| (CLOSE1 - LOW1) <= 0.1 * (HIGH1- LOW1) AND |
to be sure that the sellers have tried to drive the stock down before the last trading day, with the closing price to have been in the bottom 10% of the trading range (sometimes we use 0.2 instead, depending on market conditions) | ||
| (CLOSE - LOW) >= 0.9 * (HIGH- LOW) |
to be sure that the buyers are in control the last trading day, the stocks closed up for the day, with the closing price in the top 10% of the trading range (sometimes we use 0.8 instead, depending on market conditions) | ||
Type(s): |
swings |
long |
|
| MAV20 >=500000 AND CLOSE>12 AND (CLOSE1 - LOW1) <= 0.1 * ( HIGH1- LOW1) AND ( CLOSE - LOW) >= 0.95* ( HIGH- LOW) AND CLOSE > SMAC15 AND CLOSE > SMAC50 |
copy the code from the left into your clipboard (CTRL-C) and paste the code into SwingTracker (CTRL-V) see how to copy/paste and have fun!!! |
Only trade what you like !
Example:
Title: |
REVIVAL SHORT (Track1) |
We use this scan to search for stock that has been in an downtrend but has been trading sideways for several days. With this scan we try to detect stocks for potential short swing trades. |
|
Code: |
MAV20 >=500000 AND | we stay away from stocks that trade less than 500,000 shares of the 20-day Volume Average to ensure liquidity (sometimes we use 250,000 instead, depending on market conditions) | |
| CLOSE>12 AND | to be sure we do not trade cheap stocks (sometimes we use 7$ instead, depending on market conditions) | ||
| CLOSE <SMAC15 AND CLOSE < SMAC50 AND |
to be sure the stock is still in an downtrend | ||
| (CLOSE1 - LOW1) >= 0.9 * (HIGH1- LOW1) AND |
to be sure that the buyers are in control before the last trading day, the stocks closed up for the day, with the closing price in the top 10% of the trading range (sometimes we use 0.8 instead, depending on market conditions) | ||
| (CLOSE - LOW) <= 0.1 * (HIGH- LOW) |
to be sure that the sellers have tried to drive the stock down the last trading day, with the closing price to have been in the bottom 10% of the trading range (sometimes we use 0.2 instead, depending on market conditions) | ||
Type(s): |
swings |
short |
|
| MAV20 >=500000 AND CLOSE>12 AND( CLOSE1 - LOW1) >= 0.9 * ( HIGH1- LOW1) AND ( CLOSE - LOW) <= 0.1 * ( HIGH- LOW) AND CLOSE< SMAC15 AND CLOSE < SMAC50 |
copy the code from the left into your clipboard (CTRL-C) and paste the code into SwingTracker (CTRL-V) see how to copy/paste and have fun!!! |
Only trade what you like !