broker_activity
Enter a broker code to list the stocks that broker traded, with net value, volume, and frequency. Reverse lookup of broker_summary to trace what else a broker was distributing across the market.
Instructions
Which STOCKS one broker traded, and how much of each. This is the reverse lookup of broker_summary: that tool fixes a stock and lists brokers, this one fixes a broker and lists stocks. Chain them to answer what neither answers alone — take the biggest net seller of a stock from broker_summary, then ask here what else that broker was distributing.
broker_code is the two-letter code (YP, CC, XL); use the brokers tool to find one by name. An unknown or malformed code is rejected before any request goes out.
FILTERS: market_types and investor_types each take a LIST, and each value is sent as its own repeated parameter. Passing several boards means the union of those boards. Omit a filter and it is not sent at all, in which case the server picks the default and this tool cannot tell you which one it picked — pass period if the window matters to your answer. REGULER is the ordinary order book and what bandarmology normally means; ALL folds in negotiated block trades and can be several times larger.
request in the result echoes exactly what was sent, so the window and filters behind the rows are always visible.
PENDING VERIFICATION: this route has not been observed live. Only the traded symbol is projected, with readFrom.symbol naming the key it came from; the value, volume and frequency figures are left inside the raw row under their own names rather than renamed on a guess, because a net figure read out of the wrong key would point confidently the wrong way. Read them from row.
rowsFrom: null with count: 0 means the response carried no array — an empty result or an unrecognised shape, distinguished by dataKeys — and NOT a broker who traded nothing.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | 1-based page. Omitted means the server default. | |
| limit | No | Rows per page. Omitted means the server default. | |
| period | No | Window to aggregate over, e.g. LAST_1_DAY, LAST_7_DAYS, YEAR_TO_DATE. Omitted means the server's own default, which this tool cannot report. | |
| sort_by | No | Sort key, without the SORT_BY_ prefix. Known values: TOTAL_VALUE, NET_VALUE, SELL_VALUE, TOTAL_VOLUME, TOTAL_FREQUENCY, CODE, NAME, GROUP. The list was read from Stockbit's own bundle and is partial, so any uppercase token is accepted. | |
| broker_code | Yes | Broker code, 2-4 uppercase letters or digits, e.g. YP | |
| market_types | No | Boards to include, as a list. Each value is sent as its own repeated parameter. | |
| investor_types | No | Investor classes to include, as a list. Also sent as repeated parameters. |