Scan not including all results

I’m using this scan with scan settings Multiple Codes, ASX All Ords, Current, Last Bar, 1 Day but when I check the scan result with the result of other scanning software I get two more tickers.

//Set variables to use 
V1 = MA(BARS=50, STYLE=Exponential, CALC=Close);
V2 = MA(BARS=100, STYLE=Exponential, CALC=Close);
V3 = HIGHESTHIGH(BACKTYPE=Days, BARS=70);

//50MA is above 100MA
C1 = (V1>V2);

//Close is above 50MA
C2 = CLOSE() > V1;

//Close equal to or crosses above 70 day highest high
C3 = CLOSE() > V3 and CLOSE()[1] < V3;

C1 and C2 and C3

You can see the results in this screen shot, notice the two codes on the right (GRX and MYG) are not in the Watchlist from the scan. They have been manually entered into the Workbook by me.

Looking at GRX (MYG is the same) it meets the script criteria.

I can’t work out why GRX and MYG are not being picked up in the scan.

Thanks

Tim

Hi Tim,

Those two stocks are not in the ASX All Ords Index, so weren’t included in the scan.