Hi,
How would you exclude stocks that are 5 years and less old ?
regards
Try this one:
Timeframe(Yearly)
x = ((close + open + high + low) = 0)
y = (Volume = 0)
z = summation[5](x[5] AND y[5])
TimeFrame(default)
Cond = z
SCREENER[Cond]
this does not return anything… does it work for you ?
Very few sugnals selecting ALL available lists.
It simply checks, on the yearly timeframe, that there is no price and no volume in years prior to the last 5.
You can try replacing line 4 with:
z = (x[5] AND y[5])
Which assets and timeframe are you scanning?
Which of those assets are 5 or less years old?
Pretty easy
Timeframe(Yearly)
SCREENER[ barindex > 5]