karennma 8,057 posts msg #122208 - Ignore karennma |
12/11/2014 9:07:00 PM
For example, the filter says:
add column high 52-week high
add column low 52-week low
THEN, I want the % diff between the two columns.
Anyone know how to write that filter?
|
four 5,087 posts msg #122210 - Ignore four modified |
12/11/2014 9:12:39 PM
http://www.mathsisfun.com/percentage-difference.html
|
karennma 8,057 posts msg #122211 - Ignore karennma |
12/11/2014 9:34:12 PM
SET{HIGH52W, HIGH 1 YEAR HIGH}
SET{DIFF, HIGH52W - CLOSE}
SET{X, DIFF / HIGH52W}
SET{DIFFPCT, X * 100}
ADD COLUMN HIGH52W
ADD COLUMN DIFF
ADD COLUMN DIFFPCT
CLOSE ABOVE 1
VOLUME ABOVE 500000
SORT COLUMN 6 DESCENDING
Found one! Compliments of TRO.
|