Gold Customer
Joined: 9/12/2017 Posts: 10
|
Hi,
I am looking for stocks:
for bullish setups:
close in the top 25% of the range ( => near the high of the day) and closes above the previous 20 day high
the stocks makes this day a new 20day high
volume > 150 % of average daily volume
the body of the candle big: ( close - open ) is at leat 2 times ATR(14) and close above the open
For bearish setups:
close in the bottom 25% of the dayrange
the stock makes this day a new 20 day low and closes below the previous 20 daylow
volume > 150% of average daily volume
the body of the candle is big ( close - open) is at least 2 times ATR(14) and close is below the open.
Thank you !
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
Please try the following Condition Formulas.
Bullish Setups:
STOC1 >= 75 AND C > MAXH20.1 AND V > 1.5 * AVGV21 AND C - O >= 2 * ATR14 AND C > O
Bearish Setups:
STOC1 <= 25 AND C < MINL20.1 AND V > 1.5 * AVGV21 AND O - C >= 2 * ATR14 AND O > C
-Bruce Personal Criteria Formulas TC2000 Support Articles
|
Gold Customer
Joined: 9/12/2017 Posts: 10
|
Thank you Bruce
The problem with comma's and points ( Non-us user ) remains unfortunately.
I solved it by taking 2 times volume instead of 1.5
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
I am happy to read you were able to resolve the issue on your own. Another option would have been to just multiply both sides of that part of the formula by 10 to get rid of the decimal marker.
Bullish Setups:
STOC1 >= 75 AND C > MAXH20.1 AND 10 * V > 15 * AVGV21 AND C - O >= 2 * ATR14 AND C > O
Bearish Setups:
STOC1 <= 25 AND C < MINL20.1 AND 10 * V > 15 * AVGV21 AND O - C >= 2 * ATR14 AND O > C
-Bruce Personal Criteria Formulas TC2000 Support Articles
|
Gold Customer
Joined: 9/12/2017 Posts: 10
|
Ok Bruce,
Very good to have your help.
Happy trading !
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
You're welcome.
-Bruce Personal Criteria Formulas TC2000 Support Articles
|