Registered User Joined: 6/15/2015 Posts: 21
|
Hey Bruce,
I'm looking for a PCF that can find me stocks that have a range of at least 30 cents from High to Low of past 28 candles.
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
The formula is pretty low if you mean the highest high and lowest low over those 28 candles.
MAXH28 - MINL28 >= .3
Or if you mean the average range of the candles is at least 30 cents.
AVGH28 - AVGL28 >= .3
But you have to check each bar individually if all 28 candles need to have a range of at least 30 cents.
H - L >= .3 AND H1 - L1 >= .3 AND H2 - L2 >= .3 AND H3 - L3 >= .3 AND H4 - L4 >= .3 AND H5 - L5 >= .3 AND H6 - L6 >= .3 AND H7 - L7 >= .3 AND H8 - L8 >= .3 AND H9 - L9 >= .3 AND H10 - L10 >= .3 AND H11 - L11 >= .3 AND H12 - L12 >= .3 AND H13 - L13 >= .3 AND H14 - L14 >= .3 AND H15 - L15 >= .3 AND H16 - L16 >= .3 AND H17 - L17 >= .3 AND H18 - L18 >= .3 AND H19 - L19 >= .3 AND H20 - L20 >= .3 AND H21 - L21 >= .3 AND H22 - L22 >= .3 AND H23 - L23 >= .3 AND H24 - L24 >= .3 AND H25 - L25 >= .3 AND H26 - L26 >= .3 AND H27 - L27 >= .3
Personal Criteria Formulas
-Bruce Personal Criteria Formulas TC2000 Support Articles
|
Registered User Joined: 6/15/2015 Posts: 21
|
worked like a charm. Is there any way I can show you a token of gratitute?
Donation?
Gift?
You've done great work for me!
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
You're welcome. I appreciate the sentiment, but there is no need for any tokens of gratitute.
-Bruce Personal Criteria Formulas TC2000 Support Articles
|