otc
Get the weekly aggregate trade data for Over The Counter deals.
ATS and non-ATS trading data for each ATS/firm with trade reporting obligations under FINRA rules.
Examples
from openbb import obb
obb.equity.darkpool.otc(provider='finra')
# Get OTC data for a symbol
obb.equity.darkpool.otc(symbol='AAPL', provider='finra')
Parameters
- standard
- finra
Name | Type | Description | Default | Optional |
---|---|---|---|---|
symbol | str | Symbol to get data for. | None | True |
Name | Type | Description | Default | Optional |
---|---|---|---|---|
symbol | str | Symbol to get data for. | None | True |
tier | Literal['T1', 'T2', 'OTCE'] | 'T1 - Securities included in the S&P 500, Russell 1000 and selected exchange-traded products;; T2 - All other NMS stocks; OTC - Over-the-Counter equity securities | T1 | True |
is_ats | bool | ATS data if true, NON-ATS otherwise | True | True |
Returns
OBBject
results : List[OTCAggregate]
Serializable results.
provider : Optional[Literal['finra']]
Provider name.
warnings : Optional[List[Warning_]]
List of warnings.
chart : Optional[Chart]
Chart object.
extra : Dict[str, Any]
Extra info.
Data
- standard
- finra
Name | Type | Description |
---|---|---|
update_date | date | Most recent date on which total trades is updated based on data received from each ATS/OTC. |
share_quantity | float | Aggregate weekly total number of shares reported by each ATS for the Symbol. |
trade_quantity | float | Aggregate weekly total number of trades reported by each ATS for the Symbol |
Name | Type | Description |
---|---|---|
update_date | date | Most recent date on which total trades is updated based on data received from each ATS/OTC. |
share_quantity | float | Aggregate weekly total number of shares reported by each ATS for the Symbol. |
trade_quantity | float | Aggregate weekly total number of trades reported by each ATS for the Symbol |