Function returns dataframe containing CIK number, company name,
date of filing, accession number, and various sentiment measures.
This function takes the help of Loughran-McDonald (L&M) sentiment
dictionaries (https://sraf.nd.edu/textual-analysis/resources/) to
compute sentiment measures of a EDGAR filing. Following are the
definitions of the text characteristics and the sentiment measures:
file.size = Total number of words in the filing. It does not consider stop words.
char.count = Total number of characters in the filing. It does not consider stop words.
complex.word.count = Total number of complex words in filing. A word is count
as a complex word if contains vowels(a, e, i, o, u) more than three times.
It does not consider stop words.
lm.dictionary.count = The number of words that occur in the L&M master dictionary.
lm.negative.count = The number of L&M Financial-Negative words in the filing.
lm.positive.count = The number of L&M Financial-Positive words in the filing.
lm.strong.modal.count = The number of L&M Financial-Strong Modal words in the filing.
lm.moderate.modal.count = The number of L&M Financial-Moderate Modal words in the filing.
lm.weak.modal.count = The number of L&M Financial-Weak Modal words in the filing.
lm.uncertainty.count = The number of L&M Financial-Uncertainty words in the filing.
lm.litigious.count = The number of L&M Financial-Litigious words in the filing.
harvard.negative.count = Number of words in the filing. that occur in the Harvard
General Inquirer Negative word list, as defined by L&M.