Nice and simple. It does not seem to be working when I use the new column function. That is, nothing is being populated in my new column (the column holding the mean formula). Here is my script:
New Column( "hrly turb current",
numeric,
continuous,
Mean( Lag( :pearson_turb_fnu, 4 ), Lag( :pearson_turb_fnu, 3 ),
Lag( :pearson_turb_fnu, 2 ), Lag(:pearson_turb_fnu, 1) )
);
Am I applying it correctly?