0.0
No commit activity in last 3 years
No release in over 3 years
BloombergQuote is a module which getting quotes from Bloomberg site
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 0

Runtime

 Project Readme

BloombergQuote

BloombergQuote is Ruby module which getting quotes from Bloomberg site

Installation

Add this line to your application's Gemfile:

gem 'bloomberg_quote'

And then execute:

$ bundle

Or install it yourself as:

$ gem install bloomberg_quote

Usage

require 'bloomberg_quote'
# Fetching TOPIX Index quote
quote = BloombergQuote::Quote.new('TPX:IND')
quote.valid?
# => true
quote.data['Price']
# => 813.33
quote.data['Previous Close']
# => 819.27
quote.data['Open']
# => 814.37
# Fetching DUMMY currency
quote = BloombergQuote::Quote.new('DUMMY:CUR')
quote.valid?
# => false

Supported fields

  • Price
  • Previous Close
  • Open

FAQ

Where can I find ticker symbols?

You can search them at Bloomberg

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Added some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request

Acknowledgement

Code and APIs are inspired by yahoo_quote.