Is it possible to scan nifty 50 stocks all at a time using algorithm in Pi platform?

Yes, you can add. But suggest you to reduce the number of scrips you add in scanner. It is possible that the more number of scrips you add in Scanner, more of system resource is used.

no, it is not possible.

@sdg
Are you talking about the scanner in PI?
In ZT not possible, I think. But in PI should be possible.
I saw a comment from Nithin, saying this is possible, but adding too many items would be a severe blow on performance.

In ZT it is possible. do u use ZT or Pi?

In ZT 50 stocks possible, it seems.
Thanks sdg

Thanks all for the response.

Andrew, I tried only two stocks with the following code:
#Buy
VOLUME > REF(VOLUME, 1) * 1.25 AND
LAST > REF(HIGH,1) AND
TREND(CLOSE,10) = UP
#SELL
VOLUME > REF(VOLUME, 1) * 1.25 AND
LAST < REF(LOW,1) AND
TREND(CLOSE,10) = DOWN
But this added this code and tried, it mentioned ‘error in the script’. Kindly check it and tell me how to use it please

Ok. i just checked, it is working fine, does not generate error. IF you are entering both Buy and Sell codes, you need to put those in two separate scanners