I believe this is what you are after. This gives you the individual X and Y speed components of the blob as well as a combined vector speed (magnitude). Please note I added a second LFO so that your circle moves in both axes. I also lowered the resolution being fed to the Blob TOP as you were getting a big performance hit because of the 1920x1080 which is not necessary if you’re only detecting blobs and calculating speeds.
The slope CHOP calculates the derivative or speed from the position values and the “trick” for getting the magnitude of the speed vector (combined speed) is to use the Math CHOP’s combine channels using the length method. This effectively performs a Pythagorean √(x2 + y2) of both speeds.