Create account

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