I am getting some very strange results with a screener. What the codes I seem to return the same number of results!!? Needless to say some of the results are not meeting the criteria defined.
Hi. Is it possible to get the whole screener code? Something could be wrongly syntaxed in the SCREENER instruction?
Hi. There is nothing attached 🙁
Any thoughts – this is a real puzzle?
No, not a puzzle. Merely a mess. You show different things in your two screenshots so far.
And now nobody knows what your guiding text belongs to.
Please show all renewed, thus the full code and your text belonging to *that* ?
🙂
Sorry if I caused confusion but this is the code
timeframe(daily)
cond3 = volume > 100000
timeframe(weekly)
ma80w = Average[80](close)
ma5w = Average[5](close)
cond1 = ma80w >ma80w[1] and ma80w[5] >ma80w[10] and ma80w[10] > ma80w[20] and ma80w[20]>ma80w [30]
cond2 = ma5w < ma80w
SCREENER(cond1 and cond2 and cond3)
Returns 932 UK stocks
Hi,
With the SCREENER keyword , you need square brackets […] for screening, if you use only (…) then you only sort all available stocks.
Try with:
SCREENER[cond1 and cond2 and cond3]
Site help page for SCREENER keyword for reference:
SCREENER
Idiot so sorry for the schoolboy.
Many thanks