ddsmith2 10 posts msg #27235 - Ignore ddsmith2 |
7/6/2003 1:28:30 PM
Any help with a filter that would look at the (close minus low) and compare to (high minus low) as a percentage. What I want to look for is when the close is 80% or higher as compared to the days range and combine with some other filters.
Thanks,
David
|
holygrail 72 posts msg #27236 - Ignore holygrail |
7/6/2003 2:48:47 PM
For the record, this is NOT Holygrail. I am his trading Buddy.
Filter[set{cml,close - low}
set{hml,high - low}
set{x,cml / hml}
show stocks where x greater .80]
|
zfetch 16 posts msg #27240 - Ignore zfetch |
7/6/2003 5:17:49 PM
The day position function also provides a measurement vs day range, that can be compared to the close.
The calculation in the previous example works, if you need the value of the percent vs day range.
|
ddsmith2 10 posts msg #27249 - Ignore ddsmith2 |
7/7/2003 9:20:49 AM
Appreciate the help.
David
|