https://github.com/avraammavridis/algorithm-of-400
https://github.com/avraammavridis/algorithm-of-400
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/avraammavridis/algorithm-of-400
- Owner: AvraamMavridis
- Created: 2018-08-03T12:48:31.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2018-08-06T05:04:16.000Z (about 7 years ago)
- Last Synced: 2025-04-07T12:42:11.622Z (6 months ago)
- Language: JavaScript
- Size: 2.93 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Algorithm of 400 (aka Performance Rating)
Implementation of `Algorithm of 400` in Javascript.
```
Performance rating is a hypothetical rating that would result from the games of a single event only.
Some chess organizations use the "algorithm of 400" to calculate performance rating.
According to this algorithm, performance rating for an event is calculated in the following way:For each win, add your opponent's rating plus 400,
For each loss, add your opponent's rating minus 400,
And divide this sum by the number of played games.
```