• Stars
    star
    208
  • Rank 189,015 (Top 4 %)
  • Language
    Ruby
  • License
    MIT License
  • Created about 13 years ago
  • Updated about 1 year ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

A ruby gem that retrieves stock quotes from IEX

stock_quote

Real-time, stock data and historical pricing. Data provided by IEXCLOUD.IO. An API KEY is now required.

Update

On June 1, 2019, IEX Group removed all non-IEX data from the IEX Trading API, and migrated all relevant endpoints to IEX Cloud. A free plan is available with a valid API Key. The only change in StockQuote usage is initialization with an API KEY is now required StockQuote::Stock.new(api_key: 'YOUR_API_KEY').

Installation

To install the 'stock_quote' ruby gem:

gem install stock_quote

Gem Configuration

To use the gem in your Rails Application, include it in your Gemfile:

gem "stock_quote", '~> 3.0.0'

Initialization

To globally initialize StockQuote with a valid API_KEY:

StockQuote::Stock.new(api_key: YOUR_API_KEY)

You can also supply api_key as an attribute in any StockQuote::Stock method.

StockQuote::Stock.quote(symbol)

Quote is the primary method, returning a StockQuote::Stock instance, including the following attributes (new in v2.0.0).

symbol, company_name, primary_exchange, sector, calculation_price, open, open_time, close, close_time, high, low, latest_price, latest_source, latest_time, latest_update, latest_volume, iex_realtime_price, iex_realtime_size, iex_last_updated, delayed_price, delayed_price_time, previous_close, change, change_percent, iex_market_percent, iex_volume, avg_total_volume, iex_bid_price, iex_bid_size, iex_ask_price, iex_ask_size, market_cap, pe_ratio, week52_high, week52_low, ytd_change, chart

You can get a current quote with the following syntax:

stock = StockQuote::Stock.quote("symbol")

Where symbol equals the company stock symbol you want a quote for. For example, "aapl" for Apple, Inc.

You may search for multiple stocks by separating symbols with a comma (or array). For example:

stocks = StockQuote::Stock.quote("aapl,tsla")

These queries will return a Stock object or an array of Stock objects which you may iterate through.

Note: You can receive a raw json hash response with the following syntax:

stocks = StockQuote::Stock.raw_quote("aapl,tsla")

The raw_ method is available on all supported methods.

Other Methods

The IEX API is quite extensive and well documented.

V3.0.0 of stock_quote mirrors the IEXCLOUD.IO API:

All these methods are available on StockQuote::Stock.

For example:

StockQuote::Stock.company('aapl')

Retrieves company information.

For example:

StockQuote::Stock.dividends('aapl')

Retrieves dividend information.

Raw json hash responses are available for any of the methods by pre-fixing the method name with "raw__".

For example:

StockQuote::Stock.raw_dividends('aapl')

Retrieves raw dividend information.

batch

Batch allows you to batch requests. All methods in stock_quote use batch under-the-hood.

Batch follows the syntax:

StockQuote::Stock.batch(type, symbol, range)

Where type can be multiple of the above methods and symbol can be an array of company symbols.

Range can be:

5y, 2y, 1y, ytd, 6m, 3m, 1m, 1d

And are applied to chart method.

Special thanks to

IEX for making this api publicly available.

License

Copyright (c) 2019 Ty Rauber

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

More Repositories

1

remix-expo

Remix Expo Monorepo
CSS
100
star
2

sec_query

A ruby gem for querying the United States Securities and Exchange Commission Edgar System.
Ruby
49
star
3

census_api

A Ruby Gem for querying the US Census Bureau API
Ruby
30
star
4

acts_rateable

Rails 3 Bayesian Ratings Gem
CSS
9
star
5

mongodb-rails3-tutorial

A Rails 3, MongoDB, MongoMapper Tutorial / Example Application.
7
star
6

email_engine

Send and track emails at scale with Rails and Redis
JavaScript
6
star
7

census_shapes

A Ruby Gem for importing US Census Shapefiles into Postgis
Ruby
4
star
8

browseTunes

100% HTML5 / Javascript, iTunes-Compatible Media Player
3
star
9

font-league

A ruby gem compiling the fonts of The League of Moveable Type
CSS
3
star
10

CongressTMI

Fight For the Future, Congress TMI Campaign
JavaScript
1
star
11

expo-firebase-example

Implementing react-native-firebase/analytics in Expo SDK 46
TypeScript
1
star
12

sst-postgraphile

SST Postgraphile
TypeScript
1
star
13

sst-aurora-v2

SST RDS Postgres
TypeScript
1
star
14

font-osm

MapLibre GL JS Font Awesome 6 Open Street Map Icons with Planetiler and Protomaps
JavaScript
1
star
15

get_stocks

Sample 'stock_quote' rails 3 application
Ruby
1
star
16

bootstrap-pages

One-Page Bootstrap Template using Scroll-Spy and Carousel Indicators, Controls to provide smooth, responsive navigation of page sections.
1
star
17

sst-maps

SST NextJS, MapLibreGL JS, Protomaps
TypeScript
1
star
18

tradeking

TradeKing API Ruby Gem
Ruby
1
star
19

bootstrap-fullscreen-carousel

Fullscreen bootstrap carousel that fills the screen and maintains the image aspect ratio.
1
star