Queue Holdtime Algorithm

It’s an exponential average of the hold times for calls that have been answered. It is only really valid in the steady state. I’m not sure how it handles abandoned calls.

0.25*latest actual hold time + 0.75 * previous average, except the whole hold time is used for the first call.

1 Like