fooglass 2 posts msg #133131 - Ignore fooglass |
12/8/2016 6:33:31 PM
New guy here but loving the site so far. Wish I had come upon it years ago.
Question for you all: how can I incorporate exclusion criteria into a filter? For example, I write a Filter, whatever it may be, and it pulls back 120 stocks. Now I want to exclude any of those where the low has been increasing for the last 3 days. How would I do that?
|
Kevin_in_GA 4,599 posts msg #133134 - Ignore Kevin_in_GA |
12/8/2016 6:47:33 PM
add the line
count(low increasing for the last 3 days,1) below 0.5
to your current filter. That should remove all stocks that have exhibited that condition.
|
fooglass 2 posts msg #133151 - Ignore fooglass |
12/9/2016 12:17:48 PM
Awesome, thanks, Kevin. I also sent a note to support and they quickly responded with the following suggestion (FYI):
count(low above low 1 day ago, 3) < 3
|