-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The estimate total now use the accounted value if its absolute value is larger than the estimate's absolute value, using the math bellow: ``` fixed_estimate = (ABS(accounted) > ABS(estimated) AND accounted > 0 == estimated > 0)? accounted: estimated; ``` It gives more robustness for the evaluation, as the estimate accumulated over the mounths becoming quickly useless.
- Loading branch information
Showing
1 changed file
with
25 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters