├── .gitignore ├── README.md ├── code ├── _helpers.py └── run_score.py ├── input ├── earningscall_transcripts │ ├── Apple (AAPL) Q2 2022 Earnings Call Transcript.html │ ├── Apple (AAPL) Q3 2020 Earnings Call Transcript.html │ ├── Apple Inc. (AAPL) Q2 2020 Earnings Call Transcript | The Motley Fool.html │ └── README.md ├── political_bigrams │ ├── README.md │ └── political_bigrams.csv ├── riskwords │ ├── README.md │ └── synonyms.txt └── sentimentwords │ ├── LoughranMcDonald_MasterDictionary_2018.csv │ └── README.md └── output └── earningscall_scores.tsv /.gitignore: -------------------------------------------------------------------------------- 1 | **.DS_Store 2 | .python-version 3 | **/__pycache__/* 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschwedeler/firmlevelrisk/HEAD/README.md -------------------------------------------------------------------------------- /code/_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschwedeler/firmlevelrisk/HEAD/code/_helpers.py -------------------------------------------------------------------------------- /code/run_score.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschwedeler/firmlevelrisk/HEAD/code/run_score.py -------------------------------------------------------------------------------- /input/earningscall_transcripts/Apple (AAPL) Q2 2022 Earnings Call Transcript.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschwedeler/firmlevelrisk/HEAD/input/earningscall_transcripts/Apple (AAPL) Q2 2022 Earnings Call Transcript.html -------------------------------------------------------------------------------- /input/earningscall_transcripts/Apple (AAPL) Q3 2020 Earnings Call Transcript.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschwedeler/firmlevelrisk/HEAD/input/earningscall_transcripts/Apple (AAPL) Q3 2020 Earnings Call Transcript.html -------------------------------------------------------------------------------- /input/earningscall_transcripts/Apple Inc. (AAPL) Q2 2020 Earnings Call Transcript | The Motley Fool.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschwedeler/firmlevelrisk/HEAD/input/earningscall_transcripts/Apple Inc. (AAPL) Q2 2020 Earnings Call Transcript | The Motley Fool.html -------------------------------------------------------------------------------- /input/earningscall_transcripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschwedeler/firmlevelrisk/HEAD/input/earningscall_transcripts/README.md -------------------------------------------------------------------------------- /input/political_bigrams/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschwedeler/firmlevelrisk/HEAD/input/political_bigrams/README.md -------------------------------------------------------------------------------- /input/political_bigrams/political_bigrams.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschwedeler/firmlevelrisk/HEAD/input/political_bigrams/political_bigrams.csv -------------------------------------------------------------------------------- /input/riskwords/README.md: -------------------------------------------------------------------------------- 1 | # info 2 | Transcribed from: Oxford Dictionary 3 | Date: Some time in 2016 4 | -------------------------------------------------------------------------------- /input/riskwords/synonyms.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschwedeler/firmlevelrisk/HEAD/input/riskwords/synonyms.txt -------------------------------------------------------------------------------- /input/sentimentwords/LoughranMcDonald_MasterDictionary_2018.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschwedeler/firmlevelrisk/HEAD/input/sentimentwords/LoughranMcDonald_MasterDictionary_2018.csv -------------------------------------------------------------------------------- /input/sentimentwords/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschwedeler/firmlevelrisk/HEAD/input/sentimentwords/README.md -------------------------------------------------------------------------------- /output/earningscall_scores.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschwedeler/firmlevelrisk/HEAD/output/earningscall_scores.tsv --------------------------------------------------------------------------------