Registered User Joined: 10/31/2018 Posts: 2
|
Hey.
Is it possible to make a scan that search for stocks that are trading much more than the usual range. I'm talking about 2-3 times bigger "daily" candle bars. Something like the screesnhot.
https://gyazo.com/a6f5174e56991a241910e831cbe590ec
Thanks in advance.
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
If you just want a bar that is more than twice the average over say the last 21 bars.
H - L > 2 * AVG(H1 - L1, 21)
If you also has to be a bullish engulfing pattern.
C > O1 AND O1 > C1 AND C1 > O AND L = MINL5 AND H - L > 2 * AVG(H1 - L1, 21)
-Bruce Personal Criteria Formulas TC2000 Support Articles
|
Registered User Joined: 10/31/2018 Posts: 2
|
Thanks so much Bruce!
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
You're welcome.
-Bruce Personal Criteria Formulas TC2000 Support Articles
|