Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added support for M&A calendar #13

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
updated readme with M&A info
  • Loading branch information
yarimiz committed Apr 25, 2023
commit 58d5bef64151d6631fd2f7e301f738ef5ce3e3d2
28 changes: 28 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ Benzinga's Python client library focuses on financial data methods, that can be
+ [Ratings](#ratings)
+ [Earnings](#earnings)
+ [Splits](#splits)
+ [M&A](#ma)
+ [Economics](#economics)
+ [Guidance](#guidance)
+ [IPO](#ipo)
Expand Down Expand Up @@ -322,6 +323,33 @@ Public Method: Benzinga Earnings looks at the quarterly earnings reports for dif
eps, eps_est, eps_prior, eps_surprise, eps_surprise_percent, revenue, revenue est,
revenue_prior, revenue_surprise, revenue_surprise_percent, importance, updated

### M&A

```python
fin.ma()
```

Public Method: Benzinga Splits looks at the stock splits calendar data

* Arguments:
* **Optional**:
* page ****(int)**** - page offset
* pagesize ****(int)**** - limit of results returned
* date_asof ****(str)**** - "YYYY-MM-DD"
* date_from ****(str)**** - "YYYY-MM-DD"
* date_to ****(str)**** - "YYYY-MM-DD"
* company_tickers ****(str)****
* importance - ****(int)**** - not tested yet.
* date_sort - ****(str)**** - Dividend date field to sort on
* updated_params **(int64)** - records last updated unix time stamp. Forces the
sort order to be greater or equal to the time stamp indicated.

* Returns:
* id, updated, date, date_expected, date_completed, acquirer_ticker, acquirer_exchange,
acquirer_name, target_ticker, target_exchange, target_name, currency, deal_type, deal_size,
deal_payment_type, deal_status, deal_terms_extra, importance, notes


### Splits

```python
Expand Down