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
Show file tree
Hide file tree
Changes from all commits
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
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
65 changes: 65 additions & 0 deletions benzinga/financial_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -678,6 +678,71 @@ def splits(
)
return result_out

def ma(
self,
page=None,
pagesize=None,
date_asof=None,
date_from=None,
date_to=None,
company_tickers=None,
importance=None,
date_sort=None,
updated_params=None,
env=0,
):
"""Public Method: Benzinga M&A looks at the Mergers And Acquisitions 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, time, ticker, exchange, importance, ratio, optionable,
date_ex, date_recorded, date_distribution"""

params = {
"token": self.token,
"page": page,
"pagesize": pagesize,
"parameters[date]": date_asof,
"parameters[date_from]": date_from,
"parameters[date_to]": date_to,
"parameters[tickers]": company_tickers,
"parameters[importance]": None,
"parameters[date_sort]": date_sort,
"parameters[updated]": updated_params,
}
self.param_initiate.calendar_check(params)
try:
splits_url = self.__url_call("calendar", "ma", env=env)
splits = requests_retry_session().get(
splits_url, headers=self.headers, params=params, timeout=10
)
statement = "Status Code: {status_code} Endpoint: {endpoint}".format(
endpoint=splits.url, status_code=splits.status_code
)
if self.log:
log.info(statement)
self.__check_status(splits.status_code)
except requests.exceptions.RequestException as err:
self.__check_status(err.response.status_code)
result_out = (
splits.json()
if importance == None
else self.__importance("splits", splits.json(), importance)
)
return result_out

def economics(
self,
page=None,
Expand Down