I have the data i want to get currency EUR value not USD how it is possible.
[{"currency":"USD","amount":3260},
{"currency":"EUR","amount":"320.00"}]
my code is
<div class="col-xs-6">
<h5 ng-repeat="balance in balances">
{{balance.amount | currencyFilter:balance.currency}} ({{balance.currency}})
</h5>
</div>