By default, a filter has a single parameter: the variable it is applied on. But you can pass more parameter to the function:
angular
.module('app', [])
.controller('MyController', function($scope) {
$scope.example = 0.098152;
})
.filter('percentage', function($filter) {
return...