Thursday, October 4, 2012

consolidation, lots of ways to do that, here we shall just use the current SMA-30 of the close


2
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
asked Nov 19 '11 at 22:23
Centaur's gravatar image Centaur
33 7

2
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
link
answered Nov 21 '11 at 15:52
Gord's gravatar image Gord
11.8k 319
1
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 :)
link
answered Nov 19 '11 at 23:35
Love_To_Trade's gravatar image Love_To_Trade
5.5k 418
1
I read this book on your previous recommendation and I agree it's very good. Thanks.
(Nov 20 '11 at 01:53) AgnosticTrader AgnosticTrader's gravatar image
Thanks AT :)
(Nov 20 '11 at 02:40) Love_To_Trade Love_To_Trade's gravatar image
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 BearTrader's gravatar image
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.

No comments:

Post a Comment