js,
first – thank you for you answer and your time! I really appreciate it.
the thing is, im looking for a screener that MAY produce results, some of which are shared with 10 other screeners (therefore the idea of producing a screener that will produce completely different results, is not what i ment, and also complicated for practical implementation).
I thought maybe there is some command/code which indicates the scanner to exclude shared results with the other scanners , something like this (that does not wort- i tried):
exclusionList = “List1,List2,List3”;
condition1 = close > open; condition2 = rsi[14] > 70;
if NOT IsInList(name, exclusionList) AND condition1 AND condition2 THEN
AddToList(“MyScreeningList”, name);
endif
it does not work…
thank you