Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pangiole/navarrus
Computational Finance in Scala
https://github.com/pangiole/navarrus
Last synced: 30 days ago
JSON representation
Computational Finance in Scala
- Host: GitHub
- URL: https://github.com/pangiole/navarrus
- Owner: pangiole
- License: apache-2.0
- Created: 2015-07-16T19:27:48.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-07-22T22:39:03.000Z (over 9 years ago)
- Last Synced: 2023-07-31T17:24:30.017Z (over 1 year ago)
- Language: Scala
- Size: 145 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# navarrus
Computational Finance in Scala## Currency
Currency is represented by the ``navarrus.Currency`` class whose instances can be created passing the [ISO 4217](http://www.iso.org/iso/home/standards/currency_codes.htm) currency code.```scala
// Currency for your default locale
val DefaultCurrency = Currency()// British Pound for your default locale
val GBP = Currency("GBP")// or
val LocalizedBritishPound = Currency("GBP", java.util.Locale.US)
```