Price has a consolidation period for at least 30
bars (any time) and ADX is
less than 15 during the consolidation period and
Both DMI lines are above ADX
|
You could start with something like this and then modify the parameters to suit.
// scan intro, limits price and liquidity [type = stock] and [Close >=5] and [Close <=100] and [SMA(50,close) * SMA(50,volume) > 500000] // consolidation, lots of ways to do that, here we shall just use the current SMA-30 of the close // and require the close for the previous 30 days to be within +/- 1% and [max (30, daily close) <= daily sma(30,daily close) * 1.01] and [min (30, daily close) >= daily sma(30,daily close) * 0.99] // Max ADX line value to be less than 15 for the past 30 days. and [Max (30, ADX Line (14)) < 15.0] // now current Plus and Minus DI's to be above, greater than, the current ADX line and [Plus DI (14) > ADX Line (14)] and [Minus DI (14) >ADX Line (14)] hope this gives you some ideas, Cheers Gord |
If you want to know everything there is to know
about the ADX indicator
the book "ADXcellence" is
THE book. Its expensive but its worth every penny. I
bought it used on Amazon for a fraction of the list
price but here is where you can get one: click
here
No, I don't work for the guy selling the books. I just have a thirst for trading knowledge. Cheers & happy trading :)
1
I read this book on your previous recommendation and I agree it's very good.
Thanks.
(Nov 20 '11
at 01:53) AgnosticTrader
Read the book too - it's very good and worth it if
you can get your hands on it.
(May 14 at
21:21) BearTrader
For what it is worth, Stockcharts also sells this
book in their terrific store: http://store.stockcharts.com/products/adxcellence
it is the same price as the store you linked to however members can use their 10% off coupon from the Market Message area to knock off $15. |