Hello,
I am using the multiple filter criteria as described in the documentation – programming guide : Market scans .
I am following the example on “Use multiple filter criterias” in chapter II
what I am seeing is that in some cases , at the output of the screener, there is still only one criteria displayed.
I don’t understand what the problem is .
For example, I created this simple code (below) , that should have 3 columns , but only one is displayed – the one marked as “CC”.
Any ideas on why this is happening and how to resolve?
This is the code :
minprice = 0
maxprice = 10000
tmp=1
TIMEFRAME(DAILY)
if (Close < minprice) or (Close > maxprice) then
tmp =0
endif
c1 = (tmp > 0)
SCREENER[c1] (close as “CC” , High AS “HH”, low AS “LL” )