Title: | IEX Stocks and Market Data |
---|---|
Description: | Retrieves efficiently and reliably Investors Exchange ('IEX') stock and market data using 'IEX Cloud API'. The platform is offered by Investors Exchange Group (IEX Group). Main goal is to leverage 'R' capabilities including existing packages to effectively provide financial and statistical analysis as well as visualization in support of fact-based decisions. In addition, continuously improve and enhance 'Riex' by applying best practices and being in tune with users' feedback and requirements. Please, make sure to review and acknowledge Investors Exchange Group (IEX Group) terms and conditions before using 'Riex' (<https://iexcloud.io/terms/>). |
Authors: | Myriam Ibrahim [aut, cre] |
Maintainer: | Myriam Ibrahim <[email protected]> |
License: | GPL-2 |
Version: | 1.0.2 |
Built: | 2025-03-02 04:04:04 UTC |
Source: | https://github.com/theeliteanalyst/riex |
For more details, visit:https://iexcloud.io/docs/api/#crypto
crypto(x, iex_sk)
crypto(x, iex_sk)
x |
A character vector that can include one or multiple Tickers / Stocks Symbols |
iex_sk |
is a character vector that include IEX Cloud API Secret Token |
Data frame that include Crypto currency financial details To retrieve list of 18 Cyrpto Currency Symbols available in IEX as of April 2019.
Myriam Ibrahim
Investors Exchange 'IEX' developer guide https://iexcloud.io/docs/api/
Investors Exchange Group (IEX Group) offers flexible and salable pricing.https://iexcloud.io/pricing/
View Investors Exchange Group (IEX Group) terms of use and subscription levels.https://iexcloud.io/terms/
Package 'iexcloudR'https://github.com/schardtbc/iexcloudR
## Not run: data(package = "Riex") CrytoSymbols <- crypto_symbols ## End(Not run)
## Not run: data(package = "Riex") CrytoSymbols <- crypto_symbols ## End(Not run)
A List of 18 Cyrpto Currency Symbols available via IEX API v1 as of April 26, 2019. List subject to update. Please visit IEX Site for most current list https://iexcloud.io/docs/api/#reference-data IEX API version 1 will sunset non-Investors Exchange (IEX) data on June 1, 2019.
crypto_symbols
crypto_symbols
A data frame with 18 rows and 1 variable:
symbol, in ticker format
...
https://iexcloud.io/docs/api/#cryptocurrency-symbols
Returns income statement, balance sheet, and cash flow data from the most recent reported quarter. For more details, visit:https://iexcloud.io/docs/api/#financials
iex.cash.flow(x, iex_sk) iex.balance.sheet(x, iex_sk) iex.income(x, iex_sk)
iex.cash.flow(x, iex_sk) iex.balance.sheet(x, iex_sk) iex.income(x, iex_sk)
x |
A character vector that can include one or multiple Tickers / Stocks Symbols |
iex_sk |
is a character vector that include IEX Cloud API Secret Token |
Data frame with stock(s) financial data with option of selecting quarterly or annually
Myriam Ibrahim
Investors Exchange 'IEX' developer guide https://iexcloud.io/docs/api/
Investors Exchange Group (IEX Group) offers flexible and salable pricing.https://iexcloud.io/pricing/
View Investors Exchange Group (IEX Group) terms of use and subscription levels.https://iexcloud.io/terms/
Package 'iexcloudR'https://github.com/schardtbc/iexcloudR
## Not run: iex.cash.flow("TSLA", "sk") ## End(Not run)
## Not run: iex.cash.flow("TSLA", "sk") ## End(Not run)
For more details, visit:https://iexcloud.io/docs/api/#account
iex.account(iex_sk) iex.usage(iex_sk) iex.key.usage(iex_sk) iex.daily.usage(iex_sk) iex.monthly.usage(iex_sk)
iex.account(iex_sk) iex.usage(iex_sk) iex.key.usage(iex_sk) iex.daily.usage(iex_sk) iex.monthly.usage(iex_sk)
iex_sk |
is a character vector that include IEX Cloud API Secret Token |
Most Active Stocks in IEX during the trading day
Myriam Ibrahim
Investors Exchange 'IEX' developer guide https://iexcloud.io/docs/api/
Investors Exchange Group (IEX Group) offers flexible and salable pricing.https://iexcloud.io/pricing/
View Investors Exchange Group (IEX Group) terms of use and subscription levels.https://iexcloud.io/terms/
Package 'iexcloudR'https://github.com/schardtbc/iexcloudR
For more details, visit:https://iexcloud.io/docs/api/#book
iex.book(x, iex_sk)
iex.book(x, iex_sk)
x |
A character vector that can include one or multiple Tickers / Stocks Symbols |
iex_sk |
is a character vector that include IEX Cloud API Secret Token |
for function like book(), only one value will be accepted per request
Data frame with stock(s) quote data
Myriam Ibrahim
Investors Exchange 'IEX' developer guide https://iexcloud.io/docs/api/
Investors Exchange Group (IEX Group) offers flexible and salable pricing.https://iexcloud.io/pricing/
View Investors Exchange Group (IEX Group) terms of use and subscription levels.https://iexcloud.io/terms/
Package 'iexcloudR'https://github.com/schardtbc/iexcloudR
## Not run: iex.book("TSLA", "sk") ## End(Not run)
## Not run: iex.book("TSLA", "sk") ## End(Not run)
For more details, visit:https://iexcloud.io/docs/api/#historical-prices
iex.chart(x, r, iex_sk)
iex.chart(x, r, iex_sk)
x |
A character vector that can include one or multiple Tickers / Stocks Symbols |
r |
An alpha numeric object that represents the time range selected. |
iex_sk |
is a character vector that include IEX Cloud API Secret Token |
Data frame that includes stock (s) financial data
r takes only of of the values accepted IN API request. "5y", "2y", "1y", "ytd", "6m", "3m", "1m", "1d"
Myriam Ibrahim
Investors Exchange 'IEX' developer guide https://iexcloud.io/docs/api/
Investors Exchange Group (IEX Group) offers flexible and salable pricing.https://iexcloud.io/pricing/
View Investors Exchange Group (IEX Group) terms of use and subscription levels.https://iexcloud.io/terms/
Package 'iexcloudR'https://github.com/schardtbc/iexcloudR
## Not run: iex.chart("TSLA", "1y", "sk") ## End(Not run)
## Not run: iex.chart("TSLA", "1y", "sk") ## End(Not run)
For more details, visit:https://iexcloud.io/docs/api/#company
iex.company(x = "TSLA", iex_sk)
iex.company(x = "TSLA", iex_sk)
x |
A character vector that can include one or multiple Tickers / Stocks Symbols |
iex_sk |
is a character vector that include IEX Cloud API Secret Token |
data frame with company summary data
Myriam Ibrahim
Investors Exchange 'IEX' developer guide https://iexcloud.io/docs/api/
Investors Exchange Group (IEX Group) offers flexible and salable pricing.https://iexcloud.io/pricing/
View Investors Exchange Group (IEX Group) terms of use and subscription levels.https://iexcloud.io/terms/
Package 'iexcloudR'https://github.com/schardtbc/iexcloudR
## Not run: iex.company("TSLA", "sk") ## End(Not run)
## Not run: iex.company("TSLA", "sk") ## End(Not run)
For more details, visit:https://iexcloud.io/docs/api/#earnings
iex.earnings(x, iex_sk)
iex.earnings(x, iex_sk)
x |
A character vector that can include one or multiple Tickers / Stocks Symbols |
iex_sk |
is a character vector that include IEX Cloud API Secret Token |
Data frame that include earnings
Myriam Ibrahim
Investors Exchange 'IEX' developer guide https://iexcloud.io/docs/api/
Investors Exchange Group (IEX Group) offers flexible and salable pricing.https://iexcloud.io/pricing/
View Investors Exchange Group (IEX Group) terms of use and subscription levels.https://iexcloud.io/terms/
Package 'iexcloudR'https://github.com/schardtbc/iexcloudR
## Not run: iex.earnings("TSLA", "sk") ## End(Not run)
## Not run: iex.earnings("TSLA", "sk") ## End(Not run)
For more details, visit:https://iexcloud.io/docs/api/#historical-prices
iex.intraday(x, iex_sk)
iex.intraday(x, iex_sk)
x |
A character vector that can include one or multiple Tickers / Stocks Symbols |
iex_sk |
is a character vector that include IEX Cloud API Secret Token |
Data frame that includes stock (s) financial data
Myriam Ibrahim
Investors Exchange 'IEX' developer guide https://iexcloud.io/docs/api/
Investors Exchange Group (IEX Group) offers flexible and salable pricing.https://iexcloud.io/pricing/
View Investors Exchange Group (IEX Group) terms of use and subscription levels.https://iexcloud.io/terms/
Package 'iexcloudR'https://github.com/schardtbc/iexcloudR
## Not run: iex.intraday ("TSLA", "sk") ## End(Not run)
## Not run: iex.intraday ("TSLA", "sk") ## End(Not run)
For more details, visit:https://iexcloud.io/docs/api/#list
iex.most.active(iex_sk)
iex.most.active(iex_sk)
iex_sk |
is a character vector that include IEX Cloud API Secret Token |
Most Active Stocks in IEX during the trading day
Myriam Ibrahim
Investors Exchange 'IEX' developer guide https://iexcloud.io/docs/api/
Investors Exchange Group (IEX Group) offers flexible and salable pricing.https://iexcloud.io/pricing/
View Investors Exchange Group (IEX Group) terms of use and subscription levels.https://iexcloud.io/terms/
Package 'iexcloudR'https://github.com/schardtbc/iexcloudR
For more details, visit:https://iexcloud.io/docs/api/#key-stats
iex.stats(x = "GM", iex_sk)
iex.stats(x = "GM", iex_sk)
x |
A character vector that can include one or multiple Tickers / Stocks Symbols |
iex_sk |
is a character vector that include IEX Cloud API Secret Token |
Key statistics
Myriam Ibrahim
Investors Exchange 'IEX' developer guide https://iexcloud.io/docs/api/
Investors Exchange Group (IEX Group) offers flexible and salable pricing.https://iexcloud.io/pricing/
View Investors Exchange Group (IEX Group) terms of use and subscription levels.https://iexcloud.io/terms/
Package 'iexcloudR'https://github.com/schardtbc/iexcloudR
## Not run: iex.stats("TSLA", "sk") ## End(Not run)
## Not run: iex.stats("TSLA", "sk") ## End(Not run)
For more details, visit:https://iexcloud.io/docs/api/#logo
logo(x, iex_sk)
logo(x, iex_sk)
x |
A character vector that can include one or multiple Tickers / Stocks Symbols |
iex_sk |
is a character vector that include IEX Cloud API Secret Token |
Company's Logo
Myriam Ibrahim
Investors Exchange 'IEX' developer guide https://iexcloud.io/docs/api/
Investors Exchange Group (IEX Group) offers flexible and salable pricing.https://iexcloud.io/pricing/
View Investors Exchange Group (IEX Group) terms of use and subscription levels.https://iexcloud.io/terms/
Package 'iexcloudR'https://github.com/schardtbc/iexcloudR
## Not run: logo("GOOG", "sk") ## End(Not run)
## Not run: logo("GOOG", "sk") ## End(Not run)