Thank you for joining. The 3 question marks are red, that is why I assumed it was a negative, but actually the only negative comment I see in the trusted feedback is from allyouracid.
I have no idea why he left me a negative without a reference link.And he is not on a DT,he could be in your trust list or something.
But here the topic I started is on a different subject. No matter what the trust score is, negative or positive, why there are ? ? ? instead of a number?
This has been discussed before.If you understand code here's the logic behind it:
I also completely changed the trust score algorithm to this:
if there are no negative ratings
score = 0
for each rating, oldest to newest
if this rater has already been counted
continue
score += min(10, round_up(months since rating))
else
score = unique_positive - 2^(unique_negative)
if score >= 0
start_time = time of first negative
score = unique_positive since start_time - unique_negative since start_time
if(score < 0)
return ??? (orange)
move score to range [-9999,9999]
return score
The discussion thread :
https://bitcointalk.org/index.php?topic=1066857.msg11432782#msg11432782I hope that clears the issues and you're good to lock this thread if convinced.