Method: FinnhubRuby::DefaultApi#filings_sentiment

Defined in:
lib/finnhub_ruby/api/default_api.rb

#filings_sentiment(access_number, opts = {}) ⇒ SECSentimentAnalysis

SEC Sentiment Analysis Get sentiment analysis of 10-K and 10-Q filings from SEC. An abnormal increase in the number of positive/negative words in filings can signal a significant change in the company’s stock price in the upcoming 4 quarters. We make use of <a href= "sraf.nd.edu/textual-analysis/resources/" target="_blank">Loughran and McDonald Sentiment Word Lists</a> to calculate the sentiment for each filing.

Parameters:

  • access_number (String)

    Access number of a specific report you want to retrieve data from.

  • opts (Hash) (defaults to: {})

    the optional parameters

Returns:



2387
2388
2389
2390
# File 'lib/finnhub_ruby/api/default_api.rb', line 2387

def filings_sentiment(access_number, opts = {})
  data, _status_code, _headers = filings_sentiment_with_http_info(access_number, opts)
  data
end