Skip to main content

insider_trading

Get data about trading by a company's management team and board of directors.

Examples

from openbb import obb
obb.equity.ownership.insider_trading(symbol='AAPL', provider='fmp')
obb.equity.ownership.insider_trading(symbol='AAPL', limit=500, provider='intrinio')

Parameters

NameTypeDescriptionDefaultOptional
symbolstrSymbol to get data for.False
limitintThe number of data entries to return.500True

Returns

OBBject
results : List[InsiderTrading]
Serializable results.

provider : Optional[Literal['fmp', 'intrinio', 'tmx']]
Provider name.

warnings : Optional[List[Warning_]]
List of warnings.

chart : Optional[Chart]
Chart object.

extra : Dict[str, Any]
Extra info.

Data

NameTypeDescription
symbolstrSymbol representing the entity requested in the data.
company_cikUnion[str, int]CIK number of the company.
filing_dateUnion[date, datetime]Filing date of the trade.
transaction_datedateDate of the transaction.
owner_cikUnion[str, int]Reporting individual's CIK.
owner_namestrName of the reporting individual.
owner_titlestrThe title held by the reporting individual.
transaction_typestrType of transaction being reported.
acquisition_or_dispositionstrAcquisition or disposition of the shares.
security_typestrThe type of security transacted.
securities_ownedfloatNumber of securities owned by the reporting individual.
securities_transactedfloatNumber of securities transacted by the reporting individual.
transaction_pricefloatThe price of the transaction.
filing_urlstrLink to the filing.