Why does the multiplication factor has no impact on backtest

I am trying to create a volume breakout script as follows:

VOLUME>AVG(REF(VOLUME,1), 10)*10

but the multiplier (10 as shown above) is having no impact whatsoever on the final result, whether I make it 1 or 1000… seems weird

hElLO tRaDeR,

SET A = REF(VOLUME,1)
VOLUME > AVG (A,10) * 10

Check this out and let me know the results.