Create account

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