fmp_articles

FinancialModelingPrep.fmp_articlesFunction
fmp_articles(fmp, params...)

Returns a JSON object of fmp articles.

Arguments

  • fmp::FMP: A Financial Modeling Prep instance.
  • params...: Additional keyword query params.

See FMP-Articles for more details.

Examples

# create a FMP API instance
fmp = FMP()

# get fmp articles from page 0 and size 5
data = fmp_articles(fmp, page = 0, size = 5)

stock_news

FinancialModelingPrep.stock_newsFunction
stock_news(fmp, params...)

Returns stock news articles.

Arguments

  • fmp::FMP: A Financial Modeling Prep instance.
  • params...: Additional keyword query params.

See Stock-News for more details.

Examples

# create a FMP API instance
fmp = FMP()

# get the latest 50 stock news for AAPL and FB
data = stock_news(fmp, tickers = "AAPL,FB", limit = 50)

stock_news_sentiment_feed

FinancialModelingPrep.stock_news_sentiment_feedFunction
stock_news_sentiment_feed(fmp, params...)

Returns stock news article sentiment.

Arguments

  • fmp::FMP: A Financial Modeling Prep instance.
  • params...: Additional keyword query params.

See Stock-Sentiment for more details.

Examples

# create a FMP API instance
fmp = FMP()

# get the first page of stock news article sentiment
data = stock_news_sentiment_feed(fmp, page = 0)

crypto_news

FinancialModelingPrep.crypto_newsFunction
crypto_news(fmp, params...)

Returns crypto news articles.

Arguments

  • fmp::FMP: A Financial Modeling Prep instance.
  • params...: Additional keyword query params.

See Crypto-News for more details.

Examples

# create a FMP API instance
fmp = FMP()

# get the first page of news for BTCUSD
data = crypto_news(fmp, symbol = "BTCUSD", page = 0)

forex_news

FinancialModelingPrep.forex_newsFunction
forex_news(fmp, params...)

Returns forex news articles.

Arguments

  • fmp::FMP: A Financial Modeling Prep instance.
  • params...: Additional keyword query params.

See Forex-News for more details.

Examples

# create a FMP API instance
fmp = FMP()

# get the first page of news for EURUSD
data = forex_news(fmp, symbol = "EURUSD", page = 0)

general_news

FinancialModelingPrep.general_newsFunction
general_news(fmp, params...)

Returns general news articles.

Arguments

  • fmp::FMP: A Financial Modeling Prep instance.
  • params...: Additional keyword query params.

See General-News for more details.

Examples

# create a FMP API instance
fmp = FMP()

# get the first page of general news
data = general_news(fmp, page = 0)

press_releases

FinancialModelingPrep.press_releasesFunction
press_releases(fmp, symbol, params...)

Returns stock press releases.

Arguments

  • fmp::FMP: A Financial Modeling Prep instance.
  • symbol::String: A stock symbol.
  • params...: Additional keyword query params.

See Press-Releases for more details.

Examples

# create a FMP API instance
fmp = FMP()

# get first page of press releases from AAPL
data = press_releases(fmp, symbol = "AAPL", page = 0)