Registered User Joined: 5/28/2014 Posts: 1
|
Hi,
could you assist me in creating an easy scan with a gravestone doji at the end of the day for stocks over $35 that has been in an uptrend for 14 days with a bolinger band
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
I am not quite sure how you want to define the uptrend or how you wanted to involve the Bollinger Bands. The following assumes a positive net change, linear regression slope, +DI above -DI, ADX at or above 25, a 14 bar high, and price closing above an upper Bollinger Band 20, 2.00.
C > 35 AND C > C13 AND 20 * GREATEST(O, C) < H + 19 * L AND H = MAXH14 AND FAVGC14 > AVGC14 AND DIPLUS14 > DIMINUS14 AND ADX14.14 >= 25 AND C > BBTOP(2, 20)
-Bruce Personal Criteria Formulas TC2000 Support Articles
|
Registered User Joined: 1/8/2018 Posts: 2
|
I need some help with an Easy Scan
I need to have the price drop 2 days straight while the Money Flow Index indicator rises 2 days straight
while the price is within 10% of the 52 week low.
THanks in Advance
Randy
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
Please try the following.
TrueInRow(C < C1 AND SUM(IIF(H + L + C > H1 + L1 + C1, (H + L + C) * V, 0), 20) / SUM((H + L + C) * V, 20) > SUM(IIF(H1 + L1 + C1 > H2 + L2 + C2, (H1 + L1 + C1) * V1, 0), 20) / SUM((H1 + L1 + C1) * V1, 20), 2) = 2 AND C <= 1.1 * MINL252
-Bruce Personal Criteria Formulas TC2000 Support Articles
|