Guys,
This seems to work per your suggestions:
Code:
  if watts = wattsAvg then
  wattsAvg = watts
  endif

  if watts > wattsAvg then
  wattsAvg = wattsAvg + (watts - wattsAvg)/(counter + 1)
  endif
  
  if watts < wattsAvg then
  wattsAvg = wattsAvg + (wattsAvg - watts)/(counter + 1)
  endif