New Members: Be sure to confirm your email address by clicking on the link that was sent to your email inbox. You will not be able to post messages until you click that link.
Would anyone know how to sste up a scan for a watch list? I have a lot of watch lists that are not inculed in my scans. I was thinking that maybe there where some of them that had the type of scan in them I was looking for... thank you
0
Comments
If you want to run the same scan against more than one list at the same time you need to construct an "or" statement. It would look like this, and would be the first line of your scan:
[ [your list name 1] or [your list name 2] or [your list name 3] ]
Each list name has to have brackets around it, and all the lists have to be within a surrounding set of brackets, as you see above - the line begins with an opening bracket and ends with a closing bracket.
If you want to run the same scan against more than one list, but just one list at a time, instead of making separate scans for each list you could add each list name to the scan, and then put "//" in front of all the lists EXCEPT the one you want to scan. The "//" tells the scan engine to ignore everything on that line. For instance:
This would run the scan only against [ your list name 1]
[ your list name 1]
// [ your list name 2]
// [ your list name 3]
This would run the scan only against [ your list name 2]
// [ your list name 1]
[ your list name 2]
// [ your list name 3]
So you would run the scan first for [your list name 1] as in the first example. Then to run for [your list name 2] you would edit the scan to put the "//" in front of [your list name 1] and then remove "//" from in front of [your list name 2] so it looks like example 2 and run the scan. Then repeat for [your list name 3], etc.
Hope that helps.