https://github.com/chrishein/ifqar
Investment Funds Quoter Argentina is a ruby client that retrieves funds stats from cafci.org.ar
https://github.com/chrishein/ifqar
ruby ruby-client
Last synced: about 2 months ago
JSON representation
Investment Funds Quoter Argentina is a ruby client that retrieves funds stats from cafci.org.ar
- Host: GitHub
- URL: https://github.com/chrishein/ifqar
- Owner: chrishein
- License: mit
- Created: 2017-03-23T15:46:20.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2017-05-09T14:31:40.000Z (about 8 years ago)
- Last Synced: 2025-02-11T21:49:56.027Z (4 months ago)
- Topics: ruby, ruby-client
- Language: Ruby
- Size: 15.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Ifqar
Investment Funds Quoter Argentina is a ruby client that retrieves funds stats
from [cafci.org.ar](http://www.cafci.org.ar/)## Installation
Add this line to your application's Gemfile:
```ruby
gem 'ifqar'
```And then execute:
$ bundle
Or install it yourself as:
$ gem install ifqar
## Usage
```ruby
require 'ifqar'date = Date.parse('14-03-2017')
type = :EQUITYquoter = Ifqar::FundQuoter.new
stats = quoter.stats(date, type)stats.funds_quotes.each do |fund_quote|
puts [fund_quote.fund.name, fund_quote.share_value].join(': ')
end
```## Contributing
Bug reports and pull requests are welcome on GitHub at https://github.com/chrishein/ifqar.
## License
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).