get_top_volume
Find the highest-volume stocks on a given trading date. Returns stock codes, traded volume, turnover value, and closing price.
Instructions
Return top stocks by trading volume on a given date.
Args: date: Trading date in YYYY-MM-DD or YYYYMMDD format. n: Number of stocks to return (1–100). Default: 10.
Returns: dict with keys: - date: the requested trading date - items: list of up to n dicts, each with: - code: stock code (5-digit) - volume: number of shares traded - turnover_value: trading value in yen - close: closing price
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| date | Yes | ||
| n | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||