Registered User Joined: 7/8/2008 Posts: 14
|
Hi - Looking for some help creating following formulas:
1. I want a boolean formula for stocks closing price within 10% of 52 week high.
2. Also, boolean formula for stocks within a trading range of 10% over a period of 6 weeks.
3. And a formula for stocks that have increased in value by 50% or more from their 52 week low.
Thanks for your help,
J
|
Administration
Joined: 9/30/2004 Posts: 9,187
|
1. C > MAXC52 * .09 - make sure you set the time frame on the condition to Weekly.
2. (AVGH6 - AVGL6) / AVGC6 <= .1 - Again, set to Weekly. You could get more strict on this maybe using (MAXH6 - MINL6) / AVGC6 <= .1 That would mean the difference in the max high and min low could be no more than 10% of the average close.
3. C / MINL52 >= 1.5 - set time frame on condition to Weekly.
|
Registered User Joined: 7/8/2008 Posts: 14
|
Thanks for the help
|