Gold Customer
Joined: 3/6/2005 Posts: 110
|
I'd like to add a column for each to my watch list:
For buys I'd like to have today (day one) at a two month calendar high. The high should be accompanied by a range expansion. Today's range (high minus low) must be equal to or larger than the largest daily range of the previous nine trading days.
For short sales today (day one) must be a two month calendar low. Today's range (high minus low) must be equal to or larger than the largest daily range of the previous nine trading days.
Thanks very much for you help.
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
Please try creating the following Condition Formula for buys.
H = MAXH42 AND H - L >= H1 - L1 AND H - L >= H2 - L2 AND H - L >= H3 - L3 AND H - L >= H4 - L4 AND H - L >= H5 - L5 AND H - L >= H6 - L6 AND H - L >= H7 - L7 AND H - L >= H8 - L8 AND H - L >= H9 - L9 AND H > L
And the following Condition Formula for shorts.
L = MINL42 AND H - L >= H1 - L1 AND H - L >= H2 - L2 AND H - L >= H3 - L3 AND H - L >= H4 - L4 AND H - L >= H5 - L5 AND H - L >= H6 - L6 AND H - L >= H7 - L7 AND H - L >= H8 - L8 AND H - L >= H9 - L9 AND H > L
How to create and save a Condition (PCF) Formula
How to add a column to a WatchList
-Bruce Personal Criteria Formulas TC2000 Support Articles
|