Create account

replied 2202d
SuperHacker
Thank you for this daily reports, i'm wondering what does the first percentage stands for ?
replied 2202d
It's a signed number, sign being the image preceding. So the % represents increase or decrease.
SuperHacker
replied 2200d
Yep, that's correct.
percent = (current count - previous count) / previous count * 100%
if percent >=0 { 📈percent } else { 📉abs(percent) };
replied 2195d
Alright, super useful, thanks !