Skip to content

Commit

Permalink
Add a 5% tolerance for declaring a "unpeg event"
Browse files Browse the repository at this point in the history
  • Loading branch information
natsoni committed Apr 24, 2024
1 parent bccd51e commit 6f3e3be
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export class ReservesRatioStatsComponent implements OnInit {
let avg = 0;
for (let i = 0; i < ratioSeries.length; i++) {
avg += ratioSeries[i];
if (ratioSeries[i] < 1) {
if (ratioSeries[i] < 0.95) {
total++;
}
}
Expand Down

0 comments on commit 6f3e3be

Please sign in to comment.