GetData Script Error

Hi,

I am getting an invalid script message for this script (gotten from the GetData Knowledge Forum page).
Trying to generate a Show View of XAO greater than the XAO MA.

V1 = (GETDATA(Code=XAO, TIMEFRAME=1 Week, CURRENCY=AUD, ALLOWZEROCLOSE=True) 
V1 > MA(V1, BARS=10, STYLE=Exponential, CALC=Close)

Tim

Hi,

The first line of the script appears to be missing 2 characters at the end ); once added the script should work…

V1 = (GETDATA(Code=XAO, TIMEFRAME=1 Week, CURRENCY=AUD, ALLOWZEROCLOSE=True));
V1 > MA(V1, BARS=10, STYLE=Exponential, CALC=Close)

Thanks Matthew.