A = Volume is not the same as the real Volume.
MyAtr = AverageTrueRange[20](close)
MyVolatility = 0.05 * CLOSE
MyVol = Volume
SCREENER[MyAtr >= MyVolatility] (MyVol as "MyVolume")
See the list below where MyVolume gives a complete different Volume as the real Volume? What do I do wrong in the code?
Do you have real time data or just end of day one? In that last case, you’ll always get the previous period data, that’s why you spot differences.