billrider321 70 posts msg #66245 - Ignore billrider321 modified |
8/15/2008 8:34:30 PM
can somebody guide me for this filters ..new to sf and loving it
FITER 1 -
( 100 * (C - C1) / C1) >= 8 AND V >3000
So we are looking for stock which is up 8% or more on 300000 plus volume.
Now to further reduce this list we take only stocks with 300% plus volume surge as compared to 100 day average volume. If you look at a scan for it in Telechart it would be:
(100 * V / AVGV100) >= 300
FILTER2 -
DT starting point is stocks which meet two conditions:
Up 100% plus from 52 week low. (where the stock has traded for less than 52 week, the low of the number of days the stock traded for)
Current price is within 25% of high price during the 100% plus move.
The second condition ensures that we only enter a trend which has resilience . A stock can go up 800% and retrace more than 25% and will still be 100% plus from 52 week low, but such stocks make poor candidates as their predominant trend has reversed.
Double Trouble cannot be scanned for in Telechart. You have to understand the conditions clearly to replicate it in other software's:
The stock currently is up 100% or more from its 52 week low. When stock has traded for less than 52 week, it has doubled from whatever period it traded for
It is within 25% of highest move during the rise from 52 week low or low of whatever period it traded for. (Please read this condition carefully and understand it. )
On the universe of stocks meeting above two conditions we apply our breakout plus weakness condition filter
( 100 * (C - C1) / C1) >= 4 AND V >= 1000 AND V > V1 and (100 * (C1 - C22) / C22) <= 10 and (100 * (C1 - C11) / C11)<= 10
This scan has four conditions:
4% breakout
Volume breakout
A month weakness condition
10 day weakness condition
On any given day this scan will give you 0 to20 candidates.
To narrow thsi list we use:
Volume surge
Distance from high during 100% move. Within 8% preferred.
Stock with highest and lowest yearly growth
Relative linearity.
Float
Modified Double Trouble
However many of you have trouble finding a software to do the exact calculations for Double Trouble. To overcome such problem here is a Modified Double Trouble method.
This is extremely Telechart friendly version.
We start with the relative strength scan
(C - AVGC135 ) / AVGC135
Select the top 5% ranked by the above scan value.
Apply liquidity condition:
AVGC20 * AVGV20 >= 2500
On that universe apply our universal breakout scan:
( 100 * (C - C1) / C1) >= 4 AND V >= 1000 AND V > V1 AND (100 * (C1 - C22) / C22) <= 10 AND (100 * (C1 - C11) / C11) <= 10
|
guru_trader 485 posts msg #66296 - Ignore guru_trader modified |
8/16/2008 7:43:11 PM
To get you started ...
|