It's a signed number, sign being the image preceding. So the % represents increase or decrease.
Yep, that's correct.
percent = (current count - previous count) / previous count * 100%
if percent >=0 { 📈percent } else { 📉abs(percent) };
Alright, super useful, thanks !